@charset "utf-8";
/*
简介：可通用所有项目，包含样式重设和常用样式，参考自 Alice CSS
规则：a、前缀 j- 开始的样式都是供javascript操作的，通用的 不可随意更改
b、前缀 g- 开始的样式都是通用的模块样式，不可随意更改
*/
/* CSS Reset 样式重设
----------------------------------------------------------------------------- */
/* 防止用户自定义背景颜色对网页的影响 */
html {
  color: #000;
  background: #fff;
  font-family: '思源黑体 CN';
}
/* 清除内外边距，内外边距通常让各个浏览器样式的表现位置不同 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
div,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
th,
td,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 重设 HTML5 标签，IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* 要注意表单元素并不继承父级 font 的问题 */
/* 使表单元素在 IE 下能继承字体大小 */
input,
select,
textarea {
  font-size: 100%;
}
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c0c0c0;
  background-image: -webkit-gradient(linear, left bottom, left top, #c9cdd4);
  transition: 0.3s ease-in-out;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8;
}

body::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #f1f1f1;
}
/* ?解决在 IE7 及更早浏览器下随着 value 增多两边留白也随着增加的问题 */
input,
button {
  *overflow: visible;
}
/* ?去除 button 点击时在火狐下的虚线框 */
/* button::-moz-focus-inner {
border-color: transparent;
} */
/* ?解决 Firefox 下按钮内文字垂直居中 */
input[type='reset']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner,
input[type='file'] > input[type='button']::-moz-focus-inner,
button::-moz-focus-inner {
  border: none;
  padding: 0;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align */
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
  vertical-align: top;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
/* 将斜体扶正 */
address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
  font-style: normal;
  font-weight: 500;
}
/* 代码字体 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/* 去掉列表前的标识 li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自 Yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 600;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 标记，类似于手写的荧光笔的作用 */
mark {
  background: #fffdd1;
}
/* 正常链接 未访问 */
a:link,
a:visited {
  color: inherit;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* 常用样式
----------------------------------------------------------------------------- */
/* 人民币符号 */
.fn-rmb {
  font-family: arial;
  font-style: normal;
  padding-right: 4px;
}
.top-bar {
  width: 100%;
  background: #fff;
  border-bottom: 2px #e20000 solid;
}
.top-bar-login,
.top-bar-login-after {
  line-height: 30px;
  font: 12px/30px simsun;
}
.top-bar-login-after {
  display: none;
}
.top-bar .ofw-logo {
  margin-top: 2px;
}
.top-bar-login > .signin {
  display: inline-block;
  background: #e20000;
  height: 24px;
  width: 50px;
  border-radius: 2px;
  text-align: center;
  margin-top: 3px;
  line-height: 24px;
}
.top-bar-login > .signin > a {
  color: #fff;
}
.top-bar-login a,
.top-bar-login-after a {
  color: #333;
}
.top-bar-login a:hover,
.top-bar-login-after a:hover {
  text-decoration: underline;
}
.top-bar-login i {
  font-style: normal;
  color: #666;
}
.top-bar-login > .email {
  padding-left: 24px;
  display: inline-block;
  background: url(//images.ofweek.com/images/global-steven/email/ico_email.png) no-repeat left;
}
.top-bar-login .lang_change {
  text-decoration: none;
  font-size: 19px;
  line-height: 34px;
  padding-top: 5px;
}
.top-bar-login .lang_change a {
  text-decoration: none;
  font-size: 19px;
  line-height: 34px;
  font-family: Arial, Helvetica, sans-serif;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
#g-footer {
  width: 100%;
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  clear: both;
  font-family: simsun;
  font-size: 12px;
}
#g-footer .g-wrap {
  width: 1200px;
  margin: auto;
}
#g-footer .g-footer-nav {
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#g-footer .g-footer-nav a {
  color: #1a4991;
  text-decoration: none;
}
#g-footer .g-footer-nav a:hover {
  color: #f15c00;
  text-decoration: underline;
}
#g-footer .g-footer-links {
  color: #666;
  float: left;
  line-height: 25px;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}
#g-footer .g-footer-links a,
#g-footer .g-footer-record a {
  color: #243851;
}
#g-footer .g-footer-links a:hover,
#g-footer .g-footer-record a:hover {
  color: #c00;
}
#g-footer .g-footer-record {
  width: 536px;
  margin: 0 auto 10px;
  overflow: hidden;
}
#g-footer .g-footer-record p {
  border: 1px solid #d2d2d2;
  float: left;
  font-size: 12px;
  height: 50px;
  line-height: 20px;
  margin: 6px;
  width: 120px;
  overflow: hidden;
}
#g-footer .g-footer-record .fn-fl {
  padding: 3px;
  float: left;
}
#g-footer .g-footer-record .fn-fr {
  padding: 5px 3px 0;
  width: 72px;
  float: right;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
}
.publicTitle {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #002fc4;
  padding: 30px 0;
  background: url(../img/t_bg.png) no-repeat center;
}
nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  height: 80px;
  background-image: linear-gradient(to right, #01bbff, #3247ff);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.nav.fixed-nav {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
nav .wrap {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  width: 830px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

nav .wrap .logos {
  width: 100px;
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  background-color: #2267ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .wrap ul {
  display: flex;
  flex-direction: row;
  font-family: SourceHanSansCN-Regular;
	font-size: 21.39px;
	font-weight: normal;
	font-stretch: normal;
	color: #ffffff;
}

nav a {
  cursor: pointer;
}

nav .wrap ul a{
  display: block;
  height: 100%;
  line-height: 80px;
  cursor: pointer;
  padding: 0 10px;
}

nav .wrap ul a:hover {
  font-weight: 600;
  background-color: #2267ff;
}
header {
  width: 100%;
  box-sizing: border-box;
  background: url('../img/banner.jpg?v=1214515125') no-repeat center center / cover;
  height: 700px;
}
header .wrap {
  display: flex;
  flex-direction: column;
}
header .wrap .img1 {
  padding: 90px 0 20px;
}
header .wrap .img2 {
  padding: 30px 0 50px;
}
header .wrap ul {
  width: 800px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
header .wrap ul li {
  width: 50%;
  display: flex;
  padding: 15px 0;
}
header .wrap ul li img {
  margin-right: 10px;
}
header .wrap ul li span {
  color: #00f6ff;
}
header .wrap ul li p {
  width: 180px;
  margin-top: 5px;
  color: #fff;
  background-image: linear-gradient(to right, #0674b7, transparent);
}
header .wrap ul li .icon {
  width: 50px;
  height: 50px;
}
section .back{
  width: 100%;
  height: 684px;
  box-sizing: border-box;
  padding-top: 120px;
  background: url('../img/bg-back.png') no-repeat center;
}
.back-swiper-wrap{
  width: 457px;
	height: 254px;
  overflow: hidden;
}
.back-swiper img{
  width: 457px;
	height: 254px;
}
section .back .back_text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-right: 35px;
	font-family: SourceHanSansCN-Normal;
	font-size: 20.83px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 34.722px;
	letter-spacing: 2.1px;
	color: #000000;
}

section .back .line{
  width: 772px;
	height: 13px;
  background-image: linear-gradient(to right, #3893ee, rgba(255, 255, 255, 0) 70%);
}
section .back .back_text p {
  font-size: 20px;
}
section .back .back_text img {
  width: 100%;
  padding: 20px 0;
}
section .light {
  overflow: hidden;
  padding-top: 30px;
  background: url(../img/light.png) no-repeat center #175af1;
  background-size: cover;
}
section .light .publicTitle {
  background: url(../img/t_bg_w.png) no-repeat center;
  color: #fff;
}
.range {
  overflow: hidden;
  padding-bottom: 86px;
  background: url('../img/bg-range.png') no-repeat center center / cover;
}
.range .publicTitle{
  margin: 30px 0 24px;
}
.range .range_ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.range .range_ul li {
  width: 48%;
  border-radius: 10px;
  box-shadow: 1.2px 2.7px 5.6px 0.4px rgba(6, 22, 121, 0.05);
  border-radius: 12px;
  margin: 10px;
  background-color: rgba(255, 255, 255 , .6);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  padding-bottom: 20px;
}
.range .range_ul li:hover {
  transition: all 0.2s linear;
}
.range .range_ul li >div>span>img:last-child {
  display: none;
}
.range .range_ul li:hover>div>span>img:first-child {
  display: none;
}
.range .range_ul li:hover>div>span>img:last-child {
  display: block;
}
.range .range_ul li:hover:nth-child(1) {
  background: #468bff;
}
.range .range_ul li:hover:nth-child(2) {
  background-image: linear-gradient(to right, #fb8868, #ee3d49);
}
.range .range_ul li:hover:nth-child(3) {
  background-image: linear-gradient(to right, #6cde23, #32bf14);
}
.range .range_ul li:hover:nth-child(4) {
  background-image: linear-gradient(to right, #ee6dd4, #c74cee);
}
.range .range_ul li:hover:nth-child(5) {
  background-image: linear-gradient(to right, #fb8868, #ee3d49);
}
.range .range_ul li:hover:nth-child(6) {
  background: #468bff;
}
.range .range_ul li:hover:nth-child(7) {
  background-image: linear-gradient(to right, #00e0e2, #00d21f);
}
.range .range_ul li:hover:nth-child(8) {
  background-image: linear-gradient(to right, #fb8868, #ee3d49);
}
.range .range_ul li:hover div {
  color: #fff;
}
.range .range_ul li div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000;
  align-items: center;
  height: auto;
}
.range .range_ul li div span {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -40px;
}
.range .range_ul li div span img {
  width: auto;
  height: auto;
}
.range .range_ul li div h2 {
  font-size: 18px;
  text-align: center;
  position: relative;
  top: -20px;
}
.range .range_ul li div p {
  font-family: SourceHanSansCN-Normal;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 27px;
	letter-spacing: 0.9px;
  position: relative;
  top: -10px;
  padding: 0 32px;
}
.atst {
  padding-bottom: 70px;
}
.atst .publicTitle{
  margin: 35px 0 34px;
}
.atst .atst-box{
  display: flex;
  
}
.atst .atst-box .img-atst{
	width: 388px;
	height: 393px;
  background: url('../img/img-atst2.png') no-repeat;
  background-position: -105px 0;
  background-size: initial;
}
.atst .atst_ul {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: space-between;
}
.atst .atst_ul li {
  box-sizing: border-box;
  padding: 15px;
  height: 186px;
  width: 47.8%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.atst .atst-box>.atst_ul li:nth-child(1) {
  height: 186px;
}
.atst .atst_ul li:nth-child(1) {
  width: 792px;
  background: url('../img/bg-atst1.png') no-repeat center center / cover;
}
.atst .atst_ul li:nth-child(2) {
  margin-top: 22px;
  background: url('../img/bg-atst2.png') no-repeat center center / cover;
}
.atst .atst_ul li:nth-child(3) {
  margin-top: 22px;
  margin-right: 22px;
  background: url('../img/bg-atst3.png') no-repeat center center / cover;
}
.atst .atst_ul li:nth-child(4) {
  margin-top: 22px;
  background-image: linear-gradient(90deg, #18e3ed, #41a5fd);
}
.atst .atst_ul li:nth-child(5) {
  margin-top: 22px;
  margin-right: 22px;
  background-image: linear-gradient(90deg, #f8a634, #ff6a28);
}
.atst .atst_ul li:nth-child(6) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #7fd548, #33be08);
}
.atst .atst_ul li:nth-child(7) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #8fdb55, #0bd39f);
}
.atst .atst_ul li:nth-child(8) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #fb87d3, #fb6066);
}
.atst .atst_ul li:nth-child(9) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #f093f6, #886ef7);
}
.atst .atst_ul li:nth-child(10) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #f0b536, #f06520);
}
.atst .atst_ul li:nth-child(11) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #18e3ed, #41a5fd);
}
.atst .atst_ul li:nth-child(12) {
  margin-top: 20px;
  background-image: linear-gradient(90deg, #f5a280, #e7790e);
}
.atst .atst_ul li .top_img {
  display: flex;
  flex-direction: row-reverse;
}
.atst .atst_ul li .bot_text {
  margin-top: 19px;
  font-family: SourceHanSansCN-Medium;
	font-size: 23.32px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 32.433px;
	letter-spacing: 0px;
	color: #ffffff;
}
.gust {
  overflow: hidden;
  background: url(../img/gustbg2.png) top;
  background-size: cover;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 42px;
}
.gust .publicTitle {
  background: url(../img/t_bg_w.png) no-repeat center;
  color: #fff;
}
.gust .gust_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: space-between;
  flex: 5;
}
.gust .gust_list li {
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18%;
}
.gust .gust_list li:hover::after {
  animation: roate 3s linear infinite;
}
@keyframes roate {
  100% {
    transform: rotate(360deg);
  }
}
.gust .gust_list li::after {
  content: '';
  position: absolute;
  width: 185px;
  top: -17px;
  height: 185px;
  background: url(../img/gust_bg.png) no-repeat center;
  background-size: contain;
}
.gust .gust_list li img{
  width: 154px;
  height: 154px;
}
.gust .gust_list li h2 {
  padding-top: 20px;
  margin-bottom: 15px ;
  font-family: SourceHanSansCN-Medium;
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 27px;
	letter-spacing: 1.2px;
	color: #ffffff;
}
.gust .gust_list li:nth-child(2),.gust .gust_list li:nth-child(3){
	font-family: SourceHanSansCN-Normal;
	font-size: 15.33px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 19.444px;
	letter-spacing: 0.4px;
	color: #ffffff;
}
.gust .tip {
  width: 100%;
  text-align: right;
  font-family: SourceHanSansCN-Regular;
	font-size: 14.4px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: 0px;
	color: #d2d2d2;
}
.part {
  padding-bottom: 50px;
}
.part .wrap ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: SourceHanSansCN-Normal;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0.9px;
	color: #000000;
}
.part .wrap ul li{
  /* box-shadow: 1.2px 2.7px 5.6px 0.4px 
  rgba(6, 22, 121, 0.05); */
}
.part .wrap ul li:nth-child(1) {
  width: 100%;
  background: url(../img/part_img_1.png) no-repeat center;
  background-size: cover;
}
.part .wrap ul li:nth-child(1) p {
  padding: 35px;
  width: 50%;
}
.part .wrap ul li:nth-child(2) {
  margin-top: 30px;
  width: 49%;
  background: url(../img/part_img_2.png) no-repeat center;
  background-size: cover;
}
.part .wrap ul li:nth-child(2) p {
  padding: 35px;
  width: 59%;
}
.part .wrap ul li:nth-child(3) {
  width: 49%;
  margin-top: 30px;
  background: url(../img/part_img_3.png) no-repeat center;
  background-size: cover;
}
.part .wrap ul li:nth-child(3) p {
  padding: 35px;
  width: 50%;
}

.huoqu {
  width: 100%;
  height: 770px;
  padding-top: 80px;
  box-sizing: border-box;
  background: url('../img/huoquBG.png') no-repeat center bottom;
}

.huoqu .title{
  text-align: center;
}

.huoqu .content {
  width: 100%;
}

.huoqu .content ul {
  width: 100%;
  display: flex;
  background-color: #fff;
  justify-content: space-evenly;
  margin-top: 50px;
  padding: 55px 0;
  box-shadow: 0 0 10px 1px rgba(116, 201, 255, 0.5);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.huoqu .content ul::after {
  content: '';
  width: 100%;
  height: 20px;
  background-color: #97d6fe;
  position: absolute;
  top: 0;
  left: 0;
}

.huoqu .content ul li {
  width: 30%;
  height: 385px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f2fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  cursor: default;
  position: relative;
  transition: all 0.5s;
}

.huoqu .content ul li:hover {
  box-shadow: 0 0 8px 1px rgba(116, 201, 255, 0.5);
}

.huoqu .content ul li:hover::after {
  opacity: 1;
}

.huoqu .content ul li::after {
  content: '';
  opacity: 0;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  position: absolute;
  bottom: -35px;
  left: 0;
  transition: all 0.5s;
  background: url('../img/huoquActive.png') no-repeat center;
} 

.huoqu .content ul li .descT {
  font-size: 29px;
  color: #3a4aff;
  position: relative;
}

.huoqu .content ul li .descT span{
  position: relative;
  z-index: 2;
}

.huoqu .content ul li .descT::after {
  content: '';
  width: 100%;
  height: 8px;
  background-color: #b5e2ff;
  position: absolute;
  bottom: 8px;
  left: 0;
  z-index: 1;
}

.huoqu .content ul li .desc {
  text-align: justify;
  font-size: 18px;
}

.huoqu .content ul li .desc span {
  color: #3a4aff;
}

.jiaru {
  width: 100%;
  height: 650px;
  box-sizing: border-box;
  background: url('../img/jiaruBG.png') no-repeat center bottom;
  padding-top: 70px;
}

.jiaru .title {
  text-align: center;
}

.jiaru .content ul{
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
}

.jiaru .content ul li {
  width: 500px;
  height: 360px;
  box-sizing: border-box;
  background: #fff url('../img/jiarulibg.png') no-repeat center top;
  border-radius: 10px;
  overflow: hidden;
}

.jiaru .content ul li .tt {
  height: 205px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 29px;
  color: #3a4aff;
}

.jiaru .content ul li .cc {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 29px;
  color: #3a4aff;
}

.yuanyin {
  width: 100%;
  height: 925px;
  box-sizing: border-box;
  padding-top: 70px;
  background: #fff url('../img/yuanyinBG.png') no-repeat center bottom;
  background-position-y: 150px;
}

.yuanyin .title {
  text-align: center;
}

.yuanyin .content ul {
  width: 100%;
  margin-top: 90px;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.yuanyin .content ul li {
  width: 1040px;
  height: 85px;
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.yuanyin .content ul li:nth-child(2n)::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 100%;
  height: 3px;
  background: url('../img/line.png') no-repeat center;
}

.yuanyin .content ul li:nth-child(2n)::before {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: url('../img/line.png') no-repeat center;
}

.yuanyin .content ul li:nth-child(2n+1)::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 100%;
  height: 3px;
  background: url('../img/line2.png') no-repeat center;
}

.yuanyin .content ul li:nth-child(2n+1)::before {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: url('../img/line2.png') no-repeat center;
}

.yuanyin .content ul li:nth-child(2n+1) {
  transform: translateX(-90px);
  transition: all 0.5s;
}

.yuanyin .content ul li:nth-child(2n) {
  flex-direction: row-reverse;
}

.yuanyin .content ul li:nth-child(2n+1):hover {
  transform: translateX(-90px) scale(1.1);
}

.yuanyin .content ul li:nth-child(2n) {
  transform: translateX(90px);
  transition: all 0.5s;
}

.yuanyin .content ul li:nth-child(2n):hover {
  transform: translateX(90px) scale(1.1);
}

.yuanyin .content ul li div {
  width: 780px;
  cursor: default;
}

.yuanyin .content ul li .ttt {
  width: 211px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 29px;
  color: #fff;
  background-image: linear-gradient(45deg, #fdffa4, #ff9d3c);
}

.yuanyin .content ul li .desc {
  box-sizing: border-box;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.logos-tab-btn{
  margin-bottom: 29px;
  display: flex;
  justify-content: center;
}

.logos-company-btn, .logos-medium-btn{
  margin: 0 50px;
  width: 181px;
  font-family: SourceHanSansCN-Medium;
	font-size: 29.81px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 56px;
	letter-spacing: 1.5px;
	color: #b7b7b7;
	border-radius: 28px;
  text-align: center;
  border: solid 1px #b7b7b7;
  cursor: pointer;
}

.logos-company-btn.active, .logos-medium-btn.active{
  background-image: linear-gradient(112deg, 
    #00eaff 0%, 
    #2079ff 100%), 
  linear-gradient(
    #f84604, 
    #f84604);
  background-blend-mode: normal, 
    normal;
  color: #fff;
  border: 0;
}

.logos-img-wrap{
  margin-bottom: 72px;
}

.logos-img-wrap img{
  display: none;
  width: 100%;
}

.watch_back {
  padding-bottom: 40px;
}
.watch_back img {
  width: 100%;
}
.link {
  padding-bottom: 88px;
  color: #fff;
  background: url(../img/bg-link.png) no-repeat center center / cover;
}
.link .publicTitle {
  background: url(../img/t_bg_w.png) no-repeat center;
  color: #fff;
}
.link .link-content{
  padding-top: 145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link .link-content .link-left {
  width: 900px;
  display: flex;
  flex-wrap: wrap;
}
.link .link-content .link-item{
  flex: 1;
  margin-bottom: 30px;
}
.link .link-content .link-item-name{
  margin-bottom: 18px;
  font-family: SourceHanSansCN-Medium;
	font-size: 20.25px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: 1px;
	color: #ffffff;
}

.link .link-content .link-item-text{
  margin-bottom: 10px;
  font-family: SourceHanSansCN-Normal;
	font-size: 15.19px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: 0.8px;
	color: #ffffff;
}
.link .link-content .link-item-line{
  margin-top: 17px;
  margin-bottom: 19px;
  width: 310px;
	height: 3px;
  background: url('../img/bg-line.png') no-repeat center center / contain;
}

.lightport .light-swiper {
  width: 1000px;
  height: 456px;
  margin: 30px auto 0;
  overflow: hidden;
}
.lightport .light-swiper .swiper-slide {
  position: relative;
}
.lightport .light-swiper .swiper-slide .swiper-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 273px;
  background: url("../img/swiper.png") center bottom no-repeat;
  background-size: contain;
}
.lightport .light-swiper .swiper-slide img {
  width: 100%;
  height: 456px;
  object-fit: cover;
}
.lightport .light-con {
  position: relative;
  max-width: 1366px;
  height: 450px;
  margin: 40px auto 0;
}
.lightport .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 10px);
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s;
}
.lightport .light-con .light-item {
  position: absolute;
  top: 0;
  width: 33.33%;
  height: 450px;
  border-left: 5px solid #ebebeb;
  border-right: 5px solid #ebebeb;
  z-index: 1;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 800px 450px;
  overflow: hidden;
}
.lightport .light-con .light-item.on {
  width: 800px;
  z-index: 3;
}
.lightport .light-con .light-item.dark .shadow {
  opacity: 0.7;
  z-index: 9;
}
.lightport .light-con .light-item1 {
  left: 0;
}
.lightport .light-con .light-item2 {
  position: relative;
  margin: 0 auto;
}
.lightport .light-con .light-item3 {
  right: 0;
}
.lightport .light-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 273px;
  background: url("../img/swiper.png") center bottom no-repeat;
  background-size: 800px 273px;
  overflow: hidden;
}
.lightport .light-txt-box {
  /* height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; */
  position: relative;
  top: 180px;
  left: 0;
}
.lightport .light-con .light-item.on .light-txt-box {
  top: 77px;
}
.lightport .light-txt .light-txt-box h3 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 12px;
}
.lightport .light-txt .light-txt-box p {
  opacity: 0;
  font-size: 16px;
  color: #fff;
  padding: 0 50px;
}
.lightport .light-con .light-item2 .light-txt .light-txt-box p {
  opacity: 1;
}
.lightport .swiper-txt div {
  padding-top: 127px;
}
.lightport .swiper-txt div h3 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 12px;
}
.lightport .swiper-txt div p {
  font-size: 16px;
  color: #fff;
  padding: 0 50px;
}
.lightport .light-con {
  position: relative;
  max-width: 1366px;
  height: 450px;
  margin: 30px auto 0;
}
.lightport .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 10px);
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s;
}
.lightport .light-con .light-item {
  position: absolute;
  top: 0;
  width: 33.33%;
  height: 450px;
  border-left: 5px solid #ebebeb;
  border-right: 5px solid #ebebeb;
  z-index: 1;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 800px 450px;
  overflow: hidden;
}
.lightport .light-con .light-item.on {
  width: 800px;
  z-index: 3;
}
.lightport .light-con .light-item.dark .shadow {
  opacity: 0.7;
  z-index: 9;
}
.lightport .light-con .light-item1 {
  left: 0;
}
.lightport .light-con .light-item2 {
  position: relative;
  margin: 0 auto;
}
.lightport .light-con .light-item2::after {
  position: absolute;
  left: 50%;
  bottom: 10px;
  content: '';
  margin-left: -10px;
  width: 20px;
  height: 18px;
  /* background: url("../images/sjx.png") center no-repeat; */
}
.lightport .light-con .light-item3 {
  right: 0;
}
.lightport .light-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 273px;
  background: url("../img/swiper.png") center bottom no-repeat;
  background-size: 800px 273px;
  overflow: hidden;
}
.lightport .light-txt-box {
  position: relative;
  top: 180px;
  left: 0;
}
.lightport .light-con .light-item.on .light-txt-box {
  top: 77px;
}
.lightport .light-txt .light-txt-box h3 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 12px;
}
.lightport .light-txt .light-txt-box p {
  opacity: 0;
  font-size: 16px;
  color: #fff;
  padding: 0 50px;
}
.lightport .light-con .light-item2 .light-txt .light-txt-box p {
  opacity: 1;
}
.swiper-tab {
  width: 100%;
  height: 110px;
  background-color: #001ba1;
}
.img_back {
  position: absolute;
  top: 9%;
  left: 39%;
}
.img_back .img1 {
  width: 780px;
}
.img_back .img2 {
  width: 780px;
  margin-top: -272px;
}
.swiper-tab ul {
  font-size: 0;
  text-align: center;
}
.swiper-tab ul li {
  display: inline-block;
  width: 142px;
  height: 111px;
  overflow: hidden;
  cursor: pointer;
}
.swiper-tab ul li img {
  display: block;
  margin: 25px auto 8px;
  height: 32px;
}
.swiper-tab ul li span {
  font-size: 18px;
  color: #fff;
}
.swiper-tab ul .on {
  background: #2d4ff1;
}
.text {
  font-size: 16px;
  padding: 0 50px;
  font-size: 14px;
  margin-top: -130px;
}
.text p {
  color: #fff;
  width: 625px;
  color: #000;
  font-weight: 600;
}
.light-wrap {
  background: transparent;
}

.organization{
  padding-top: 12px;
  padding-bottom: 20px;
  background-color: #131bc4;
  background: url('../img/bg-organization1.png') no-repeat center center / cover;
}

.organization .publicTitle{
  margin-bottom: 50px;
  background: url(../img/t_bg_w.png) no-repeat center;
  color: #fff;
}

.organization-logo-wrap{
  margin-bottom: 50px;
}

.organization-logo-wrap img{
  margin-right: 20px;
}

.share-component{
  display: none;
}

.social-share .item a .share-n {
  position: absolute;
  left: 32px;
  top: 0;
  width: 60px;
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
  -webkit-text-stroke-width: 0;
  padding-left: 10px;
}
.social-share {
  position: absolute;
  top: 34px;
  left: -8px;
  width: 120px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.share-btn:hover .share-component{
  display: block;
}

.social-share .icon-wechat .wechat-qrcode{
  top: 40px !important;
}

.social-share .icon-wechat .wechat-qrcode:after{
  bottom: initial;
  top: -10px;
}

.social-share .social-share-icon:hover span{
  color: #000 !important;
}

/* 部分往届回顾 */
.lookback-wrap{
  /* overflow: hidden; */
  background: #fff;
}

.lookback-swiper-wrap{
  width: 1050px;
}

#certify {
	position: relative;
	margin: 0 auto
}

#certify .swiper-container {
	padding-bottom: 70px;
}

#certify  .swiper-slide {
  position: relative;
  box-sizing: border-box;
	width: 460px;
	background: #fff;
	box-shadow: 0px 5px 10px 0px 
		rgba(1, 37, 39, 0.1);
}

#certify  .swiper-slide.swiper-slide-prev:after, #certify  .swiper-slide.swiper-slide-next:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: #fff;
	opacity: 0.5;
}

#certify  .swiper-slide img{
	display:block;
  width: 100%;
  height: 269px;
  object-fit: cover;
}
#certify  .swiper-slide .lookback-item-title {
  margin-bottom: 15px;
	font-family: SourceHanSansCN-Bold;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.5;
	letter-spacing: 0px;
	color: rgba(24, 68, 225, 1);
  text-align: center;
}

#certify  .swiper-slide .lookback-item-text {
  margin-bottom: 25px;
  font-family: SourceHanSansCN-Regular;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: rgba(0, 0, 0, 1);
  text-align: center;
}

#certify  .swiper-slide .lookback-item-btn{
  display: block;
  margin: 0 auto;
  width: 136px;
	height: 46px;
  font-family: SourceHanSansCN-Bold;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #ffffff;
  text-align: center;
  line-height: 46px;
}

#certify .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}

#certify .swiper-button-prev {
	left: -80px;
  width: 55px;
	height: 102px;
  font-size: 20px;
  transform: translateY(-50%);
}

#certify .swiper-button-prev:after{
  font-size: 0;
  font-weight: bold;
  color: #e6e6e6;
  width: 84px;
	height: 84px;
  background: url('../img/icon-left.png') no-repeat center center / contain;
}

#certify .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

#certify .swiper-button-next {
	right: -80px;
  width: 55px;
	height: 102px;
  font-size: 20px;
  transform: translateY(-50%);
}

#certify .swiper-button-next:after{
  font-size: 0;
  font-weight: bold;
  color: #e6e6e6;
  width: 84px;
	height: 84px;
  background: url('../img/icon-right.png') no-repeat center center / contain;
}

#certify .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}

.tongqi {
  width: 100%;
  height: 545px;
  box-sizing: border-box;
  background: url('../img/tongqiBG.png') no-repeat center bottom;
  padding-top: 50px;
}

.tongqi .content ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.tongqi .content ul li {
  text-align: center;
}
.tongqi .content ul li img {
  transition: all 0.5s;
}
.tongqi .content ul li:hover img {
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.5);
}

.hezuo {
  width: 100%;
  height: 855px;
  box-sizing: border-box;
  padding-top: 70px;
  background: url('../img/hezuoBG.png') no-repeat center;
}

.hezuo .title{
  text-align: center;
}

.hezuo .content {
  margin-top: 80px;
}