body, button, dd, div, dl, form, h1, h2, h3, h4, h5, h6, html, img, input, li, ol, p, ul {
    margin: 0;
    padding: 0;
    border: 0
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "PingFangRegular", "Arial","Microsoft YaHei","Helvetica Neue",Helvetica,sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

button, input, textarea,select{
   -webkit-appearance: none;
   resize: none;
   outline: none;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
   border: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}
.none{
	display:none;
}

.online_x{
	cursor:pointer;
}
button:hover,
input[type=submit]:hover {
    cursor: pointer
}

button:focus,
input:active,
input:focus,
textarea:focus {
   /* border: 0*/
  	outline: 0 none;
  	outline-color: transparent;
}

a {
    color: #333;
    display: inline-block;
}

a:link {
    text-decoration: none
}

a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none;
  
}

a:active {
    text-decoration: none
}
li{
	list-style: none;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    visibility: hidden
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table
}

.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1
}
@font-face{
    font-family: "PingFangRegular"; 
    /*src: url('../fonts/PingFangRegular.ttf');*/
   	src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/fonts/SourceHanSansCN-Light.otf');
  	font-weight: 400;
  	font-style: normal;
  	font-display: swap;
}
@font-face{
    font-family: "PingFangMedium"; 
    /*src: url('../fonts/PingFangMedium.ttf');*/
   	src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/fonts/SourceHanSansCN-Regular.otf');
  	font-weight: 400;
  	font-style: normal;
  	font-display: swap;
}
@font-face{
    font-family: "OutfitRegular"; 
    src: url('../fonts/Outfit-Regular.ttf');
}
@font-face{
    font-family: "OutfitBold"; 
    src: url('../fonts/Outfit-Bold.ttf');
}
@font-face{
    font-family: "OutfitLight"; 
    src: url('../fonts/Outfit-Light.ttf');
}

@-webkit-keyframes fadeInUpSmall{
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80px, 0);
        transform: translate3d(0, 80px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpSmall{
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpSmall{
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}

@keyframes fadeup{
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeup{
    -webkit-animation-name: fadeup;
    animation-name: fadeup;
}

@keyframes faderight{
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.faderight{
    -webkit-animation-name: faderight;
    animation-name: faderight;
}

@keyframes fadeleft{
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fadeleft{
    -webkit-animation-name: fadeleft;
    animation-name: fadeleft;
}

.maincontainer{
	width: 62.5%;
	margin-left: auto;
	margin-right: auto;
}
.mianContent{
	padding-top: 60px;
}

.header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 16;
	width: 100%;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 35px rgba(0,0,0,0.06);
}
.header .box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .nav ul{
	display: flex;
	align-items: center;
}
.header .nav ul li{
	display: flex;
	align-items: center;
	height: 80px;
	padding: 0px 28px;
}

.header .nav ul li > a{
	display: flex;
	align-items: center;
	font-family: "PingFangRegular"; 
	font-size: 16px;
	color: #000000;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	position: relative;
	height: 100%;
}
.header .nav ul li.active>a,
.header .nav ul li:hover>a{
	color: #00a6ca;
}
.header .nav ul li a::after {
	content: '';
	width: 0;
	height: 2px;
	background: #0763b9;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: all 0.5s;
}
.header .nav ul li.active>a::after,
.header .nav ul li:hover>a::after{
	width: 100%;
}
/**/
.header .cellBox{
	display: none;
	position: absolute;
	left: 0;
	top: 80px;
	width: 100%;
	padding-top: 35px;
	padding-bottom: 60px;
	border-top: #e5e5e5 solid 1px;
	background: #ffffff;
	box-shadow: 0px 0px 12px rgba(0,166,202,0.08);
}
.header .cellBox .wrap{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.header .cellBox .menuLeft{
	padding-right: 55px;
}
.header .cellBox .menuRight{
	display: flex;
}
.header .cellBox .menuRight .column{
	display: flex;
	padding-left: 50px;
	margin-right: 50px;
	border-left: #e5e5e5 solid 1px;;
}
.header .cellBox .menuRight .column:last-child{
	margin-right: 0;
}
.header .cellBox .menuRight .column .columnItem{
	margin-right: 60px;
}
.header .cellBox .menuRight .column .columnItem:last-child{
	margin-right: 0;
}
.header .cellBox .title{
	padding-top: 12px;
	color: #000000;
	/*font-size: 20px;*/
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: 600;
}
.header .cellBox dl{
	/*font-size: 16px;*/
	font-size: 14px;
}
.header .cellBox dd{
	margin-bottom: 5px;
	overflow: hidden;
}
.header .cellBox .menuLeft dd a{
	position: relative;
	/*color: #;*/
	/*font-size: ;*/
	background: url(../images/icon9a.png) left center no-repeat;
	/*background-size: ;*/
	padding-left: 32px;
	-webkit-transform: translateX(-32px);
	transform: translateX(-32px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-size: 22px;
}
.header .cellBox .menuLeft dd.on a,
.header .cellBox .menuLeft dd a:hover{
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	background: url(../images/icon9a.png) left center no-repeat;
	background-size: 22px;
}
.header .cellBox dd a{
	color: #8d8d8d;
	line-height: 1.7;
}
.header .cellBox dd.on a,
.header .cellBox dd a:hover{
	color: #00a6ca;
}

.header .cellBox dd a{
	position: relative;
	/*color: #;*/
	/*font-size: ;*/
	background: url(../images/icon9a.png) left center no-repeat;
	/*background-size: ;*/
	padding-left: 32px;
	-webkit-transform: translateX(-32px);
	transform: translateX(-32px);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-size: 22px;
}
.header .cellBox dd.on a,
.header .cellBox dd a:hover{
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	background: url(../images/icon9a.png) left center no-repeat;
	background-size: 22px;
}

.header .first-li {
	position: relative;
}
.header .second-box {
	padding: 20px 0;
	width: 120%;
	margin-left: -10%;
}
.header .second-box a {
	justify-content: center;
	margin: 10px auto;
	display: flex;
}
.header .second-box a:hover {
	color: #00a6ca;
}


/**/



.header .headright{
	display: flex;
	align-items: center;
}
.head-login{
	position: relative;
	display: flex;
	align-items: center;
	/*margin-right: 10px;*/
}
.head-login .icon{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	min-width: 30px;
	height: 60px;
}
.head-login .icon,
.head-login .icon a{
	display: flex;
	align-items: center;
	font-family: "PingFangRegular"; 
	font-size: 14px;
	color: #000000;
}
.head-login .icon span{
	display: inline-block;
	margin-left: 5px;
	white-space: nowrap;
	margin-right: 10px;
}
.head-login ul{
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	min-width: 100%;
	padding: 10px 0px;
	background-color: #ffffff;
	display: none;
}
.head-login:hover ul{
	box-shadow: 0px 0px 12px rgba(0,166,202,0.08);
}
.head-login ul li a,
.head-login ul li span{
	display: block;
	font-family: "PingFangRegular"; 
    font-size: 14px;
    color: #000000;
    line-height: 2.2;
    min-width: 90px;
    text-align: center;
    padding: 0px 20px;
    white-space: nowrap;
    box-sizing: border-box;
    cursor: pointer;
}
.head-login ul li:hover a,
.head-login ul li:hover span{
	color: #00a6ca;
}
.head-nation{
	position: relative;
	display: flex;
	align-items: center;
}
.head-nation .current{
	display: flex;
	align-items: center;
	cursor: pointer;
	padding-left: 25px;
	background: url(../images/langicon.png) left center no-repeat;
	background-size: 18px auto;
	font-family: "PingFangRegular"; 
	font-size: 14px;
	color: #000000;
	height: 60px;
}
.head-nation ul{
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	min-width: 100%;
	padding: 10px 0px;
	background-color: #ffffff;
	display: none;
}
.head-nation:hover ul{
	box-shadow: 0px 0px 12px rgba(0,166,202,0.08);
}
.head-nation ul li a{
	display: block;
	font-family: "PingFangRegular"; 
    font-size: 14px;
    color: #000000;
    line-height: 2.2;
    min-width: 90px;
    text-align: center;
    padding: 0px 20px;
    white-space: nowrap;
    box-sizing: border-box;
}
.head-nation ul li:hover a{
	color: #00a6ca;
}

.searchdiv{
	min-width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	padding-left: 25px;
}
.header .show-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    transition-duration: .3s;
    text-align: center;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}
.head-bottom .show-search-btn {
    display: block;
    height: 90px;
    line-height: 90px;
    transition-duration: .3s;
    text-align: center;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}
.show-search-btn img{
	cursor: pointer;
}
.header .search {
  	position: fixed;
 	z-index: 6;
  	top: 60px;
  	right: 0;
  	height: auto;
  	overflow: hidden;
  	-webkit-overflow-scrolling: touch;
  	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  	opacity: 0;
  	visibility: hidden;
  	transition-property: opacity,visibility;
  	transition-duration: .5s;
  	transition-delay: .5s;
  	border-top: #f3f3f3 solid 1px;
}
.head-bottom .search{
	top: 150px;
}
.search.search-is-open{
  	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity:1;
	visibility:visible;
	transition-delay:0s;}
.search.search-is-open .search__container{
	transform:translateY(0) translateZ(0);
}
.search__container{
  	position:relative;
  	z-index:2;
	background-color:#fff;
	transform:translateY(-100%) translateZ(0);
	transition:transform .75s cubic-bezier(.77,0,.175,1);
}
.search__overlay{
  	position:fixed;
  	z-index:1;
	top:0;
	right:0;
	width:100%;
	height:100%;
	/*background-color:#1d1d1d;*/
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
	opacity:.2;
}
.search, .search__overlay{
	left:0;
}
.search-header{
	position:relative;
  	padding-top: 40px;
	padding-bottom: 40px;
}
.row{
	position: relative;
}
.search-header .search-loader{
	position:absolute;
  	top:17px;
	left:2.6vw;
}
.search-header .search-btn-close{position:absolute;
  	top:0;
	right:0;
}
.search-header .search-input{
	width:100%;
	-webkit-appearance:none;
	-moz-appearance:none;
	border:0;
}
.search-header .search-input__wrapper:after{content:"";
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
	right:0;
	height:1px;
	background-color:#d9d9d9;
	width:100%;
}
.search-item{position:relative;
  	display:block;
	overflow:hidden;
	transition:background-color .2s,opacity .3s,color .3s;
	transform-origin:0 0;
	color:#1d1d1d;
}
.search-item:after{
	content:"";
	position:absolute;
	z-index:1;
	bottom:0;
	left:8.333%;
	right:8.333%;
	height:1px;
	background-color:#d9d9d9;
}
.search-item .solr-highlight{
	background-color:rgba(101,32,142,.2);
}
.search-close {
  	position: absolute;
  	display: block;
  	top: 0;
 	right: 0;
  	width: 28px;
  	height: 50px;
  	background: url(../images/close.png) no-repeat center;
  	background-size: 20px 20px;
  	cursor: pointer;
  	z-index: 6;
  	transition-duration: .5s; 
}
.search-close:hover {
  	transform: rotate(90deg); 
}
.search .submit0 {
  	position: absolute;
  	top: 0;
  	left: 0;
  	z-index: 5;
  	width: 28px;
  	height: 50px;
  	background: url(../images/searchf.png) no-repeat center;
  	border: none;
  	background-size: 20px 20px;
  	box-sizing: border-box;
  	display: block;
}
.search-header .search-input {
  	display: block;
  	text-indent: 40px;
 	line-height: 50px;
 	font-family: "OutfitLight"; 
  	font-size: 16px;
  	color: rgba(0,0,0,0.6);
  	width: 100%;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	border: 0;
  	border-bottom: 1px solid #d9d9d9;
}
.search-header .search-input::-webkit-input-placeholder{font-family: "OutfitLight"; color: rgba(0,0,0,0.6);}
.search-header .search-input:-moz-placeholder{font-family: "OutfitLight"; color: rgba(0,0,0,0.6);}
.search-header .search-input::-moz-placeholder{font-family: "OutfitLight"; color: rgba(0,0,0,0.6);}
.search-header .search-input:-ms-input-placeholder{font-family: "OutfitLight"; color: rgba(0,0,0,0.6);}


.menubtn {
	display: none;
	float: right;
	width: 40px;
	height: 70px;
	background: url(../images/menu-icon1.png) center right no-repeat;
	background-size: 24px auto;
	cursor: pointer;
	opacity: 0.7;
}
.menubtn.on{
	background: url(../images/menu-icon2.png) center right no-repeat;
	background-size: 24px auto;
}
.header.on .menubtn,
.header.white .menubtn,
.header.act .menubtn{
	background: url(../images/menu-icon1.png) center right no-repeat;
	background-size: 24px auto;
}
.header.on .menubtn.on,
.header.white .menubtn.on,
.header.act .menubtn.on{
	background: url(../images/menu-icon2.png) center right no-repeat;
	background-size: 24px auto;
}

.m-nav{
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100vh - 70px);
	display: none;
	z-index: 99;
	background-color: #FFFFFF;
	overflow-y: scroll;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.m-nav ul{
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}
.m-nav>ul{
	padding-top: 20px;
	padding-left: 5%;
    padding-right: 5%;
}
.m-nav>ul>li{
	width: 100%;
    text-align: left;
    border-bottom: #e5e5e5 solid 1px;
    box-sizing: border-box;
    list-style: none;
}
.m-nav ul li a,
.m-nav ul li .headtitle{
	display: block;
    line-height: 1.7;
    color: #000000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.m-nav>ul>li>a,
.m-nav>ul>li>.headtitle{
	font-size: 18px;
    padding: 14px 0px;
}
.m-nav ul li:hover>a,
.m-nav ul li .headtitle.on{
	color: #00a6ca;
}

.m-nav ul li ul li .headtitle,
.m-nav>ul>li>ul>li>a{
	font-size: 16px;
    padding: 7px 0px;
}
.m-nav ul li .headtitle{
	position: relative;
	padding-right: 28px;
}
.m-nav>ul>li>a{
	position: relative;
}
.m-nav ul li .headtitle i,
.m-nav>ul>li>a i{
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 100%;
    background: url(../images/icon11.png) center no-repeat;
    background-size: 10px auto;
    transition: all 0.4s ease;
}
.m-nav ul li .headtitle.on i{
    background: url(../images/icon11a.png) center no-repeat;
    background-size: 10px auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.m-nav ul li ul{
	display: none;
}
.m-nav>ul>li>ul{
	border-top: #e5e5e5 solid 1px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.m-nav ul li  ul li ul li a{
	font-size: 15px;
    padding: 8px 0px;
}
.msearch{
	display: flex;
    margin: 15px auto;
    width: 90%;
    border: 1px solid #00a6ca;
    overflow: hidden;
    box-sizing: border-box;
}
.msearch form{
	display: flex;
	width: 100%;
}
.msearch .text{
	border: none;
    outline: none;
    font-size: 15px;
    color: #00a6ca;
    padding: 8px 15px;
    width: calc(100% - 65px);
}
.msearch .btns{
	width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #00a6ca;
    box-sizing: inherit;
}
/**/
.loginPopUp{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.4);
}
.loginPopUp.on{
	display: flex;
}
.loginPopUp .content{
	position: relative;
	max-width: 460px;
    width: 24%;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    display: flex;
    align-items: stretch;
}
.loginPopUp .content .title{
	text-align: center;
	font-family: "PingFangMedium"; 
	color: #000000;
	margin-bottom: 30px;
}
.loginPopUp .content .loginPopUpBox{
	width: 100%;
	padding: 10.8% 13.6%;
	box-sizing: border-box;
}
.loginPopUp .content .inputli{
	margin-bottom: 3px;
}
.loginPopUp .content .inputli input{
	width: 100%;
    height: 50px;
    font-family: "PingFangRegular";
    color: rgba(0,0,0,0.6);
    padding: 0 15px;
    outline: none;
   	border: rgba(0,0,0,0.1) solid 1px;
    background: #FFFFFF;
    box-sizing: border-box;
}
.loginPopUp .content .inputli input::-webkit-input-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.loginPopUp .content .inputli input:-moz-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.loginPopUp .content .inputli input::-moz-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.loginPopUp .content .inputli input:-ms-input-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}

.loginPopUp .content .check{
	margin-top: 15px;
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.loginPopUp .content .check label{
	display: flex;
	flex-wrap: wrap;
}
.loginPopUp .content .check input{
	position: relative;
    top: 5px;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	-webkit-appearance: auto;
	background-color: #008cd6;
	background: linear-gradient(45deg, #00a7cb 0%, #008cd7 100%);
} 
.loginPopUp .content .check span{
	flex: 1;
}
.loginPopUp .content .inputBtn{
	margin-top: 25px;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.loginPopUp .content .inputBtn input{
	width: 100%;
    height: 50px;
    color: #FFFFFF;
    font-family: "PingFangMedium";
    text-align: center;
    background: none;
    border: none;
    outline: none;
}
.loginPopUp .content .closeBtn{
	position: absolute;
	right: 25px;
	top: 20px;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.loginPopUp .content .closeBtn img{
	width: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.loginPopUp .content .closeBtn:hover img{
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}



.back-top {
  	position: fixed;
  	bottom: 3vw;
  	right: 2vw;
  	z-index: 15;
  	cursor: pointer;
  	opacity: 0;
  	visibility: hidden;
  	transition: opacity 0.4s, visibility 0.4s;
}
.back-top.show {
  	opacity: 1;
  	visibility: visible;
}
.back-top .icon {
	width: 2.6vw;
  	height: 2.6vw;
  	border-radius: 100%;
  	border: 1px solid #666;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	box-sizing: border-box;
}
.back-top .icon:after {
  	content: "";
  	display: block;
  	width: 0;
  	height: 0;
  	border-bottom: 0.52vw solid #666;
  	border-left: 0.26vw solid transparent;
  	border-right: 0.26vw solid transparent;
}
.back-top .text {
  	color: #666;
  	font-size: 14px;
  	text-align: center;
  	margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .back-top {
    bottom: 27vw;
    right: 5.49vw;
  }
  .back-top .icon {
    width: 40px;
    height: 40px;
  }
  .back-top .icon:after {
    border-bottom-width: 8px;
    border-left-width: 5px;
    border-right-width: 5px;
  }
  .back-top .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 1920px) and (min-width: 1025px){
	.loginPopUp .content .title{
		margin-bottom: 1.56vw;
	}
	.loginPopUp .content .inputli input{
		height: 2.6vw;
		padding: 0 0.78125vw;
	}
	.loginPopUp .content .check{
		margin-top: 0.78125vw;
	}
	.loginPopUp .content .check input{
		top: 0.26vw;
		width: 0.78125vw;
		height: 0.78125vw;
		margin-right: 0.26vw;
	}
	.loginPopUp .content .inputBtn{
		margin-top: 1.3vw;
	}
	.loginPopUp .content .inputBtn input{
		height: 2.6vw;
	}
	.loginPopUp .content .closeBtn{
		right: 1.3vw;
		top: 1vw;
		width: 1.875vw;
		height: 1.875vw;
	}
	
	
}
@media screen and (max-width: 1024px){
	.loginPopUp .content{
		width: 80%;
	}
}
@media screen and (max-width: 768px){
	.loginPopUp .content .title{
		margin-bottom: 20px;
	}
	.loginPopUp .content .inputli input,
	.loginPopUp .content .inputBtn input{
		height: 45px;
	}
	.loginPopUp .content .inputBtn{
		margin-top: 20px;
	}
}
@media screen and (max-width: 480px){
	.loginPopUp .content .loginPopUpBox{
		padding: 10% 8% 12%;
	}
	.loginPopUp .content .check input{
		top: 4px;
	}
	.loginPopUp .content .closeBtn{
		top: 15px;
		right: 15px;
		width: 32px;
		height: 32px;
	}
	.loginPopUp .content .inputli input,
	.loginPopUp .content .inputBtn input{
		height: 42px;
	}
}
/*footer*/
.footer{
	padding-top: 5.208333333333333vw;
	background: #d5daef;
}
.footer .wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 5.208333333333333vw;
}
.footer .wrap .left_w{
	width: 29%;
	font-size:18px;
}
/*20240517修改*/
.footer .wrap .right_w{
	display: flex;
	justify-content: space-between;
	/*max-width: 56.25%;*/
	width: 63%;
	font-size:18px;
}
/**/
.footer .footInfor{
	margin-top: 25px;
	margin-bottom: 25px;
}
.footer .footInfor ul li{
	font-family: "PingFangRegular"; 
	font-size: 16px;
	color: #545454;
	line-height: 1.7;
}
.footer .footShare ul{
	display: flex;
}
.footer .footShare ul li{
	margin-right: 20px;
}
.footer .footShare ul li a{
	display: block;
}
.footer .footShare ul li .ic2{
	display: none;
}
.footer .footShare ul li a:hover .ic1{
	display: none;
}
.footer .footShare ul li a:hover .ic2{
	display: inline-block;
}
/*20240517修改*/
.footer .footNav{
	display: flex;
	justify-content: space-between;
	flex: 1;
}
.footer .footNavItem{
	width: 42%;
	margin-right: 6%;
}
.footer .footNavItem:last-child{
	margin-right: 0;
}
/**/
.footer .title{
	white-space: nowrap;
	font-family: "PingFangRegular"; 
	color: #000000;
	font-size: 20px;
}
.footer .footNav ul{
	margin-top: 20px;
	font-size: 16px;
	font-family: "PingFangRegular"; 
}
.footer .footNav ul li{
	margin-bottom: 5px;
}
.footer .footNav ul li a{
	color: rgba(0,0,0,0.6);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.footer .footNav ul li a:hover{
	color: #00a6ca;
}
.footer .footCode .img img{
}
.footer .footCode .text{
	margin-top: 10px;
	text-align: center;
	font-family: "PingFangRegular"; 
	font-size: 16px;
	color: rgba(0,0,0,0.6);
}
.footer .copyright{
	display: flex;
	justify-content: space-between;
	padding: 18px 0px;
	border-top: rgba(84,84,84,0.1) solid 1px;
	color: rgba(84,84,84,0.6);
	font-size: 14px;
}
.footer .copyright a{
	font-family: "PingFangRegular"; 
	color: rgba(84,84,84,0.6);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.footer .copyright a:hover,
.footer .copyright .w2:hover a{
	color: #000000;
}
.footer .copyright i{
	display: inline-block;
	font-style: normal;
	margin: 0px 10px;
}

.entext{
	font-family: "OutfitLight" !important;
}
.size80{
	font-size: 80px;
}
.size40{
	font-size: 40px;
}
.size30{
	font-size: 30px;
}
.size24{
	font-size: 24px;
}
.size20{
	font-size: 20px;
}
.size18{
	font-size: 18px;
}
.size16{
	font-size: 16px;
}
.size36{
	font-size: 36px;
}
.size32{
	font-size: 32px;
}
.size22{
	font-size: 22px;
}


.lunbotu{
	transform: translate3d(0,0,0);
	overflow: hidden;
}
.lunbotu .swiper-slide{
	transform: translate3d(0,0,0);
}
.lunbotu .swiper-slide a{
	display: block;
	width: 100%;
	overflow: hidden;
}
.lunbotu .swiper-slide a>img{
	width: 100%;
}
.mImg{
	display: none;
}
.bannerText{
	position: absolute;
	left: 50%;
	top: 50%;
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	box-sizing: border-box;
	min-height: 52.5%;
}
.bannerText .box{
	width: 100%;
}
.bannerText .box .ProductName{
	display: block;
	font-family: "OutfitRegular"; 
	color: #FFFFFF;
	/*text-transform: uppercase;*/
}
.bannerText .box h2{
	font-family: "OutfitBold"; 
	color: #FFFFFF;
	line-height: 1.1;
}
.bannerText .box .text{
	margin-top: 10px;
	font-family: "OutfitLight"; 
	color: #FFFFFF;
}

.bannerBtn{
	margin-top: 35px;
}
/*20240428*/
.bannerText{
	display: flex;
}
.bannerBtn.btnCenter{
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 0;
}
.bannerBtn.btnBottom{
	position: absolute;
	left: 0;
	bottom: 0;
	margin-top: 0;
}
/**/
.bannerBtn span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 50px;
	border: #FFFFFF solid 1px;
	border-radius: 5px;
	font-family: "OutfitLight"; 
	color: #FFFFFF;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.bannerBtn span i{
	display: inline-block;
	margin-left: 8px;
	width: 15px;
	height: 7px;
	background: url(../images/arrow.png) center no-repeat;
	background-size: 100% auto;
}
.bannerBtn span:hover{
	border: #00a6ca solid 1px;
	background: #00a6ca;
}
.lunbotu .swiper-pagination{
	width: 100%;
	bottom: 60px;
}
.BannerSwiper .swiper-pagination{
	width: 100%;
	bottom: 30px;
}
.lunbotu .swiper-pagination-bullet,
.BannerSwiper .swiper-pagination-bullet{
	width: 36px;
	height: 36px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: none;
    overflow: hidden;
    opacity: 1;
}
.lunbotu .swiper-pagination-bullet:after,
.BannerSwiper .swiper-pagination-bullet:after{
	content: "";
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
   	/*background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 33%, rgba(255, 255, 255, 0.8) 100%);*/
   	border-radius: 50%;
   	border-top: 1px solid #FFF;
   	border-right: 1px solid #FFF;
   	/*border-right: 1px solid transparent;*/
    opacity: 0;
}
.lunbotu .swiper-pagination-bullet-active:after,
.BannerSwiper .swiper-pagination-bullet-active:after{
	opacity: 1;
	-webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lunbotu .swiper-pagination-bullet:before,
.BannerSwiper .swiper-pagination-bullet:before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
}
.lunbotu .swiper-pagination-bullet-active:before,
.BannerSwiper .swiper-pagination-bullet-active:before{
	background: #FFFFFF;
}
/*.lunbotu .swiper-pagination-bullet{
	position: relative;
	width: 36px;
	height: 36px;
	margin: 0;
	background: transparent;
	opacity: 1;
}
.lunbotu .swiper-pagination-bullet:before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
}
.lunbotu .swiper-pagination-bullet-active:before{
	background: #FFFFFF;
}
.lunbotu .swiper-pagination-bullet-active:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: url(../images/icon.png) center no-repeat;
	-webkit-animation: spin 1.5s infinite linear;
	animation: spin 1.5s infinite linear;
}
@keyframes spin {
    0% { 
    	transform: rotate(0deg); 
    } 
    100% { 
    	transform: rotate(360deg); 
    }
}
@-webkit-keyframes spin {
    0% { 
    	transform: rotate(0deg); 
    } 
    100% { 
    	transform: rotate(360deg); 
    }
}*/
/*@media screen and (min-width: 1921px){
	.mianContent{
		padding-top: 3.125vw;
	}
	.size80{
		font-size: 4.16666666666667vw;
	}
	.size24{
		font-size: 1.25vw;
	}
	.size20{
		font-size: 1.041666666666667vw;
	}
	.bannerText .box .text{
		margin-top: 0.5208333333333333vw;
	}
	.bannerBtn{
		margin-top: 1.82291666666667vw;
	}
	.bannerBtn span{
		width: 8.33333333333333vw;
	    height: 2.604166666666667vw;
	    border-radius: 0.2604166666666667vw;
	    font-size: 0.8333333333333333vw;
	}
	
	.header .box .logo a img{
		width: 6.25vw;
	}
	.header .nav ul li{
		font-size: 0.9375vw;
	}
	.header .nav ul li a{
		font-size: 0.8333333333333333vw;
	}
	.head-login .icon{
		width: 2.604166666666667vw;
		height: 3.125vw;
	}
	.head-login .icon img{
		width: 0.8333333333333333vw;
	}
	.head-nation .current{
		padding-left: 1.302083333333333vw;
	    background: url(../images/langicon.png) left center no-repeat;
	    background-size: 0.9375vw auto;
	    font-size: 0.7291666666666667vw;
	    height: 3.125vw;
	}
	.head-login ul,
	.head-nation ul{
		top: 3.125vw;
		padding: 0.5208333333333333vw 0;
	}
}*/

.obanner{
	position: relative;
}
.obanner>img{
	width: 100%;
}
.bannerImg{
	display: none;
	width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner-title{
	position: absolute;
	bottom: 3.645833333333333vw;
	left: 50%; 
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 5;
}
.banner-title h1{
	position: relative;
	padding-left: 50px;
	margin-bottom: 10px;
	font-family: "PingFangMedium"; 
	color: #FFFFFF;
}
.banner-title h1 span{
	position: absolute;
	left: 0;
	top: 0;
	bottom:0;
	margin: auto;
	width: 50px;
	height: 16px;
	background: url(../images/icon9.png) left top no-repeat;
	background-size: 66% auto;
}
.banner-title .txt{
	color: rgba(255,255,255,0.6);
}

.BannerSwiper{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.BannerSwiper .swiper-slide{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
/*.BannerSwiper .swiper-slide .banner-title{
	top: 50%;
	bottom: auto;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}*/
.BannerSwiper .swiper-slide a{
	display: block;
	width: 100%;
	overflow: hidden;
}
.BannerSwiper .swiper-slide img{
	width: 100%;
}



.index-title{
	text-align: center;
	margin-bottom: 30px;
}
.index-title h3{
	font-family: "PingFangMedium";
	color: #000000;
}
.index-title .more{
	margin-top: 20px;
}
.index-title .more a{
	font-family: "PingFangMedium";
	color: #00A6CA;
}


.padT70{
	padding-top: 70px;
}
.padT80{
	padding-top: 80px;
}
.padT100{
	padding-top: 100px;
}
.padT120{
	padding-top: 120px;
}
.padB100{
	padding-bottom: 100px;
}
.padB80{
	padding-bottom: 80px;
}
.padB120{
	padding-bottom: 120px;
}
.padB140{
	padding-bottom: 140px;
}
.padB160{
	padding-bottom: 160px;
}
.padB170{
	padding-Bottom: 170px;
}

.indexProducts .box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.indexProducts .box .wrap{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	overflow: hidden;
}
.indexProducts .box .left_w{
	width: 27.34375%;
	margin-right: 0.3125%;
}
.indexProducts .box .left_w .index_pro{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}
.indexProducts .box .right_w{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 72.34375%;
}
.indexProducts .box .right_w ul{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.indexProducts .box .upper ul{
	height: 49.56772334293948%;
	box-sizing: border-box;
}
.indexProducts .box ul li{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.indexProducts .box ul li.pro1{
	width: 59.00576368876081%;
	margin-right: 0.43227665706052%;
}
.indexProducts .box ul li.pro2{
	width: 40.56195965417867%;
}
.indexProducts .box ul li.pro3{
	width: 50.43227665706052%;
	margin-right: 0.43227665706052%;
}
.indexProducts .box ul li.pro4{
	width: 49.13544668587896%;
}
.indexProducts .box a{
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	height: 100%;
	overflow: hidden;
}
.indexProducts .box .left_w a{
	display: block;
}
.indexProducts .box .img{
	display: block;
	width: 100%;
	overflow: hidden;
}
.indexProducts .box ul li .img{
	width: 22.39583333333333vw;
}
.indexProducts .box .img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.indexProducts .box .img .im2{
	display: none;
}
.indexProducts .box a:hover .img img{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.indexProducts .box .text{
	position: absolute;
	left: 0;
	top: 3.38vw;
	z-index: 5;
	padding-left: 2.6vw;
	padding-right: 1.5vw;
	box-sizing: border-box;
	width: 100%;
}
.indexProducts .box .left_w .text{
	position: static;
	margin-top: 3.38vw;
	margin-bottom: 5.833333333333333vw;
}
.indexProducts .box .right_w ul li .text{
	width: 50%;
	box-sizing: border-box;
}
.indexProducts .box .lower{
	position: absolute;
	right: 0;
	bottom: 0;
	height: 49.56772334293948%;
}
.indexProducts .box .lower ul{
	height: 100%;
}
.indexProducts .box ul li{
	height: 100%;
}
.indexProducts .box ul li.pro1,
.indexProducts .box ul li.pro2{
	margin-bottom: 0.43227665706052%;
}
.indexProducts .box .img{
	overflow: initial;
}
.indexProducts .box .text h4{
	font-family: "OutfitRegular"; 
	color: #000000;
	margin-bottom: 6px;
}
.indexProducts .box .text .size16{
	font-family: "OutfitRegular"; 
	color: rgba(0,0,0,0.6);
}
.indexProducts .box .text .more{
	margin-top: 20px;
}
.indexProducts .box .text .more span{
	font-family: "PingFangRegular"; 
	color: #00a6ca;
}
.pc_all .pc_all_content{ margin: 0 auto; padding:0px 30px}
.IndexAbout{ padding: 160px 0px; background: url(../images/bg58.jpg) no-repeat 50%/cover;}
.IndexAbout .pc_all_content{ display: flex; justify-content: space-between; align-items: center;}
.IndexAbout .IndexAbout_left{ width: 44%;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dd{ font-size: 50px; color: #015ca5; font-family: 'BEBAS'; line-height: 70px; margin-bottom: 20px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dt{ font-size: 36px; color: #333333; margin-bottom: 30px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dt span{ color: #abcd03}
.IndexAbout .IndexAbout_left .IndexAbout_left_title .left_title_txt{ line-height: 28px; color: #666666; font-size: 15px; margin-bottom: 50px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title a{ margin-bottom: 35px; display: flex; width: 154px; height: 53px; align-items: center; justify-content: center; border-radius: 100px; font-size: 15px; color: #fff; background: linear-gradient(to right,#0086d1, #015ca5); position:relative;}

.IndexAbout .IndexAbout_left .IndexAbout_left_title a img{ margin-left: 8px; transition: all 0.5s ease; }
.IndexAbout .IndexAbout_left .IndexAbout_left_title a:hover{ box-shadow:0px 0px 25px rgba(0,134,209,.5);}
.IndexAbout .IndexAbout_left .IndexAbout_left_title a:hover img{ transition: all 0.5s ease; margin-left:22px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content{ display: flex; justify-content: space-between;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list dd{ font-size: 38px; color: #015ca5; font-family: 'BEBAS'; margin-bottom: 20px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list dd span{ color: #949798; font-size: 17px; margin-left: 5px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list dt{ font-size: 16px; color: #666666;}
.IndexAbout .IndexAbout_right{ width: 51%; position: relative; border-radius: 20px; box-shadow: 0px 16px 37px rgba(0,55,100,.16); cursor: pointer;}
.IndexAbout .IndexAbout_right .IndexAbout_right_icon{ position: absolute; width: 100%; height: 100%; left: 0; top: 0; display: flex; align-items: center; justify-content: center;}
.IndexAbout .IndexAbout_right .IndexAbout_right_img{ border-radius: 20px; overflow: hidden;}
.IndexAbout .IndexAbout_right .IndexAbout_right_img img{ width: 100%;}


/*@media screen and (min-width: 1025px){
	.indexProductSolutions.padB170{
		padding-bottom: 0 !important;
	}
}*/

@media screen and (max-width:1200px){
.IndexAbout, .IndexProduct{ padding: 30px 0px;}
.IndexAbout .pc_all_content{ display: block;}
.IndexAbout .IndexAbout_left{ padding-bottom: 40px;}
.IndexAbout .IndexAbout_left,.IndexAbout .IndexAbout_right{ width: 100%;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dd{ font-size: 30px; line-height: normal;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dt{ font-size: 20px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title dt{ margin-bottom: 20px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_title .left_title_txt{ margin-bottom: 25px}
.IndexAbout .IndexAbout_left .IndexAbout_left_title a{ width: 120px; height: 38px; font-size: 13px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content{ display: block; overflow: hidden;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list{ float: left; width: 48%; margin-bottom: 20px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list dd{ font-size: 20px; margin-bottom: 10px;}
.IndexAbout .IndexAbout_left .IndexAbout_left_content .left_content_list dd span{ font-size: 14px;}
.IndexAbout .IndexAbout_right .IndexAbout_right_icon img{ height: 30px;}
}


.index_bt{ text-align: center; line-height: 52px; margin-bottom: 50px; }
.index_bt h2{ font-size: 40px; }
.index_bt p{ font-size: 16px; }

.index_fangan{ margin: 80px 0; }
.index_fangan ul{ margin-left: 30px; }
.index_fangan ul li{ position: relative; overflow: hidden; float: left; width:calc(100% / 3 - 30px); margin-right: 30px; margin-bottom: 30px; }
.index_fangan ul li a{ display: block; overflow: hidden; }
.index_fangan ul li:nth-child(3n){ margin-right: 0; }
.index_fangan ul li .img1{ overflow: hidden; }
.index_fangan ul li .img1 img{ width: 100%; height: 320px; object-fit: cover; }
.index_fangan ul li .wenzi{ position: absolute; left: 0; bottom: 30px; transition: all 1s; padding: 0 30px; font-size: 18px; font-weight: 600; color: #FFFFFF; }
.index_fangan ul li .mengceng{  position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: rgba(6,92,158,0.65); z-index: 9; transition: all 0.5s; }
.index_fangan ul li .dingweineirong{ position: absolute; left: 0; top: -100%; width: 88%; height: 100%; z-index: 10; color: #FFFFFF; text-align: center; padding: 30px;  transition: all 0.6s; }
.index_fangan ul li .dingweineirong .img2{ margin-bottom: 20px; }
.index_fangan ul li .dingweineirong h2{ font-size: 20px; margin-bottom: 10px; }
.index_fangan ul li .dingweineirong p{ max-height: 72px; line-height: 24px; font-size: 14px; overflow: hidden; }
.index_fangan ul li:hover .wenzi{ bottom: -100px; }
.index_fangan ul li:hover .mengceng{ top: 0; }
.index_fangan ul li:hover .dingweineirong{ top: 0; }
.comnect{
	position: relative;
	background-position: center; 
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.comnect .imgBox{
	position: relative;
	text-align: center;
	/*padding-bottom: 50px;
	margin-bottom: 75px;
	border-bottom: rgba(255,255,255,0.1) solid 1px;*/
	padding-bottom: 2.604166666666667vw;
	margin-bottom: 5vw;
}
.comnect .imgBox>img{
	/*width: 66.75%;*/
	width: 41.71875%;
}
/**/
.comnect{
	min-height: 42.5vw;
	/*min-height: 100vh;*/
	box-sizing: border-box;
}
.comnect .imgBox i{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: block;
	width: 0;
	height: 1px;
	background: rgba(255,255,255,0.1);
}
.comnect .imgbg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.comnect .imgbg span{
	position: absolute;
	/*left: 50%;
	top: 50%;*/
	left: 0;
	bottom: 0;
	z-index: 1;
	/*-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);*/
	display: block;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
}
.comnect .imgbg img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*width:62.5%;
	margin: auto;*/
	/*transform: scale(0.625) translateY(10%);
	transform-origin: top center;*/
}
.comnect .content{
	/*position: absolute;
	left: 0;
	top: 0;*/
	position: relative;
	z-index: 5;
	width: 100%;
}
.comnect .imgBox .atlas{
	display: flex;
	align-items: center;
	justify-content: center;
	/*width: 41.71875%;*/
	/*width: 66.75%;*/
	width: 32%;
	margin: auto;
}
.comnect .imgBox span{
	display: inline-block;
}
.comnect .imgBox.active{
	animation: siz 20s steps(60) forwards;
}
@keyframes siz {
	from{
		width: 0;
	}
	to{
		width: 100%;
	}
}
/*.comnect .textBox .left_w .size40,
.comnect .textBox .left_w ul,
.comnect .textBox .right_w ul li{
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.5s ease;
}
.comnect .textBox.on .left_w .size40,
.comnect .textBox.on .left_w ul,
.comnect .textBox.on .right_w ul li,
.comnect .textBox .left_w.on .size40,
.comnect .textBox .left_w.on ul,
.comnect .textBox .right_w ul li.on{
	opacity: 1;
	transform: translateY(0px);
}*/
.comnect .textBox .left_w .size40,
.comnect .textBox .left_w ul,
.comnect .textBox .right_w ul li{
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.5s ease;
}
.comnect .textBox.on .left_w .size40,
.comnect .textBox.on .left_w ul,
.comnect .textBox.on .right_w ul li,
.comnect .textBox .left_w.on .size40,
.comnect .textBox .left_w.on ul,
.comnect .textBox .right_w ul li.on{
	opacity: 1;
	transform: translateY(0px);
}
.comnect .imgBox span{
	opacity: 0;
  	transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  	visibility: hidden;
}
.comnect .imgBox.on span{
	animation: fadeIn 0.5s forwards;
}

.comnect .imgBox span:nth-child(1) {
  animation-delay: 0.1s;
}
 
.comnect .imgBox span:nth-child(2) {
  animation-delay: 0.2s;
}
 
.comnect .imgBox span:nth-child(3) {
  animation-delay: 0.3s;
}

.comnect .imgBox span:nth-child(4) {
  animation-delay: 0.4s;
}

.comnect .imgBox span:nth-child(5) {
  animation-delay: 0.5s;
}

.comnect .imgBox span:nth-child(6) {
  animation-delay: 0.6s;
}

.comnect .imgBox span:nth-child(7) {
  animation-delay: 0.7s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}
/**/
/**/
.logoAinmation{
	position: relative;
	width: 41.71875%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}
.logoAinmation span{
	position: relative;
  	display: inline-block;
  	text-transform: uppercase;
  	animation: LogoAnimate 2s ease-in-out forwards;
  	animation-delay: calc(0.1s * var(--i));
  	animation-play-state: paused;
}
.logoAinmation.animated span{
	animation-play-state: running;
}
.logoAinmation.animated span:last-child img{
	position: relative;
	left: -100%;
}
@keyframes LogoAnimate{
  	0%,40%,100%{
    	transform: translateY(0);
  	}
  	20%{
    	transform: translateY(-80px);
  	}
} 
/**/
.comnect .textBox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.comnect .textBox .left_w{
	width: 37.5%;
}
.comnect .textBox .left_w .size40{
	font-family: "PingFangRegular";
	color: #ffffff;
}
.comnect .textBox .left_w ul{
	margin-top: 50px;
}
.comnect .textBox .left_w ul li{
	margin-bottom: 20px;
}
.comnect .textBox .left_w ul li a{
	position: relative;
	display: inline-block;
	font-family: "PingFangRegular";
	color: rgba(255,255,255,0.6);
	padding: 8px 0px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.comnect .textBox .left_w ul li a:hover{
	color: #00a6ca;
}
.comnect .textBox .left_w ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.1);
}
.comnect .textBox .left_w ul li a:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 0%;
	height: 1px;
	background: #00a6ca;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.comnect .textBox .left_w ul li a:hover:after{
	width: 100%;
}
.comnect .textBox .right_w{
	max-width: 700px;
	width: 58.33333333333333%;
}
.comnect .textBox .right_w ul li{
	margin-bottom: 40px;
}
.comnect .textBox .right_w ul li:last-child{
	margin-bottom: 0;
}
.comnect .textBox .right_w ul li .t1{
	font-family: "PingFangRegular";
	color: #ffffff;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: rgba(255,255,255,0.1) solid 1px;
}
.comnect .textBox .right_w ul li .t2{
	font-family: "PingFangRegular";
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
}
.comnect .textBox .right_w ul li .LearnMore{
	margin-top: 20px;
	display: none;
}
.comnect .textBox .right_w ul li .LearnMore a{
	color: rgba(255,255,255,0.6);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.comnect .textBox .right_w ul li .LearnMore a:hover{
	color: #00a6ca;
}
.contact .current-title{
	margin-bottom: 3.33333333333333%;
}
.current-title h3{
	position: relative;
	padding-left: 50px;
    font-family: "PingFangMedium";
    color: #000000;
}
.current-title h3 i{
	position: absolute;
    left: 0;
    top: 0;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 50px;
    height: 16px;
    background: url(../images/icon9a.png) left top no-repeat;
    background-size: 66% auto;
}
.InvestorInteraction .current-title{
	margin-bottom: 35px;
}
.fsBody1440 {
    width: 1440px;
    margin: 0 auto;
}
.fsPart4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #f7f7f7;
}

    .fsPart4 .fsBody1440 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        padding: 60px 0;
    }

        .fsPart4 .fsBody1440 .fsTop {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -webkit-box-align: center;
        }

            .fsPart4 .fsBody1440 .fsTop .fsLeft {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                flex-direction: column;
            }

                .fsPart4 .fsBody1440 .fsTop .fsLeft .fsCnTitle {
                    font-size: 30px;
                    line-height: 50px;
                    color: #0098d8;
                    font-weight: bold;
                }

                .fsPart4 .fsBody1440 .fsTop .fsLeft .fsEnTitle {
                    font-size: 18px;
                    color: #cccccc;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                .fsPart4 .fsBody1440 .fsTop .fsLeft .fsHeng {
                    width: 40px;
                    height: 1px;
                    margin: 10px auto 0 0;
                    background: #CCCCCC;
                }

            .fsPart4 .fsBody1440 .fsTop .fsMore {
                width: 130px;
                height: 40px;
                background: url(../images/p4m.png) no-repeat center;
            }

        .fsPart4 .fsBody1440 .fsBottom {
            margin-top: 40px;
            width: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            justify-content: space-between;
        }

            .fsPart4 .fsBody1440 .fsBottom a {
                padding-bottom: 160px;
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                flex-direction: column;
                background: #FFFFFF;
                overflow: hidden;
                position: relative;
            }

                .fsPart4 .fsBody1440 .fsBottom a img {
                    width: 440px;
                    height: 335px;
                }

                .fsPart4 .fsBody1440 .fsBottom a .newsInfo {
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    background: #FFFFFF;
                    height: 100%;
                    padding: 0 10%;
                    position: absolute;
                    top: 100%;
                    margin-top: -160px;
                    left: 0;
                    transition: all 0.5s ease 0s;
                }

                .fsPart4 .fsBody1440 .fsBottom a:hover .newsInfo {
                    height: 100%;
                    top: 0;
                    margin-top: 0;
                    transition: all 0.5s ease 0s;
                }

                .fsPart4 .fsBody1440 .fsBottom a .newsInfo .fsTime {
                    font-size: 14px;
                    line-height: 30px;
                    margin: 25px auto 0 0;
                    color: #b2b2b2;
                }

                .fsPart4 .fsBody1440 .fsBottom a .newsInfo .fsTitle {
                    width: 100%;
                    color: #333333;
                    line-height: 30px;
                    max-height:60px;
                    overflow:hidden;
                    font-size: 16px;
                    font-weight: bold;
                    margin: 25px 0 auto 0;
                }

                .fsPart4 .fsBody1440 .fsBottom a .newsInfo .fsText {
                    font-size: 14px;
                    line-height: 30px;
                    color: #666666;
                    margin-bottom: auto;
                    max-height: 180px;
                    overflow: hidden;
                }

                .fsPart4 .fsBody1440 .fsBottom a .newsInfo .fsMore {
                    margin: 40px auto 40px 0;
                    width: 113px;
                    height: 35px;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    justify-content: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    -webkit-box-pack: center;
                    align-items: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    -webkit-box-align: center;
                    font-size: 14px;
                    color: #ffffff;
                    background: #0098d8;
                }


.mainNews{
	
}
.mainNews .box{
	margin-top: 35px;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.mainNews .box .swiper-slide{
	pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.mainNews .box .swiper-slide-active{
    pointer-events: auto;
}
.mainNews .box .swiper-slide a{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
.mainNews .box .swiper-slide .img img{
	width: 100%;
    display: block;
	opacity: 0;
    transition: all .3s;
}
.mainNews .box .swiper-slide-active .img img{
	opacity: 1;
    /*transition-delay: .3s;*/
}
.mainNews .box .text{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 41.67%;
    padding: 2vw;
    box-sizing: border-box;
}
.mainNews .box .text .date{
	color: #FFFFFF;
}
.mainNews .box .text h4{
	font-family: "PingFangMedium"; 
	color: #FFFFFF;
}
.mainNews .box .text .txt{
	margin-top: 15px;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
}
.mainNews .box .text .more{
	margin-top: 35px;
}
.mainNews .box .text .more span{
	font-family: "PingFangRegular";
    color: #00a6ca;
}
.mainNews .box .text .date,
.mainNews .box .text h4,
.mainNews .box .text .txt,
.mainNews .box .text .more{
	opacity: 0;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: all 0.8s ease 0.1s;
	transition: all 0.8s ease 0.1s;
}
/*.mainNews .box .text .date{
	transition-delay: 0.1s;
}
.mainNews .box .text h4{
	transition-delay: 0.2s;
}
.mainNews .box .text .txt{
	transition-delay: 0.3s;
}
.mainNews .box .text .more{
	transition-delay: 0.4s;
}*/
.mainNews .box .swiper-slide-active .text .date,
.mainNews .box .swiper-slide-active .text h4,
.mainNews .box .swiper-slide-active .text .txt,
.mainNews .box .swiper-slide-active .text .more{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.mainNews .swiper-pagination{
	position: absolute;
	left: 2vw;
	bottom: 2vw;
	width: auto;
}
.mainNews .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	margin-right: 14px;
	opacity: 0.7;
}
.mainNews .swiper-pagination-bullet-active{
	opacity: 1;
	background-color: #00a6ca;
}
.news .new-list{
	margin-top: 4.16666666666667%;
}
.SocialActivities .new-list{
	margin-top: 4.16666666666667%;
}
.new-list ul{
	margin-bottom: 5.6%;
}
.new-list ul li{
	padding-bottom: 3.33333333333333%;
	margin-bottom: 3.33333333333333%;
	border-bottom: #f0f0f0 solid 1px;
}
.new-list ul li:last-child{
	margin-bottom: 0;
}
.new-list ul li a{
	display: flex;
	align-items: center;
	width: 100%;
	overflow: hidden;
}
.new-list ul li .img{
	width: 19.16666666666667%;
	overflow: hidden;
}
.new-list ul li .img img{
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.new-list ul li a:hover .img img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.new-list ul li .text{
	width: 80.83333333333333%;
	padding-left: 3.75%;
	box-sizing: border-box;
	overflow: hidden;
}
.new-list ul li .text .date{
	color: rgba(0,0,0,0.6);
	margin-bottom: 5px;
}
.new-list ul li .text h3{
	font-family: "PingFangMedium"; 
	color: #000000;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.new-list ul li a:hover .text h3{
	color: #00a6ca;
}
.new-list ul li .text .txt{
	margin-top: 5px;
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.new-list ul li .text .more{
	display: flex;
	margin-top: 20px;
}
.new-list ul li .text .more span{
	font-family: "PingFangMedium"; 
    color: #00a6ca;
}

.activities .wrap{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-top: 3.33333333333333%;
}
.activities .left_w{
	width: 32.5%;
	margin-right: 1.25%;
	overflow: hidden;
}
.activities .right_w{
	width: 66.25%;
}
.activities a{
	display: block;
	width: 100%;
	overflow: hidden;
}
.activities a img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.activities a:hover img{
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
.activities ul{
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
	height: 100%;
}
.activities ul li{
	width: 49.05660377358491%;
	margin-right: 1.88679245283019%;
}
.activities ul li:nth-child(2n){
	margin-right: 0;
}
.ProductInformation ul{
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	padding-bottom: 15px;
}
.ProductInformation .mySwiper ul{
	flex-wrap: nowrap;
	padding-bottom: 0;
}
.ProductInformation ul li{
	width: 30.83333333333333%;
	margin-right: 3.75%;
	margin-bottom: 3.33333333333333%;
}
.ProductInformation ul li:nth-child(3n){
	margin-right: 0;
}
.ProductInformation ul li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
/*.ProductInformation ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../images/img30.png) center bottom no-repeat;
	background-size: 100% auto;
	opacity: 0;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.ProductInformation ul li:hover a:before{
	opacity: 1;
}*/
.ProductInformation ul li .imgBox{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.ProductInformation ul li .imgBox img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.ProductInformation ul li:hover .imgBox img{
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.ProductInformation ul li .textBox{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 40px 28px 25px;
	box-sizing: border-box;
	-webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.ProductInformation ul li:hover .textBox{
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.ProductInformation ul li:hover .textBox:after{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), color-stop(100%, #000), color-stop(0, #000));
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #000 100%, #000 0);
    background-size: cover;
}
.ProductInformation ul li .textBox h4{
	font-family: "PingFangMedium"; 
	color: #FFFFFF;;
	margin-bottom: 10px;
	overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.ProductInformation ul li .textBox .text{
	font-family: "PingFangMedium"; 
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ProductInformation ul li .textBox .more{
	margin-top: 15px;
}
.ProductInformation ul li .textBox .more span{
	font-family: "PingFangMedium"; 
	font-weight: bold;
	background: linear-gradient(45deg, #00a7cb 0%, #008cd7 100%);
    -webkit-background-clip: text;
    color: transparent;
   -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}
.ProductInformation ul li:hover .textBox .more span{
	opacity: 1;
}
/**/
.location{
}
.location .box{
	padding: 10px 0px;
}
.location .box span, .location .box a{
	color: rgba(0,0,0,0.6);
	font-size: 14px;
	line-height: 1.7;
}
.location .box a:hover, .location .box a.on{
	color: rgba(0,0,0,0.6);
}
/**/
.new-detail .title{
	padding-bottom: 10px;
	border-bottom: rgba(0,0,0,0.1) solid 2px;
	margin-bottom: 30px;
}
.new-detail .title h2{
	font-family: "PingFangMedium"; 
	color: #000000;
	line-height: 1.4;
}
.new-detail .title .txt{
	margin-top: 30px;
	color: #000000;
}
.new-detail .title .txt span{
	display: inline-block;
	margin-right: 45px;
	margin-bottom: 10px;
}
.new-detail .box{
	line-height: 1.7;
	padding-bottom: 60px;
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.PrveNextBox{
	padding: 60px;
	background: #fafafa;
}
.PrveNextBox ul li{
	margin-bottom: 20px;
	border-bottom: #ebebeb solid 1px;
}
.PrveNextBox ul li a{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	padding-bottom: 20px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.PrveNextBox ul li a:hover{
	color: #00a6ca;
}
.PrveNextBox .btn a{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.PrveNextBox .btn a:hover{
	color: #00a6ca;
}
/**/
.page{
    width: 100%;
    text-align: center;
}
.page-list{
	/*text-align: center;
	font-size: 0;*/
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-list a{
	/*display: inline-block;
	vertical-align: top;*/
	display: flex;
	align-items: center;
	justify-content: center;
   	padding: 0px 10px;
   	min-width: 52px;
   	height: 52px;
	margin-bottom: 5px;
	margin-right: 15px;
    text-align: center;
    font-size: 16px;
    color: #cdcdcd;
    border: #f0f0f0 solid 1px;
    overflow: hidden;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.page-list a:last-child{
	margin-right: 0;
}
.page-list a:hover,
.page-list a.on{
	color: #FFFFFF;
	background: #00a6ca;
}
.page-list a.fyprev,
.page-list a.fynext{
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-list a.fyprev i,
.page-list a.fynext i{
	display: inline-block;
	width: 16px;
	height: 16px;
}
.page-list a.fyprev i{
	background: url(../images/icon13.png) center no-repeat;
	background-size: 100% auto;
}
.page-list a.fynext i{
	background: url(../images/icon14.png) center no-repeat;
	background-size: 100% auto;
}
.page-list a.fyprev:hover i{
	background: url(../images/icon13a.png) center no-repeat;
	background-size: 100% auto;
}
.page-list a.fynext:hover i{
	background: url(../images/icon14a.png) center no-repeat;
	background-size: 100% auto;
}
.page-list a.fyprev.disabled,
.page-list a.fynext.disabled{
	border: #f0f0f0 solid 1px;
	color: #666666;
	pointer-events:none;
	background: none;
	opacity: 0.5;
}

.productSolutions .wrap{
	display: flex;
	justify-content: space-between;
}
.productSolutions .wrap .left_w{
	width: 16.66666666666667%;
}
.productSolutions .wrap .right_w{
	width: 77.5%;
}
.ProductSearch{
	width: 100%;
	border: rgba(0,0,0,0.1) solid 1px;
	box-sizing: border-box;
	display: flex;
}
.ProductSearch .text{
	width: calc(100% - 50px);
	color: #000000;
	font-size: 16px;
	background: none;
	border: none;
	outline: none;
	padding-left: 20px;
	box-sizing: border-box;
}
.formBox .inputLi input::-webkit-input-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input:-moz-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input::-moz-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input:-ms-input-placeholder{font-family: "PingFangRegular"; color: rgba(0,0,0,0.6);}
.ProductSearch .btn{
	width: 50px;
	height: 50px;
	outline: none;
	border: none;
	background: url(../images/icon10.png) center no-repeat;
	background-size: 19px auto;
}
.productNav{
	margin-top: 30px;
}
.productNav>ul{
	border-top: rgba(0,0,0,0.1) solid 1px;
}
.productNav>ul>li{
	border-bottom: rgba(0,0,0,0.1) solid 1px;
	cursor: pointer;
}
.productNav>ul>li>a,
.productNav ul li .title{
	position: relative;
	padding-top: 24px;
	padding-bottom: 24px;
	padding-right: 40px;
	box-sizing: border-box;
	font-family: "OutfitRegular"; 
	color: #000000;
	font-size: 20px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.productNav>ul>li>a:hover,
.productNav ul li.open .title,
.productNav ul li .title.on,
.productNav ul li:hover .title{
	color: #00a6ca;
}

.productNav ul li a.on{
	color: #00a6ca;
}

.productNav ul li .title i{
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	background: url(../images/icon11.png) center no-repeat;
	background-size: 13px auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.productNav ul li.open .title i,
.productNav ul li .title.on i{
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	background: url(../images/icon11a.png) center no-repeat;
	background-size: 13px auto;
}
.productNav ul li ul{
	display:none;
	padding-bottom: 30px;
}
.productNav ul li ul li a{
	font-family: "OutfitRegular"; 
	color: rgba(0,0,0,0.6);
	font-size: 16px;
	line-height: 2;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.productNav ul li ul li a:hover{
	color: #00a5cb;
}
.productList ul{
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.productList ul li{
	width: calc((100% - 30px) / 3);
	margin-right: 15px;
	margin-bottom: 15px;
}
.productList ul li:nth-child(3n){
	margin-right: 0;
}
.productList ul li a{
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background: #f8f8f8;
}
.productList ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/img16.jpg) center no-repeat;
	background-size: cover;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.productList ul li a:hover:before{
	opacity: 1;
}
.productList ul li a .tag{
	position: absolute;
	/*right: 0;
	top: 0;*/
	top: 30px;
	left: -6px;
	display: flex;
	align-items: center;
	min-width: 44px;
	min-height: 33px;
	color: #FFFFFF;
	font-size: 14px;
    line-height: 1.5;
    padding: 0px 5px 3px 12px;
    margin-right: 16px;
    /*background: #00a6ca;*/
   	background: url(../images/icon31b.png) center no-repeat;
   	background-size: 100% 100%;
    box-sizing: border-box;
}
.productList ul li a .tag:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	background: url(../images/icon31a.png) left top no-repeat;
	background-size: 100% 100%;
}
.productList ul li a .tag:after{
	content: '';
	position: absolute;
	right: -16px;
	top: 0;
	width: 16px;
	height: 100%;
	background: url(../images/icon31c.png) left top no-repeat;
	background-size: 100% 100%;
}
/*.productList ul li a .tag:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 0;
    height: 0;
    border: 32px solid #00a6ca;
    border-color: #00a6ca #00a6ca transparent transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}*/
.productList ul li .imgBox{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	overflow: hidden;
}
.productList ul li .imgBox img{
	width: 100%;
}
.productList ul li .textBox{
	margin-top: 15px;
	text-align: center;
	padding: 0px 15px;
	box-sizing: border-box;
}
.productList ul li .textBox h4{
	font-family: "OutfitRegular"; 
	color: #010101;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.productList ul li a:hover .textBox h4{
	color: #00a6ca;
}
.productList ul li .textBox .txt{
	margin-top: 0.26vw;
	color: rgba(0,0,0,0.6);
	/*line-height: 1.7;*/
	/*min-height: 90px;
	padding-bottom: 30px;*/
	min-height: 4.6875vw;
	padding-bottom: 1.5625vw;
	box-sizing: border-box;
}

.productList .page-list{
	justify-content: flex-start;
}


.ProductInfor{
	background: url(../images/img23.jpg) center no-repeat;
	background-size: cover;
}
.ProductInfor .title,
.ProductInformation .title{
	text-align: center;
	font-family: "PingFangMedium"; 
	color: #000000;
}
.ProductInformation .box,
.ProductInfor .box{
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 45px;
}
.ProductInformation .mySwiper.box{
	margin-top: 0;
}
.ProductInfor .box ul{
	align-items: stretch;
}
.ProductInfor .box li{
	height: auto;
	background-color: #FFFFFF;
}
.ProductInfor .box li a{
	display: block;
	width: 100%;
	overflow: hidden;
}
.ProductInfor .box .imgBox{
	width: 100%;
	overflow: hidden;
}
.ProductInfor .box .imgBox img{
	display: block;
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.ProductInfor .box li a:hover .imgBox img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.ProductInfor .box .textBox{
	padding: 9%;
	box-sizing: border-box;
}
.ProductInfor .box .date{
	font-family: "OutfitRegular"; 
	color: rgba(0,0,0,0.4);
	margin-bottom: 5px;
}
.ProductInfor .box h4{
	font-family: "OutfitRegular"; 
	color: #000000;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.ProductInfor .box li a:hover h4{
	color: #00a6ca;
}
.ProductInfor .box .text{
	margin-top: 12px;
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
/**/
.ProductDetails .wrap{
	display: flex;
	justify-content: space-between;
	-webkit-user-select: none; /* Safari */
  	-moz-user-select: none; /* Firefox */
  	-ms-user-select: none; /* IE10+ */
  	user-select: none; /* Standard syntax */
}
.ProductDetails .wrap .left_w{
	width: 48.5%;
}
.ProductDetails .wrap .right_w{
	width: 44.5%;
}
.ProductDetails .wrap .left_w .mySwiper2{
	position: relative;
	width: 100%;
	overflow: hidden;
	border: rgba(0,0,0,0.1) solid 1px;
	box-sizing: border-box;
}
.ProductDetails .wrap .left_w .mySwiper2 .swiper-slide{
	background-color: #FFFFFF;
}
.ProductDetails .wrap .left_w .mySwiper2 img{
	display: block;
	margin: auto;
	max-width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.ProductDetails .wrap .left_w .mySwiper2 .swiper-slide:hover img{
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}
.ProductDetails .wrap .left_w .preview{
	position: relative;
	width: 100%;
	margin-top: 7px;
}
.ProductDetails .wrap .left_w .mySwiper1{
	position: relative;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
} 
.ProductDetails .wrap .left_w .mySwiper1 .swiper-slide{
	position: relative;
	background-color: #FFFFFF;
	/*-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;*/
}
.ProductDetails .wrap .left_w .mySwiper1 .swiper-slide-thumb-active{
	/*background-color: #e8f7fe;*/
}
.ProductDetails .wrap .left_w .mySwiper1 .swiper-slide:before{
	content: '';
	position: absolute;
	left: 1px;
	top: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	box-sizing: border-box;
	border: rgba(0,0,0,0.1) solid 1px;
}
.ProductDetails .wrap .left_w .mySwiper1 .swiper-slide-thumb-active:before{
	border: #00a6ca solid 1px;
}
.ProductDetails .wrap .left_w .mySwiper1 .swiper-slide img{
	display: block;
	margin: auto;
	max-width: 100%;
}
.ProductDetails .preview .swiper-button-next, .ProductDetails .preview .swiper-button-prev{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 40px;
    height: 40px;
    -moz-background-size: 8px auto;
    -webkit-background-size: 8px auto;
    background-size: 8px auto;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-user-select: none; /* Safari */
  	-moz-user-select: none; /* Firefox */
  	-ms-user-select: none; /* IE10+ */
  	user-select: none; /* Standard syntax */
}
.ProductDetails .swiper-button-prev, .ProductDetails .swiper-container-rtl .swiper-button-next{
    background-image: url(../images/icon7a.png);
    left: -50px;
    right: auto;
}
.ProductDetails .preview .swiper-button-next, .ProductDetails .preview .swiper-container-rtl .swiper-button-prev{
	background-image: url(../images/icon8a.png);
    right: -50px;
    left: auto;
}
.ProductDetails .preview .swiper-button-next.swiper-button-disabled{
	background-image: url(../images/icon8.png);
	opacity: 1;
}
.ProductDetails .preview .swiper-button-prev.swiper-button-disabled{
	background-image: url(../images/icon7.png);
	opacity: 1;
}
.ProductDetails .wrap .right_w .title{
	position: relative;
	padding-bottom: 25px;
	border-bottom: #f0f0f0 solid 1px;
}
.ProductDetails .wrap .right_w .title:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32%;
	height: 2px;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.ProductDetails .wrap .right_w .title .t1{
	font-family: "OutfitRegular"; 
	background: -webkit-linear-gradient(76deg, #00a6ca 0%, #008cd6 25%, #008cd6 100%);
	background: -moz-linear-gradient(76deg, #00a6ca 0%, #008cd6 25%, #008cd6 100%);
	background: -o-linear-gradient(76deg, #00a6ca 0%, #008cd6 25%, #008cd6 100%);
	background: linear-gradient(76deg, #00a6ca 0%, #008cd6 25%, #008cd6 100%); /* 标准语法 */
	-webkit-background-clip: text; /* Chrome, Safari */
	background-clip: text;
	-webkit-text-fill-color: transparent; /* Chrome, Safari */
	color: transparent; /* 其他浏览器 */
	margin-bottom: 10px;
}
.ProductDetails .wrap .right_w .title .t2{
	color: rgba(0,0,0,0.6);
}
.ProductDetails .wrap .right_w .text{
	margin-top: 30px;
	margin-bottom: 50px;
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.ProductDetails .wrap .right_w .btns{
	display: flex;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a,
.ProductDetails .wrap .right_w .btns .price span{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
	color: #000000;
	-webkit-transition: all 0.4s ease; 
	transition: all 0.4s ease; 
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a:after,
.ProductDetails .wrap .right_w .btns .price span:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	border: rgba(0,0,0,0.1) solid 1px;
	box-sizing: border-box;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a:before,
.ProductDetails .wrap .right_w .btns .price span:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	opacity: 0;
	-webkit-transition: all 0.4s ease; 
	transition: all 0.4s ease; 
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a:hover,
.ProductDetails .wrap .right_w .btns .price span:hover{
	color: #FFFFFF;
	border: none;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a:hover:before,
.ProductDetails .wrap .right_w .btns .price span:hover:before{
	opacity: 1;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon{
	margin-right: 10px;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon i{
	display: inline-block;
	margin-right: 10px;
	width: 14px;
	height: 16px;
	background: url(../images/icon6a.png) center no-repeat;
	background-size: 100% auto;
	-webkit-transition: all 0.4s ease; 
	transition: all 0.4s ease; 
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a:hover i{
	background: url(../images/icon6.png) center no-repeat;
	background-size: 100% auto;
}

/*.ProductDetails .Parameters .box-list{
	margin-top: 60px;
}*/
.ProductDetails .Parameters .switching ul{
	position: relative;
	overflow: hidden;
}
.ProductDetails .Parameters .switching ul:before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,0.06);
}
.ProductDetails .Parameters .switching ul li{
	float: left;
}
.ProductDetails .Parameters .switching ul li span,
.ProductDetails .Parameters .switching ul li a{
	position: relative;
	z-index: 1;
	display: block;
	min-width: 160px;
	height: 50px;
	line-height: 50px;
	background: #f8f8f8;
	text-align: center;
	cursor: pointer;
}
.ProductDetails .Parameters .switching ul li span:before,
.ProductDetails .Parameters .switching ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	opacity: 0;
	-webkit-transition: all 0.4s ease; 
	transition: all 0.4s ease; 
}
.ProductDetails .Parameters .switching ul li.on span,
.ProductDetails .Parameters .switching ul li.on a,
.ProductDetails .Parameters .switching ul li a:hover,
.ProductDetails .Parameters .switching ul li span:hover{
	color: #FFFFFF;
}
.ProductDetails .Parameters .switching ul li.on span:before,
.ProductDetails .Parameters .switching ul li.on a:before,
.ProductDetails .Parameters .switching ul li a:hover:before,
.ProductDetails .Parameters .switching ul li span:hover:before{
	opacity: 1;
}
.ProductDetails .Parameters .contentItem{
	margin-top: 60px;
}
.ProductDetails .Parameters .contentItem .title{
	color: #000000;
	margin-bottom: 20px;
}
.ProductDetails .Parameters .contentItem  table{
	width: 100%;
	font-size: 16px;
    line-height: 1.7;
    border-collapse: collapse;
    border: rgba(0,0,0,0.06) solid 1px;
}
.ProductDetails .Parameters .contentItem table td{
	height: 60px;
	color: #000000;
	padding: 10px 5px;
	box-sizing: border-box;
	border-right: rgba(0,0,0,0.06) solid 1px;
}
.ProductDetails .Parameters .contentItem table tr:nth-child(odd) td{
	background: #FFFFFF;
}
.ProductDetails .Parameters .contentItem table tr:nth-child(even) td{
	background: #f0f0f0;
}
.ProductDetails .Parameters .contentItem table td:nth-child(1){
	width: 23.75%;
	/*padding-left: 35px;
	padding-right: 20px;*/
	padding-left: 2.9%;
	padding-right: 2%;
	box-sizing: border-box;
}
.ProductDetails .Parameters .contentItem table td:nth-child(2){
	width: 76.25%;
	/*padding-left: 50px;
	padding-right: 20px;*/
	padding-left: 4.166%;
	padding-right: 2%;
	box-sizing: border-box;
}
/**/
.ServiceAndSupport .category ul{
	display: flex;
}
.ServiceAndSupport .category ul li{
	flex: 1;
	margin-right: 8px;
	background: #f0f0f0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.ServiceAndSupport .category ul li:last-child{
	margin-right: 0;
}
.ServiceAndSupport .category ul li.on,
.ServiceAndSupport .category ul li:hover{
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.ServiceAndSupport .category ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	font-size: 20px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ServiceAndSupport .category ul li:hover a,
.ServiceAndSupport .category ul li.on a{
	color: #FFFFFF;
}
.ServiceAndSupport .sort{
	margin-top: 18px;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
	padding: 15px 30px;
}
.ServiceAndSupport .sort ul{
	display: flex;
	flex-wrap: wrap;
}
.ServiceAndSupport .sort ul li{
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 80px;
}
.ServiceAndSupport .sort ul li:last-child{
	margin-right: 0;
}
.ServiceAndSupport .sort ul li a{
	position: relative;
	padding-left: 25px;
	font-family: "OutfitLight"; 
	color: rgba(0,0,0,0.6);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ServiceAndSupport .sort ul li.on a,
.ServiceAndSupport .sort ul li a:hover{
	color: #00a6ca;
}
.ServiceAndSupport .sort ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 10px;
	height: 10px;
	background: #cccccc;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ServiceAndSupport .sort ul li.on a:before,
.ServiceAndSupport .sort ul li a:hover:before{
	background: #00a6ca;
}
.ServiceAndSupport .DownloadList{
	margin-top: 36px;
	border-top: #f0f0f0 solid 1px;
}
.ServiceAndSupport .DownloadList ul{
	margin-bottom: 50px;
}
.ServiceAndSupport .DownloadList ul li:nth-child(odd){
	background-color: #FFFFFF;
}
.ServiceAndSupport .DownloadList ul li:nth-child(even){
	background-color: #fafafa;
}
.ServiceAndSupport .DownloadList ul li a{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 18px;
	box-sizing: border-box;
	font-family: "OutfitLight"; 
	color: rgba(0,0,0,0.6);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ServiceAndSupport .DownloadList ul li a:hover{
	color: #00a6ca;
}
.ServiceAndSupport .DownloadList ul li .text{
	flex: 1;
}
.ServiceAndSupport .DownloadList ul li .icon{
	display: flex;
	align-items: center;
	margin-left: 10px;
}
.ServiceAndSupport .DownloadList ul li .icon i{
	display: inline-block;
	margin-right: 10px;
	width: 13px;
	height: 14px;
	background: url(../images/icon15.png) center no-repeat;
	background-size: 100% auto;
}
.ServiceAndSupport .DownloadList ul li a:hover .icon i{
	background: url(../images/icon15a.png) center no-repeat;
	background-size: 100% auto;
}
.ServiceAndSupport .formBox{
	margin-top: 30px;
}
.ServiceAndSupport .formBox form{
	display: flex;
	flex-wrap: wrap;
}
.ServiceAndSupport .formBox .inputLi{
	width: calc((100% - 4px) / 2);
	margin-right: 4px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.ServiceAndSupport .formBox .inputLi:nth-child(2n){
	margin-right: 0;
}
.ServiceAndSupport .formBox .name{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
	margin-bottom: 10px;
}
.ServiceAndSupport .formBox .inputText{
	width: 100%;
	height: 50px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	padding: 0 20px;
	outline: none;
	border: none;
	background: #fafafa;
	box-sizing: border-box;
}
.ServiceAndSupport .formBox .textareaLi{
	width: 100%;
}
.ServiceAndSupport .formBox .textareaText{
	width: 100%;
	min-height: 200px;
	padding: 15px 20px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	outline: none;
	border: none;
	background: #fafafa;
	box-sizing: border-box;
}
.ServiceAndSupport .formBox .inputBtn{
	margin-top: 35px;
	width: 167px;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.ServiceAndSupport .formBox .inputBtn input{
	width: 100%;
	height: 50px;
	color: #FFFFFF;
	/*font-size: ;*/
	text-align: center;
	background: none;
	border: none;
	outline: none;
}

/**/
.ContactInformation ul{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.ContactInformation ul li{
	width: 49.165%;
	margin-right: 1.67%;
	margin-bottom: 1.67%;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
	background-color: #FFFFFF;
}
.ContactInformation ul li:nth-child(2n){
	margin-right: 0;
}
.ContactInformation ul li .imgBox{
	width: 100%;
	overflow: hidden;
}
.ContactInformation ul li .imgBox img{
	display: block;
	width: 100%;
}
.ContactInformation ul li .textBox{
	padding: 6%;
	box-sizing: border-box;
}
.ContactInformation ul li .textBox .name{
	font-family: "PingFangMedium"; 
	color: #000000;
	padding-bottom: 15px;
	border-bottom: rgba(0,0,0,0.1) solid 1px;
	margin-bottom: 25px;
}
.ContactInformation ul li .textBox .text{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.ContactInformation ul li .textBox .text dl dd{
	display: flex;
	margin-bottom: 2px;
}
.ContactInformation ul li .textBox .text .sp2{
	flex: 1;
	word-break: break-all;
}
/**/
.contactItem{
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
	margin-bottom: 20px;
}
.contactItem .textBox{
	width: 63%;
	padding: 30px 60px;
	box-sizing: border-box;
}
.contactItem .textBox .title{
	font-family: "PingFangMedium"; 
	color: #000000;
	padding-bottom: 18px;
	border-bottom: #e5e5e5 solid 1px;
}
.contactItem .textBox ul{
	margin-top: 30px;
}
.contactItem .textBox ul li{
	display: flex;
	margin-bottom: 25px;
}
.contactItem .textBox ul li:last-child{
	margin-bottom: 0;
}
.contactItem .textBox ul li .icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 20px;
	border: rgba(0,0,0,0.1) solid 1px;
	box-sizing: border-box;
}
.contactItem .textBox ul li .icon img{
	max-width: 41.66666666666667%;
}
.contactItem .textBox ul li .text{
	flex: 1;
}
.contactItem .textBox ul li .text .t1{
	color: rgba(0,0,0,0.6);
	margin-bottom: 7px;
}
.contactItem .textBox ul li .text .t2{
	font-family: "PingFangMedium"; 
	color: #000000;
}
.contactItem .imgBox{
	width: 37%;
	overflow: hidden;
}
.contactItem .imgBox img{
	width: 100%;
}
.feedback{
	display: flex;
	align-items: stretch;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
}
.feedback .textBox{
	width: 33.33333333333333%;
	padding: 3.90625vw 2.34375vw;
	box-sizing: border-box;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.feedback .textBox .title{
	margin-bottom: 20px;
}
.feedback .textBox .title h3{
	font-family: "PingFangMedium";
	color: #ffffff;
}
.feedback .textBox .txt{
	font-family: "PingFangMedium";
	color: #ffffff;
	line-height: 1.7;
}
.feedback .formBox{
	width: 66.66666666666667%;
	padding-left: 4.166666666666667vw;
	padding-right: 4.166666666666667vw;
	padding-top: 3.645833333333333vw;
	padding-bottom: 3.645833333333333vw;
	box-sizing: border-box;
}
.feedback .formBox form,
.Asking .formBox form{
	display: flex;
	flex-wrap: wrap;
}
.feedback .formBox .inputLi,
.Asking .formBox .inputLi{
	width: calc((100% - 3px) / 2);
	margin-right: 3px;
	margin-bottom: 3px;
	box-sizing: border-box;
}
.feedback .formBox .inputLi:nth-child(2n),
.Asking .formBox .inputLi:nth-child(2n){
	margin-right: 0;
}
.feedback .formBox .inputLi input,
.Asking .formBox .inputLi input{
	width: 100%;
	height: 50px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	padding: 0 15px;
	outline: none;
	border: rgba(0,0,0,0.1) solid 1px;
	background: #FFFFFF;
	box-sizing: border-box;
}
.feedback .formBox .textareaLi,
.Asking .formBox .textareaLi{
	width: 100%;
}
.feedback .formBox .textareaLi textarea,
.Asking .formBox .textareaLi textarea{
	width: 100%;
	min-height: 200px;
	padding: 15px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	outline: none;
	border: #e5e5e5 solid 1px;
	background: #FFFFFF;
	box-sizing: border-box;
}
.formBox .inputLi input::-webkit-input-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input:-moz-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input::-moz-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .inputLi input:-ms-input-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .textareaLi textarea::-webkit-input-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .textareaLi textarea:-moz-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .textareaLi textarea::-moz-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.formBox .textareaLi textarea:-ms-input-placeholder{font-family: "PingFangMedium"; color: rgba(0,0,0,0.6);}
.feedback .formBox .inputBtn,
.Asking .formBox .inputBtn{
	margin-top: 10px;
	width: 167px;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.feedback .formBox .inputBtn input,
.Asking .formBox .inputBtn input{
	width: 100%;
	height: 50px;
	color: #FFFFFF;
	font-family: "PingFangMedium"; 
	text-align: center;
	background: none;
	border: none;
	outline: none;
}
.Announcement .classify{
	margin-bottom: 50px;
}
.Announcement .classify ul{
	display: flex;
	flex-wrap: wrap;
}
.Announcement .classify ul li{
	margin-right: 2px;
}
.Announcement .classify ul li a{
	min-width: 160px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #f0f0f0;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	font-size: 16px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.Announcement .classify ul li a:hover,
.Announcement .classify ul li.on a{
	color: #FFFFFF;
	background-image: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.Announcement .notice ul{
	margin-bottom: 5%;
}
.notice ul{
	border-top: #f0f0f0 solid 1px;
}
.notice ul li a{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 25px 0;
	border-bottom: #f0f0f0 solid 1px;
	font-size: 16px;
}
.notice ul li .text{
	position: relative;
	flex: 1;
	padding-left: 24px;
	padding-right: 20px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.notice ul li .text:before{
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #bababa;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.notice ul li a:hover .text:before{
	background: #00a6ca;
}
.notice ul li .date{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.notice ul li a:hover .text,
.notice ul li a:hover .date{
	color: #00a6ca;
}
.InvestorInteraction .box{
	margin-bottom: 5.8%;
}
.InvestorInteraction .box:last-child{
	margin-bottom: 0;
}
.InteractiveEssence ul{
	border-top: #f0f0f0 solid 1px;
}
.InteractiveEssence ul li{
	width: 100% !important;
}
.InteractiveEssence ul li .subtit{
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 42px;
	padding-right: 45px;
	border-bottom: #f0f0f0 solid 1px;
	box-sizing: border-box;
	cursor: pointer;
	font-family: "PingFangMedium"; 
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.InteractiveEssence ul li.on .subtit{
	color: #00a6ca;
}
.InteractiveEssence ul li .subtit .icon{
	position: absolute;
	left: 0;
	top: 17px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: #00a6ca;
}
.InteractiveEssence ul li .subtit .arrow{
	position: absolute;
	right: 0;
	top: 20px;
	margin: auto;
	width: 40px;
	height: 20px;
	background: url(../images/icon23.png) center no-repeat;
	background-size: 12px auto;
}
.InteractiveEssence ul li.on .subtit .arrow{
	background: url(../images/icon23a.png) center no-repeat;
	background-size: 12px auto;
}
.InteractiveEssence ul li .text{
	display: none;
	padding-top: 20px;
	padding-bottom: 40px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.InteractiveEssence ul li:last-child .text{
	padding-bottom: 0;
}
.management .box{
	margin-bottom: 4.16666%;
}
.management .box:last-child{
	margin-bottom: 0;
}
.management .box ul{
	margin-top: 40px;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.management .box ul li{
	width: 49.165%;
	margin-right: 1.67%;
	margin-bottom: 1.67%;
	padding: 3%;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
	box-sizing: border-box;
}
.management .box ul li:nth-child(2n){
	margin-right: 0;
}
.management .box ul li .t1{
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
	font-family: "PingFangMedium";
}
.management .box ul li .t1 .size24{
	color: #000000;
}
.management .box ul li .t1 .size16{
	display: inline-block;
	margin-left: 15px;
	color: #00a6ca;
}
.management .box ul li .t2{
	font-family: "PingFangMedium";
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}

.RecruitmentProcess .box{
	margin-top: 4.16666666666667%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
	text-align: center;
}
.RecruitmentProcess .box img{
	display: block;
	margin: auto;
	width: 100%;
}
.SRQA .wrap{
	margin-top: 2.5%;
}
.SRQA .wrap .moreIcon{
  	position: relative;
  	width: 50px;
  	padding-top: 30px;
  	margin: auto;
  	cursor: pointer;
}
.moreIcon.on{
	/*transform: rotate(180deg);
	transform-origin: center 36px; */
	display: none;
}
.SRQA .wrap .moreIcon span{
	position: relative;
	display: block;
	width: 13px;
	height: 13px;
	margin: auto;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	transform: rotate(-135deg);
}
.SRQA .wrap .moreIcon span:nth-child(1){
	top: -3px;
	animation: arrow-down 2s infinite;
	animation-delay: -0.2s;
}
.SRQA .wrap .moreIcon span:nth-child(2){
	top: -9px;
	animation: arrow-down1 2s infinite;
	animation-delay: -0.4s;
}
@keyframes arrow-down {
	0%{
		opacity: 0;
		transform: rotate(-135deg) translate(15px, 15px);
	}
	50%{
		opacity: 0.3;
	}
	100%{
		opacity: 0;
		transform: rotate(-135deg) translate(-15px, -15px);
	}
}
@keyframes arrow-down1 {
	0%{
		opacity: 0;
		transform: rotate(-135deg) translate(15px, 15px);
	}
	50%{
		opacity: 0.2;
	}
	100%{
		opacity: 0;
		transform: rotate(-135deg) translate(-15px, -15px);
	}
}
/*.SRQA .wrap .moreIcon span{
	position: relative;
	width: 60px;
	height: 60px;
	border-top: 12px solid #000000;
	border-left: 12px solid #000000;
	transform: rotate(-45deg);
	animation: arrow-left 2s infinite;
}
.SRQA .wrap .moreIcon span:nth-child(1){
	left: 25px;
	animation-delay: -0.4s;
}
.SRQA .wrap .moreIcon span:nth-child(2){
	animation-delay: -0.2s;
}
.SRQA .wrap .moreIcon span:nth-child(3){
	right: 25px;
}
@keyframes arrow-left {
	0%{
		opacity: 0;
		transform: rotate(-45deg) translate(60px, 60px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(-45deg) translate(-60px, -60px);
	}
}*/

.recruitment .selectBox{
	position: relative;
	z-index: 5;
	margin-top: 3.333333333333%;
	display: flex;
}
.recruitment .selectBox .selectItem{
	width: 49.2%;
	margin-right: 1.6%;
	margin-bottom: 20px;
}
.recruitment .selectBox .selectItem:nth-child(2n){
	margin-right: 0;
}
.recruitment .selectBox .selectItem select{
	color: #FFFFFF;
	line-height: 60px;
	font-size: 16px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
	background: url(../images/icon7.png) no-repeat center right 30px;
	background-size: 12px auto;
	padding-left: 30px;
	padding-right: 50px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: none;
}

.recruitment .selectBox .selectItem .select{
	position: relative;
	width: 100%;
}
.recruitment .selectBox .selectItem .chooseTxt{
	position: relative;
	z-index: 1;
	background: #f6f6f6;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.recruitment .selectBox .selectItem .chooseTxt:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	background-image: linear-gradient(76deg, #00a6ca 0%, #008cd6 100%);
}
.recruitment .selectBox .selectItem .select:hover .chooseTxt:before,
.recruitment .selectBox .selectItem .chooseTxt.on:before{
	opacity: 1;
}
.recruitment .selectBox .selectItem .select input{
	position: relative;
	z-index: 2;
	width: 100%;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 60px;
	/*font-size: 0.8333333333333333vw;*/
	background: url(../images/icon22.png) no-repeat center right 28px;
	background-size: 12px auto;
	padding-left: 25px;
	padding-right: 50px;
	/*padding-left: 0.78125vw;
	padding-right: 2.34375vw;*/
	box-sizing:border-box;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	border-bottom: rgba(255,255,255,0.2) solid 1px;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.recruitment .selectBox .selectItem .select:hover .chooseTxt input,
.recruitment .selectBox .selectItem .select .chooseTxt.on input{
	font-family: "PingFangMedium"; 
	color: #FFFFFF;
	background: url(../images/icon22a.png) no-repeat center right 28px;
}
.recruitment .selectBox .selectItem .select input::-webkit-input-placeholder{color: #888888;}
.recruitment .selectBox .selectItem .select input:-moz-placeholder{color: #888888}
.recruitment .selectBox .selectItem .select input::-moz-placeholder{color: #888888}
.recruitment .selectBox .selectItem .select input:-ms-input-placeholder{color: #888888}

.recruitment .selectBox .selectItem .select:hover input::-webkit-input-placeholder,
.recruitment .selectBox .selectItem .select .chooseTxt.on input::-webkit-input-placeholder{color: #FFFFFF;}
.recruitment .selectBox .selectItem .select:hover input:-moz-placeholder,
.recruitment .selectBox .selectItem .select .chooseTxt.on input:-moz-placeholder{color: #FFFFFF}
.recruitment .selectBox .selectItem .select:hover input::-moz-placeholder,
.recruitment .selectBox .selectItem .select .chooseTxt.on input::-moz-placeholder{color: #FFFFFF}
.recruitment .selectBox .selectItem .select:hover input:-ms-input-placeholder,
.recruitment .selectBox .selectItem .select .chooseTxt.on input:-ms-input-placeholder{color: #FFFFFF}

.recruitment .selectBox .selectItem .option {
	position: absolute;
	right: 0;
	top: 60px;
	z-index: 2;
	display: none;
	width: 100%;
	padding: 15px 0px;
	background: #FFFFFF;
	box-shadow: 0px 0px 5px rgba(0,53,134,0.1);
}
.recruitment .selectBox .selectItem .option ul li{
	cursor: pointer;
	padding: 5px 25px;
	margin-bottom: 5px;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
}
.recruitment .selectBox .selectItem .option ul li:last-child{
	margin-bottom: 0;
}
.recruitment .selectBox .selectItem .select input,
.recruitment .selectBox .selectItem .option ul li{
	font-size: 20px;
}
.recruitment .recruitList{
	margin-top: 30px;
	border-top: #f0f0f0 solid 1px;
}
.recruitment .recruitList ul{
	margin-bottom: 5.8%;
}
.recruitment .recruitList ul li{
	border-bottom: #f0f0f0 solid 1px;
}
.recruitment .recruitList ul li.on{
	border-bottom: transparent solid 1px;
}
.recruitment .recruitList ul li .crosshead{
	padding-top: 30px;
	padding-bottom: 30px;
	cursor: pointer;
}
.recruitment .recruitList ul li .crosshead .post{
	font-family: "PingFangMedium"; 
	color: #000000;
	margin-bottom: 10px;
}
.recruitment .recruitList ul li .crosshead .txt{
	display: flex;
	justify-content: space-between;
}
.recruitment .recruitList ul li .crosshead .txt .sp1{
	display: flex;
	flex-wrap: wrap;
	color: #000000;
}
.recruitment .recruitList ul li .crosshead .txt .sp1 span{
	position: relative;
	padding-right: 5px;
	margin-right: 5px;
}
.recruitment .recruitList ul li .crosshead .txt .sp1 span:before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	/*background: ;*/
}
.recruitment .recruitList ul li .crosshead .txt .sp1 span:last-child:before{
	display: none;
}
.recruitment .recruitList ul li .crosshead .txt .sp2{
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
}
.recruitment .recruitList ul li .content{
	padding: 4.166% 3.33333333333333%;
	background: #fafafa;
	box-sizing: border-box;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
	display: none;
}
.recruitment .recruitList ul li .content .text{
	margin-bottom: 25px;
}
.recruitment .recruitList ul li .content .text:last-child{
	margin-bottom: 0;
}
.recruitment .recruitList ul li .content h5{
	font-family: "PingFangMedium"; 
	font-size: 18px;
	color: #000000;
	margin-bottom: 10px;
}
.recruitment .recruitList ul li .content .deliver{
	margin-top: 25px;
}
.recruitment .recruitList ul li .content .deliver,
.recruitment .recruitList ul li .content .deliver a{
	color: #00a6ca;
}


.Solution .box ul li{
	width: 100%;
	margin-bottom: 4.16666666666667%;
}
.Solution .box ul li:last-child{
	margin-bottom: 0;
}
.Solution .box ul li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.Solution .box ul li a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../images/img34.png) center bottom no-repeat;
	background-size: 100% auto;
	opacity: 0;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.Solution .box ul li:hover a:before{
	opacity: 1;
}
.Solution .box ul li .imgBox{
	display: block;
	width: 100%;
	overflow: hidden;
}
.Solution .box ul li .imgBox img{
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.Solution .box ul li:hover .imgBox img{
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.Solution .box ul li .textBox{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 3% 3.5%;
	box-sizing: border-box;
	-webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.Solution .box ul li:hover .textBox{
	-webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.Solution .box ul li .textBox h4{
	display: flex;
	align-items: center;
	font-family: "PingFangMedium"; 
	color: #FFFFFF;;
	margin-bottom: 10px;
}
.Solution .box ul li .textBox h4 img{
	display: inline-block;
	margin-right: 10px;
}
.Solution .box ul li .textBox .text{
	font-family: "PingFangMedium"; 
	color: #FFFFFF;
	line-height: 1.7;
}
.Solution .box ul li .textBox .more{
	margin-top: 15px;
}
.Solution .box ul li .textBox .more span{
	font-family: "PingFangMedium"; 
	font-weight: bold;
	background: linear-gradient(45deg, #00a7cb 0%, #008cd7 100%); 
    -webkit-background-clip: text;
    color: transparent; 
   -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}
.Solution .box ul li:hover .textBox .more span{
	opacity: 1;
}

.history{
	min-height: 810px;
	/*min-height: 42.1875vw;*/
	box-sizing: border-box;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.history .maincontainer{
	position: relative;
}
.history .maincontainer:before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background: rgba(0,0,0,0.06);
}
.thumbsBox{
	position: absolute;
	left: 0;
	top: 32%;
	z-index: 5;
	width: 42.5%;
	overflow: hidden;
}
.history .mySwiper1{
	width: calc(100% / 3);
	overflow: initial;
}
/*.history .mySwiper1:before{
	content: '';
	position: absolute;
	right: 18%;
	top: 0;
	z-index: 2;
	width: 68%;
	height: 100%;
	background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.5) 100%);
	pointer-events: none
}*/

.history .mySwiper1 .year{
	font-family: "PingFangMedium"; 
	font-weight: bolder;
	color: rgba(0,0,0,0.1);
	cursor: pointer;
}
.history .mySwiper1 .swiper-slide-thumb-active .year{
	background: linear-gradient(76deg, #00a6ca 0%, #008cd6 100%);
    -webkit-background-clip: text; 
    color: transparent;
   -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.history .mySwiper1 .year span{
	opacity: 0;
}
.history .mySwiper1 .swiper-slide-thumb-active .year span{
	opacity: 1;
}
.history .mySwiper2{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.history .content{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: stretch;
}
.history .content .text{
	width: 54%;
	display: flex;
	align-items: flex-end;
}
.history .content .text .txt{
	padding-top: 35px;
	min-height: 50%;
	box-sizing: border-box;
	opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
	font-family: "PingFangMedium"; 
	color: rgba(0,0,0,0.6);
	line-height: 1.7;
}
.history .swiper-slide-active .content .text .txt{
	opacity: 1;
	-webkit-transform: translateY(0);
    transform: translateY(0);
}
.history .content .img{
	width: 46%;
	max-width: 540px;
	padding: 7.5%;
	box-sizing: border-box;
	background: url(../images/img68.png) center no-repeat;
	background-size: auto 100%;
}
.history .content .img span{
	display: block;
	width: 100%;
	border-radius: 50%;
	overflow: hidden;
}
.history .content .img span img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	-webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.history .swiper-slide-active .content .img span img{
	opacity: 1;
}
.history .ny2-swiper-btn{
	position: absolute;
	bottom: 0;
	width: 50px;
	height: 50px;
	padding: 2px;
}
.history .swiper-btn-next{
	left: 80px;
}

@media screen and (max-width: 1920px) and (min-width: 1025px){
	/*header*/
	.header .nav ul li > a{
		/*font-size: 0.833333333333vw;*/
		font-size: 16px;
	}
	.header .cellBox dl{
		/*font-size: 0.833333333333vw;*/
		font-size: 14px;
	}
	.header .cellBox .title{
		/*font-size: 1.04vw;*/
		font-size: 16px;
		padding-top: 0.625vw;
    	margin-bottom: 0.52vw;
	}
	.header .cellBox .menuLeft dd a{
		background: url(../images/icon9a.png) left center no-repeat;
		padding-left: 1.666666666666667vw;
		-webkit-transform: translateX(-1.666666666666667vw);
		transform: translateX(-1.666666666666667vw);
		background-size: 1.145833333333333vw auto;
	}
	.header .cellBox .menuLeft dd.on a,
	.header .cellBox .menuLeft dd a:hover{
		background: url(../images/icon9a.png) left center no-repeat;
		background-size: 1.145833333333333vw auto;
	}
	
	.header .cellBox dd a{
		background: url(../images/icon9a.png) left center no-repeat;
		padding-left: 1.666666666666667vw;
		-webkit-transform: translateX(-1.666666666666667vw);
		transform: translateX(-1.666666666666667vw);
		background-size: 1.145833333333333vw auto;
	}
	.header .cellBox dd.on a,
	.header .cellBox dd a:hover{
		background: url(../images/icon9a.png) left center no-repeat;
		background-size: 1.145833333333333vw auto;
	}
	/**/
	.size80{
		font-size: 4.166666666666667vw;
	}
	.size40{
		font-size: 2.083333333333333vw;
	}
	.size30{
		font-size: 1.5625vw;
	}
	.size24{
		font-size: 1.25vw;
	}
	.size20{
		font-size: 1.041666666666667vw;
	}
	.size18{
		font-size: 0.9375vw;
	}
	.size16{
		font-size:16px;
	}
	.size01{
		font-size:1.2vw;
	}
	.size36{
		font-size: 1.875vw;
	}
	.size32{
		font-size: 1.666666666666667vw;
	}
	.size22{
		font-size: 1.145833333333333vw;
	}
	/*.header .nav ul li{
		padding: 0 0.9375vw;
	}
	.header .nav ul li a{
		font-size: 0.8333333333333333vw;
	}
	.head-login .icon{
		width: 1.56vw;
    	height: 3.125vw;
	}
	.head-login .icon img{
		width: 0.8333333333333333vw;
	}
	.head-nation .current{
		font-size: 0.7291666666666667vw;
		padding-left: 1.302083333333333vw;
	    background: url(../images/langicon.png) left center no-repeat;
	    background-size: 0.9375vw auto;
	}*/
	
	.bannerText .box .text{
		margin-top: 0.521vw;
	}
	.bannerBtn{
		margin-top: 1.822916666666667vw;
	}
	.bannerBtn span{
		width: 8.333333333333333vw;
	    height: 2.604166666666667vw;
	    border-radius: 0.26vw;
	    font-size: 0.8333333333333333vw;
	}
	.lunbotu .swiper-pagination{
		bottom: 3.125vw;
	}
	.BannerSwiper .swiper-pagination{
		bottom: 1.5625vw;
	}
	.lunbotu .swiper-pagination-bullet,
	.BannerSwiper .swiper-pagination-bullet{
		width: 1.875vw;
		height: 1.875vw;
	}
	.lunbotu .swiper-pagination-bullet:before,
	.BannerSwiper .swiper-pagination-bullet:before{
		width: 0.3645833333333333vw;
		height: 0.3645833333333333vw;
	}
	
	.footer .footInfor ul li{
		font-size: 16px;
	}
	.footer .title{
		font-size: 1.3vw;
	}
	.footer .footNav ul{
		margin-top: 1.041666666666667vw;
		font-size:16px;
	}
	.footer .footNav ul li{
		margin-bottom: 0.26vw;
	}
	.footer .footCode .img img{
		max-width: 6.458333333333333vw;
	}
	.footer .footCode .text{
		margin-top: 0.5208333333333333vw;
	    font-size: 14px;
	}
	.footer .footShare ul li{
		margin-right: 1.041666666666667vw;
	}
	.footer .footShare ul li a img{
		max-width: 1.40625vw;
	}
	.footer .copyright{
		padding: 14px;
    	font-size: 14px;
	}
	.footer .copyright i{
		margin: 0 0.5208333333333333vw;
	}
	
	.padT70{
		padding-top: 3.645833333333333vw;
	}
	.padT80{
		padding-top: 4.166666666666667vw;
	}
	.padT100{
		padding-top: 5.208333333333333vw;
	}
	.padT120{
		padding-top: 6.25vw;
	}
	.padB100{
		padding-bottom: 5.208333333333333vw;
	}
	.padB80{
		padding-bottom: 4.166666666666667vw;
	}
	.padB120{
		padding-Bottom: 6.25vw;
	}
	.padB140{
		padding-Bottom: 7.291666666666667vw;
	}
	.padB160{
		padding-Bottom: 8.333333333333333vw;
	}
	.padB170{
		padding-Bottom: 8.854166666666667vw;
	}
	.mianContent{
		/* padding-top: 3.125vw; */
	}
	.index-title{
		margin-bottom: 1.5625vw;
	}
	.index-title .more{
		margin-top: 1vw;
	}
	
	.indexProducts .box .text h4{
		margin-bottom: 0.3125vw;
	}
	.indexProducts .box .text .more{
		margin-top: 1vw;
	}
	
	.indexProductSolutions .box .textBox .title .size16{
		margin-top: 0.8333333333333333vw;
	}
	.indexProductSolutions .box .mainBox .textBox .more{
		margin-top: 1vw;
	}
	.indexProductSolutions .box ul li .textBox .more{
		margin-left: 1vw;
    	padding-top: 0.26vw;
	}
	
	
	.comnect .imgBox{
		padding-bottom: 2.604166666666667vw;
    	margin-bottom: 3.90625vw;
	}
	.comnect .textBox .left_w ul{
		margin-top: 2.604166666666667vw;
	}
	.comnect .textBox .left_w ul li{
		margin-bottom: 1vw;
	}
	.comnect .textBox .left_w ul li a{
		padding: 0.4166666666666667vw 0;
	}
	.comnect .textBox .right_w ul li{
		margin-bottom: 2.083333333333333vw;
	}
	.comnect .textBox .right_w ul li .t1{
		padding-bottom: 0.5208333333333333vw;
    	margin-bottom: 0.625vw;
	}
	
	
	.page-list a{
		padding: 0 0.5208333333333333vw;
	    min-width: 2.708333333333333vw;
	    height: 2.708333333333333vw;
	    margin-bottom: 0.26vw;
	    margin-right: 0.78125vw;
	    font-size: 0.8333333333333333vw;
	}
	
	.InvestorInteraction .current-title{
		margin-bottom: 1.822916666666667vw;
	}
	.current-title h3{
		padding-left: 2.6vw;
	}
	.current-title h3 i{
		width: 2.6vw;;
	    height: 0.8333333333333333vw;
	    background: url(../images/icon9a.png) left top no-repeat;
	    background-size: 66% auto;
	}
	.banner-title h1{
		padding-left: 2.6vw;
		margin-bottom: 0.6vw;
	}
	.banner-title h1 span{
		width: 2.6vw;;
	    height: 0.8333333333333333vw;
	    background: url(../images/icon9.png) left top no-repeat;
	    background-size: 66% auto;
	}
	
	.notice ul li a{
		font-size: 0.8333333333333333vw;
	}
	.notice ul li .text:before{
		top: 0.3125vw;
		width: 0.5208333vw;
		height: 0.5208333vw;
	}
	/*about*/
	.culture2 .item .text{
		padding: 1.56vw;
	}
	/**/
	.InteractiveEssence ul li .text{
		padding-top: 1vw;
		padding-bottom: 2vw;
	}
	.SRQA .wrap .moreIcon{
		width: 2.6vw;
    	padding-top: 1.56vw;
	}
	.SRQA .wrap .moreIcon span{
		width: 0.6770833333333333vw;
	    height: 0.6770833333333333vw;
	}
	.InteractiveEssence ul li .subtit{
		padding-top: 1vw;
	    padding-bottom: 1vw;
	    padding-left: 2.1875vw;
	    padding-right: 2.34375vw;
	}
	.InteractiveEssence ul li .subtit .arrow{
		top: 1vw;
		width: 2.083333333333333vw;
    	height: 1.041666666666667vw;
		background: url(../images/icon23.png) center no-repeat;
    	background-size: 0.625vw auto;
	}
	.InteractiveEssence ul li .subtit .icon{
		top: 0.8854166666666667vw;
	    width: 1.354166666666667vw;
	    height: 1.354166666666667vw;
	}
	.recruitment .selectBox .selectItem .select input, .recruitment .selectBox .selectItem .option ul li{
		font-size: 1.041666666666667vw;
	}
	.recruitment .selectBox .selectItem .select input{
		line-height: 3.125vw;
	    background: url(../images/icon22.png) no-repeat center right 1.458333333333333vw;
	    background-size: 0.625vw auto;
	    padding-left: 1.3vw;
	    padding-right: 2.6vw;
	}
	.recruitment .selectBox .selectItem{
		margin-bottom: 1vw;
	}
	.recruitment .selectBox .selectItem .option{
		top: 3.125vw;
	    padding: 0.78125vw 0;
	}
	.recruitment .selectBox .selectItem .option ul li{
		padding: 0.26vw 1.3vw;
    	margin-bottom: 0.26vw;
	}
	.recruitment .recruitList{
		margin-top: 1.56vw;
	}
	.recruitment .recruitList ul li .crosshead{
		padding-top: 1.56vw;
    	padding-bottom: 1.56vw;
	}
	.recruitment .recruitList ul li .crosshead .post{
		margin-bottom: 0.5vw;
	}
	.recruitment .recruitList ul li .content .text{
		margin-bottom: 1.3vw;
	}
	.recruitment .recruitList ul li .content h5{
		font-size: 0.9375vw;
		margin-bottom: 0.5vw;
	}
	/**/
	.ContactInformation ul li .textBox .name{
		padding-bottom: 0.78125vw;
    	margin-bottom: 1.302083333333333vw;
	}
	.contactItem{
		margin-bottom: 1vw;
	}
	.contactItem .textBox{
		padding: 1.56vw 3.125vw;
	}
	.contactItem .textBox ul{
		margin-top: 1.56vw;
	}
	.contactItem .textBox ul li{
		margin-bottom: 1.3vw;
	}
	.contactItem .textBox ul li .icon{
		width: 2.6vw;
		height: 2.6vw;
		margin-right: 1vw;
	}
	.feedback .textBox .title{
		margin-bottom: 1vw;
	}
	.feedback .formBox .inputLi input, .Asking .formBox .inputLi input{
		padding: 0 0.78125vw;
		height: 2.6vw;
	}
	.feedback .formBox .textareaLi textarea, .Asking .formBox .textareaLi textarea{
		min-height: 10.4vw;
    	padding: 0.78125vw;
	}
	.feedback .formBox .inputBtn, .Asking .formBox .inputBtn{
		margin-top: 0.5vw;
		width: 8.697916666666667vw;
	}
	.feedback .formBox .inputBtn input, .Asking .formBox .inputBtn input{
		height: 2.6vw;
	}
	
	.new-detail .title{
		padding-bottom: 0.5vw;
	    border-bottom: rgba(0,0,0,0.1) solid 0.1vw;
	    margin-bottom: 1.56vw;
	}
	.new-detail .title .txt{
		margin-top: 1.56vw;
	}
	.new-detail .title .txt span{
		margin-right: 2.3vw;
    	margin-bottom: 0.5vw;
	}
	.new-detail .box{
		padding-bottom: 3vw;
	}
	.PrveNextBox{
		padding: 3.125vw;
	}
	.PrveNextBox ul li{
		margin-bottom: 1vw;
	}
	.PrveNextBox ul li a{
		padding-bottom: 1vw;
	}
	/**/
	.ProductSearch .text{
		width: calc(100% - 2.6vw);
		font-size: 0.83333333vw;
		padding-left: 1.04vw;
	}
	.ProductSearch .btn{
		width: 2.6vw;
		height: 2.6vw;
		background: url(../images/icon10.png) center no-repeat;
		background-size: 1vw auto;
	}
	.productNav ul li .title{
		padding-top: 1.25vw;
		padding-bottom: 1.25vw;
		padding-right: 2.08333333vw;
		font-size: 1.04vw;
	}
	.productNav ul li .title i{
		right: 0.8vw;
		width: 1.3vw;
		height: 1.3vw;
		background: url(../images/icon11.png) center no-repeat;
		background-size: 0.67708333333vw auto;
	}
	/**/
	.ProductDetails .wrap .right_w .title{
		padding-bottom: 1.3vw;
	}
	.ProductDetails .wrap .right_w .text{
		margin-top: 1.56vw;
    	margin-bottom: 2.6vw;
	}
	.ProductDetails .Parameters .contentItem  table{
		font-size: 0.833333333333vw;
	}
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		width: 8.333333333333333vw;
    	height: 2.6vw;
	}
	.ProductDetails .wrap .right_w .btns .DownloadIcon i{
		margin-right: 0.5vw;
	    width: 0.73vw;
	    height: 0.833vw;
	}
	.ProductDetails .Parameters .contentItem{
		margin-top: 3.125vw;
	}
	.ProductDetails .Parameters .contentItem table td{
		height: 3.125vw;
		padding: 0.5vw 0.25vw;
	}
	/**/
	.ProductInformation ul li .textBox{
		padding: 2.08vw 1.458333333333333vw 1.3vw;
	}
	.ProductInformation ul li .textBox h4{
		margin-bottom: 0.5vw;
	}
	.ProductInformation ul li .textBox .more{
		margin-top: 0.78125vw;
	}
	/**/
	.ServiceAndSupport .category ul li a{
		font-size: 1.041666666666667vw;
		height: 3.125vw;
        line-height: 3.125vw;
	}
	.ServiceAndSupport .sort{
		margin-top: 1vw;
    	padding: 0.78vw 1.56vw;
	}
	.ServiceAndSupport .sort ul li{
		margin-top: 0.26vw;
		margin-bottom: 0.26vw;
		margin-right: 4vw;
	}
	.ServiceAndSupport .sort ul li a{
		padding-left: 1.3vw;
	}
	.ServiceAndSupport .sort ul li a:before{
		top: 0.26vw;
	    width: 0.5vw;
	    height: 0.5vw;
	}
	.ServiceAndSupport .DownloadList{
		margin-top: 1.875vw;
	}
	.ServiceAndSupport .DownloadList ul{
		margin-bottom: 2.6vw;
	}
	.ServiceAndSupport .DownloadList ul li a{
		padding: 1vw;
	}
	
	.history{
		min-height: 42.1875vw;
	}
	.history .content .img{
		max-width: 28.125vw;
	}
	.history .content .text .txt{
		padding-top: 2vw;
	}
	.history .ny2-swiper-btn{
		width: 2.6vw;
		height: 2.6vw;
	}
	.history .swiper-btn-next{
		left: 4.166666666666667vw;
	}
	.history .ny2-swiper-btn .ny2-swiper-button:after{
		width: 0.5208333333333333vw;
    	height: 0.5208333333333333vw;
    	margin-right: 0.26vw;
	}
	
	@keyframes LogoAnimate{
	  	0%,40%,100%{
	    	transform: translateY(0);
	  	}
	  	20%{
	    	transform: translateY(-4.166666666666667vw);
	  	}
	} 
	
	.productList ul li a .tag{
		top: 1.5625vw;
	}
	
}
@media screen and (max-width: 1600px){
	.maincontainer{
		width: 80%;
	}
	/*.comnect .imgBox .atlas{
		width: 41.71875%;
	}*/
	/*.comnect .imgbg img{
		transform: scale(0.75) translateY(10%);
	}*/
}
@media screen and (max-width: 1366px){
	/*header*/
	.header .nav ul li{
		padding: 0 15px;
	}
	.header .nav ul li > a{
		font-size: 15px;
	}
	.header .cellBox dl{
		font-size: 13px;
	}
	.header .cellBox .title{
		font-size: 15px;
	}
	
	.productList ul li a .tag{
		min-width: 38px;
		min-height: 28px;
		margin-right: 14px;
		font-size: 12px;
	}
	.productList ul li a .tag:before{
		width: 4px;
	}
	.productList ul li a .tag:after{
		right: -14px;
		width: 14px;
	}
}
@media screen and (max-width: 1024px){
	.maincontainer{
		width: 90%;
	}
	.mianContent{
		padding-top: 70px;
	}
	.header .nav{
		display: none;
	}
	.searchdiv{
		display: none;
	}
	/*.head-login{
		margin-right: 5px;
	}*/
	.header .show-search-btn,
	.head-login .icon,
	.head-nation .current{
		height: 70px;
	}
	.header .search,
	.head-nation ul,
	.head-login ul{
		top: 70px;
	}
	.head-nation .current{
		padding-left: 30px;
		background: url(../images/langicon.png) center no-repeat;
    	background-size: 18px auto;
	}
	.head-nation .current span{
		display: none;
	}
	
	.menubtn{
		display: block;
	}
	
	.footer{
		padding-top: 60px;
	}
	.footer .wrap{
		padding-bottom: 40px;
	}
	/*20240517修改*/
	.footer .wrap .left_w{
		/*width: 50%;*/
		flex: 1;
	}
	.footer .wrap .right_w{
		width: auto;
	}
	/**/
	.footer .footNav{
		display: none;
	}
	.footer .footInfor{
		margin-bottom: 0px;
	}
	.footer .footShare{
		display: none;
	}
	.footCode{display:none}
	
	
	.size80{
		font-size: 50px;
	}
	.size40{
		font-size: 32px;
	}
	.size30{
		font-size: 26px;
	}
	.size24{
		font-size: 20px;
	}
	.size20{
		font-size: 18px;
	}
	.size18{
		font-size: 17px;
	}
	.size16{
		font-size: 15px;
	}
	.size36,
	.size32{
		font-size: 28px;
	}
	.size22{
		font-size: 18px;
	}
	
	.pImg{
		display: none;
	}
	.mImg{
		display: block;
	}
	.bannerText{
		top: 10%;
		-o-transform: translate(-50%, 0%);
	    -ms-transform: translate(-50%, 0%);
	    -moz-transform: translate(-50%, 0%);
	    -webkit-transform: translate(-50%, 0%);
	    transform: translate(-50%, 0%);
	}
	.lunbotu .swiper-pagination,
	.BannerSwiper .swiper-pagination{
		bottom: 30px;
	}
	.lunbotu .swiper-pagination-bullet,
	.BannerSwiper .swiper-pagination-bullet{
		width: 24px;
		height: 24px;
		margin: 0px 3px;
	}
	.lunbotu .swiper-pagination-bullet:before,
	.BannerSwiper .swiper-pagination-bullet:before{
		width: 5px;
		height: 5px;
	}
	.bannerBtn span{
		width: 150px;
		height: 45px;
	}
	.BannerSwiperBox .banner-title{
		bottom: 90px;
	}
	
	.padT80{
		padding-top: 70px;
	}
	.padT100{
		padding-top: 80px;
	}
	.padT120{
		padding-top: 100px;
	}
	.padB100{
		padding-bottom: 80px;
	}
	.padB80{
		padding-bottom: 70px;
	}
	.padB120{
		padding-bottom: 90px;
	}
	.padB140{
		padding-bottom: 100px;
	}
	.padB160{
		padding-bottom: 100px;
	}
	.padB170{
		padding-Bottom: 100px;
	}
	
	
	.indexProductSolutions .box .textBox .title .size24 img{
		max-width: 20px;
		margin-right: 10px;
	}
	.indexProductSolutions .box .textBox .title .size16{
		margin-top: 10px;
	}
	.comnect .imgBox{
		padding-bottom: 40px;
		margin-bottom: 60px;
	}
	.comnect .imgBox>img{
		width: 45%;
	}
	.logoAinmation{
		width: 45%;
	}
	.comnect .textBox .left_w ul{
		margin-top: 40px;
	}
	
	.Announcement .notice ul{
		margin-bottom: 8%;
	}
	.notice ul li a{
		padding: 20px 0px;
	}
	
	.page-list a{
		padding: 0px 8px;
	    min-width: 42px;
	    height: 42px;
	    margin-right: 10px;
	}
	
	/**/
	.InteractiveEssence ul li .text{
		padding-bottom: 30px;
	}
	.SRQA .wrap .moreIcon{
		width: 40px;
	}
	.SRQA .wrap .moreIcon span{
		width: 10px;
	    height: 10px;
	}
	
	/**/
	.recruitment .selectBox .selectItem .select input, .recruitment .selectBox .selectItem .option ul li{
		font-size: 17px;
	}
	.recruitment .recruitList ul li .crosshead{
		padding-top: 25px;
	    padding-bottom: 25px;
	}
	.ContactInformation ul li .textBox .name{
    	margin-bottom: 20px;
	}
	/**/
	.contactItem .textBox{
		padding: 30px 40px;
	}
	.contactItem .textBox .title{
		padding-bottom: 15px;
	}
	.contactItem .textBox ul{
		margin-top: 20px;
	}
	.contactItem .textBox ul li{
		margin-bottom: 20px;
	}
	.contactItem .textBox ul li .icon{
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}
	.feedback .textBox{
		padding: 50px 30px;
	}
	.feedback .textBox .title{
		margin-bottom: 15px;
	}
	.feedback .formBox .textareaLi textarea, .Asking .formBox .textareaLi textarea{
		min-height: 150px;
	}
	/**/
	.mainNews .box .text{
		padding: 30px;
	}
	.mainNews .box .text .more{
		margin-top: 30px;
	}
	.new-list ul{
		margin-bottom: 7%;
	}
	.new-list ul li{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.new-list ul li .img{
		width: 25%;
	}
	.new-list ul li .text{
		width: 75%;
	}
	.new-detail .box{
		padding-bottom: 50px;
	}
	.PrveNextBox{
		padding: 45px;
	}
	/**/
	.ProductDetails .wrap .right_w{
		width: 47%;
	}
	.ProductDetails .wrap .right_w .title{
		padding-bottom: 20px;
	}
	.ProductDetails .wrap .right_w .title .t1{
		margin-bottom: 5px;
	}
	.ProductDetails .wrap .right_w .text{
		margin-top: 20px;
    	margin-bottom: 40px;
	}
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		width: 140px;
		height: 45px;
	}
	.ProductDetails .swiper-button-prev, .ProductDetails .swiper-container-rtl .swiper-button-next{
	    left: -40px;
	}
	.ProductDetails .preview .swiper-button-next, .ProductDetails .preview .swiper-container-rtl .swiper-button-prev{
	    right: -40px;
	}
	
	/*.ProductDetails .Parameters .box-list{
		margin-top: 40px;
	}*/
	.ProductDetails .Parameters .contentItem{
		margin-top: 40px;
	}
	
	.ServiceAndSupport .category ul li a{
		height: 54px;
		line-height: 54px;
		font-size: 18px;
	}
	.ServiceAndSupport .sort ul li{
		margin-right: 40px;
	}
	.ServiceAndSupport .formBox .textareaText{
		min-height: 150px;
	}
	
	.activities .wrap{
		margin-top: 40px;
	}
	
	.history{
		min-height: 600px;
	}
	.history .ny2-swiper-btn{
		width: 45px;
		height: 45px;
	}
	.history .swiper-btn-next{
		left: 70px;
	}
	/**/
	/*.comnect .imgbg img{
		transform: scale(1) translateY(0);
	}*/
	.comnect .imgbg span{
		-webkit-backdrop-filter: blur(40px);
		backdrop-filter: blur(40px);
	}
	.comnect .textBox .left_w .size40, 
	.comnect .textBox .left_w ul, 
	.comnect .textBox .right_w ul li{
		opacity: 1;
	    transform: translateY(0);
	}
	.comnect .imgBox{
		border-bottom: rgba(255,255,255,0.1) solid 1px;
	}
	.comnect .textBox .left_w .size40,
	.comnect .textBox .left_w ul li,
	.comnect .textBox .right_w ul li .LearnMore,
	.comnect .textBox .right_w ul li .t1,
	.comnect .textBox .right_w ul li .t2{
		opacity: 0;
		-webkit-transition: all 1s ease;
		transition: all 1s ease;
		-webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
	}
	/*.comnect .textBox .right_w ul li .LearnMore{
		transition-delay: 0.2s;
	}*/
	.comnect .textBox .left_w .size40.animated,
	.comnect .textBox .left_w ul li.animated,
	.comnect .textBox .right_w ul li .LearnMore.animated,
	.comnect .textBox .right_w ul li .t1.animated,
	.comnect .textBox .right_w ul li .t2.animated{
		opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
	}
	.comnect .imgBox .atlas{
		width: 45%;
	}
	.comnect .imgBox.animated span{
		animation: fadeIn 0.5s forwards;
	}
	.comnect .imgBox span:nth-child(1) {
	  animation-delay: 0.1s;
	}
	 
	.comnect .imgBox span:nth-child(2) {
	  animation-delay: 0.2s;
	}
	 
	.comnect .imgBox span:nth-child(3) {
	  animation-delay: 0.3s;
	}
	
	.comnect .imgBox span:nth-child(4) {
	  animation-delay: 0.4s;
	}
	
	.comnect .imgBox span:nth-child(5) {
	  animation-delay: 0.5s;
	}
	
	.comnect .imgBox span:nth-child(6) {
	  animation-delay: 0.6s;
	}
	
	.comnect .imgBox span:nth-child(7) {
	  animation-delay: 0.7s;
	}
	@keyframes fadeIn {
	  to {
	    opacity: 1;
	    visibility: visible;
	  }
	}
	
	.productList ul li .textBox .txt{
		padding-bottom: 30px;
	}
	
	.productList ul li a .tag{
		top: 20px;
	}
}
@media screen and (max-width: 768px){
	.footer .copyright{
		display: block;
		text-align: center;
	}
	.footer .copyright a{
		display: inline;
	}
	
	.size80{
		font-size: 40px;
	}
	.size40{
		font-size: 28px;
	}
	.size30{
		font-size: 24px;
	}
	.size24{
		font-size: 18px;
	}
	.size20{
		font-size: 16px;
	}
	.size18{
		font-size: 16px;
	}
	.size16{
		font-size: 14px;
	}
	.size36,
	.size32{
		font-size: 24px;
	}
	.size22{
		font-size: 16px;
	}
	.bannerBtn{
		margin-top: 25px;
	}
	.bannerBtn span{
		width: 140px;
		height: 40px;
	}
	
	.padT70{
		padding-top: 60px;
	}
	.padT80{
		padding-top: 60px;
	}
	.padT100{
		padding-top: 70px;
	}
	.padT120{
		padding-top: 90px;
	}
	.padB100{
		padding-bottom: 70px;
	}
	.padB80{
		padding-bottom: 60px;
	}
	.padB120{
		padding-bottom: 80px;
	}
	.padB140{
		padding-bottom: 90px;
	}
	.padB160{
		padding-bottom: 90px;
	}
	.padB170{
		padding-Bottom: 90px;
	}
	.index-title .more{
		margin-top: 15px;
	}
	
	.indexProducts .box .left_w{
		width: 100%;
		margin-right: 0;
	}
	.indexProducts .box .right_w{
		width: 100%;
	}
	.indexProducts .box .right_w ul{
		flex-wrap: wrap;
	}
	.indexProducts .box ul li.pro1,
	.indexProducts .box ul li.pro2,
	.indexProducts .box ul li.pro3,
	.indexProducts .box ul li.pro4{
		width: 100%;
		margin-right: 0 !important;
	}
	.indexProductSolutions .box ul{
		margin-top: 0;
	}
	.indexProductSolutions .box ul li{
		width: calc((100% - 20px) / 2);
		margin-right: 20px;
		margin-bottom: 0;
		margin-top: 20px;
	}
	.indexProductSolutions .box ul li:nth-child(2n){
		margin-right: 0;
	}
	.indexProducts .box .text{
		top: 40px;
	    padding-left: 5%;
	    padding-right: 5%;
	}
	.indexProductSolutions .box .mainBox .textBox,
	.indexProductSolutions .box ul li .textBox{
		position: static;
		width: 100%;
		padding: 25px;
		box-sizing: border-box;
		box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
	}
	.indexProductSolutions .box ul li .textBox .text{
		flex-wrap: wrap;
	}
	.indexProductSolutions .box ul li .textBox .title{
		width: 100%;
	}
	.indexProductSolutions .box ul li .textBox .more{
		width: 100%;
		margin-left: 0;
		padding-top: 0;
	}
	.indexProductSolutions .box .mainBox .textBox .more,
	.indexProductSolutions .box ul li .textBox .more{
		margin-top: 10px;
	}
	
	
	.indexProducts .box{
		padding-left: 0;
	}
	.indexProducts .box .left_w{
		width: calc(38% - 6px);
		margin-right: 6px;
	}
	.indexProducts .box .upper{
		width: 62%;
	}
	.indexProducts .box .lower{
		position: static;
		margin-top: 6px;
	}
	.indexProducts .box ul li.pro3{
		width: calc((100% - 6px) / 2);
		margin-right: 6px;
	}
	.indexProducts .box ul li.pro4{
		width: calc((100% - 6px) / 2);
	}
	.indexProducts .box ul li.pro1{
		margin-bottom: 6px;
	}
	.indexProducts .box .left_w a{
		display: block;
	}
	.indexProducts .box .left_w .img{
		display: flex;
		justify-content: flex-end;
	}
	.indexProducts .box .left_w .img img{
		max-width: 90%;
		width: 90%;
	}
	.indexProducts .box .text{
		top: 0;
		padding: 30px 25px;
	}
	.indexProducts .box .left_w .text{
		margin-top: 0;
		margin-bottom: 0;
	}
	.indexProducts .box ul li.pro3,
	.indexProducts .box ul li.pro4{
		height: 210px;
	}
	.indexProducts .box ul li .img{
		width: 50%;
	}
	
	
	.comnect .imgBox{
    	margin-bottom: 50px;
	}
	.comnect .textBox{
		flex-wrap: wrap;
	}
	.comnect .textBox .left_w{
		width: 100%;
	}
	.comnect .textBox .left_w ul{
		display: none;
	}
	.comnect .textBox .right_w{
		max-width: 100%;
		width: 100%;
		margin-top: 30px;
	}
	.comnect .textBox .right_w ul li .LearnMore{
		display: block;
	}
	.notice ul li a{
		font-size: 15px;
	}
	.notice ul li .text{
		padding-left: 20px;
	}
	.notice ul li .text:before{
		width: 8px;
		height: 8px;
	}
	.page-list a{
	    min-width: 36px;
	    height: 36px;
	    font-size: 15px;
	}


	/*投资者关系*/
	.notice ul li a {
		/*flex-direction: column-reverse;*/
		padding: 15px 0;
	}
	.management .box ul {
		margin-top: 30px;
	}
	.management .box ul li {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 20px;
	}
	
	.management .box {
		margin-bottom: 30px;
	}
	.banner-title h1{
		padding-left: 30px;
		margin-bottom: 5px;
	}
	.banner-title h1 span{
		width: 30px;
		height: 10px;
	}
	.InvestorInteraction .current-title{
		margin-bottom: 30px;
	}
	.current-title h3 i {
		width: 30px;
		background-size: 22px;
		height: 10px;
	}
	.current-title h3 {
		padding-left: 30px;
	}
	.Announcement .classify ul li a {
		font-size: 14px;
		min-width: auto;
		padding: 0 20px;
		height: 40px;
		line-height: 40px;
	}
	.Announcement .classify {
		margin-bottom: 30px;
	}

	/*新闻*/
	.news .new-list{
		margin-top: 7%;
	}
	.new-list ul{
		margin-bottom: 45px;
	}
	.new-list ul li a {
		flex-direction: column;
	}
	.new-list ul li .img {
		width: 100%;
		height: 200px;
	}
	.new-list ul li .text {
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	.mainNews .box{
		margin-top: 30px;
	}
	.mainNews .box .text {
		width: 100%;
		position: initial;
		transform: translateY(-0%);
		background:#0AA4CF;
		padding-bottom: 60px;
	}
	.mainNews .box .text h4 {
		font-size: 16px;
	}
	.mainNews .box .text .date, .mainNews .box .text h4, .mainNews .box .text .txt, .mainNews .box .text .more {
		opacity: 1;
		transform: translateY(-0%);
	}
	.mainNews .box .text .more {
		margin-top: 10px;
	}
	.mainNews .box .text .more span {
		color: #fff;
	}
	.mainNews .swiper-pagination{
		display: flex;
		align-items: center;
		left: 30px;
		bottom: 25px;
	}
	.mainNews .swiper-pagination-bullet{
		width: 10px;
		height: 10px;
		margin-right: 10px;
	}
	.mainNews .swiper-pagination-bullet-active {
		border: 1px solid #fff;
	}
	.mainNews .box .text .txt {
		margin-top: 10px;
		font-size: 12px;
	}
	/**/
	.new-detail .title .txt{
		margin-top: 20px;
	}
	.PrveNextBox{
		padding: 35px;
	}
	/*服务与支持*/
	.ServiceAndSupport .category ul li a {
		height: 42px;
		line-height: 42px;
		font-size: 14px;
	}
	.ServiceAndSupport .sort{
		padding: 10px 25px;
	}
	.ServiceAndSupport .sort ul li {
		margin-right: 20px;
	}
	.ServiceAndSupport .sort ul li a{
		padding-left: 20px;
	}
	.ServiceAndSupport .sort ul li a:before{
		width: 8px;
		height: 8px;
	}
	.ServiceAndSupport .DownloadList ul{
		margin-bottom: 40px;
	}
	/*社会责任*/
	.activities .wrap {
		flex-direction: column;
	}
	.activities .left_w, .activities .right_w {
		width: 100%;
		margin-right: 0 !important;
	}
	.activities ul li {
		width: 100%;
		margin-right: 0;
		margin-top: 20px;
	}

	/*产品资讯*/
	.ProductInformation ul{
		padding-bottom: 30px;
	}
	/*.ProductInformation ul li {
		width: 100%;
		margin-right: 0;
	}
	.ProductInformation ul li .imgBox {
		height: 200px;
	}*/
	.ProductInformation ul li{
		width: 48%;
		margin-right: 4%;
	}
	.ProductInformation ul li:nth-child(3n){
		margin-right: 4%;
	}
	.ProductInformation ul li:nth-child(2n){
		margin-right: 0;
	}
	
	
	
	.ProductInformation .mySwiper ul li .imgBox {
		height: auto;
	}
	.Solution .box ul li .textBox {
		position: initial;
		transform: translateY(0);
		background:#0AA4CF;
		padding: 25px;
	}
	.Solution .box ul li a:before{
		display: none;
	}
	
	.Solution .box ul li .textBox .more span {
		opacity: 1;
		color: #fff;
	}

	.productSolutions .wrap {
		flex-direction: column;
	}
	.productSolutions .wrap .left_w {
		width: 100%;
	}
	.productSolutions .wrap .right_w {
		width: 100%;
		margin-top: 30px;
	}

	.productList ul li {
		width: calc((100% - 15px) / 2);
	}
	.productList ul li:nth-child(3n) {
		margin-right: 15px;
	}
	.productList ul li:nth-child(2n) {
		margin-right: 0;
	}
	.productList .page-list {
		justify-content: center;
	}
	.productNav ul li .title ,
	.productNav>ul>li>a{
		padding: 12px 0;
		font-size: 14px;
	}
	.productNav ul li ul li a {
		font-size: 14px;
	}
	.productNav ul li .title i{
		background: url(../images/icon11.png) center no-repeat;
		background-size: 11px auto;
	}
	.productNav ul li .title.on i{
		background: url(../images/icon11a.png) center no-repeat;
		background-size: 11px auto;
	}
	.ProductSearch .btn {
		height: 40px;
	}
	.ProductSearch .text {
		font-size: 14px;
	}
	.productNav ul li .title i {
		right: 0;
	}
	.ProductInfor .box h4 {
		font-size: 16px;
	}
	.ProductInfor .box .text {
		font-size: 12px;
		margin-top: 4px;
	}
	/**/
	.recruitment .selectBox .selectItem .select input, .recruitment .selectBox .selectItem .option ul li{
		font-size: 16px;
	}
	.recruitment .selectBox .selectItem .select input{
		line-height: 50px;
	}
	.recruitment .selectBox .selectItem .option{
		top: 50px;
	}
	.recruitment .recruitList ul{
		margin-bottom: 50px;
	}
	.recruitment .recruitList ul li .crosshead{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	/**/
	.ContactInformation ul li .textBox .name{
    	margin-bottom: 15px;
	}
	.ContactInformation ul li .textBox .text.size18{
		font-size: 15px;
	}
	/**/
	.contact .current-title{
		margin-bottom: 30px;
	}
	.contactItem .textBox{
		padding: 25px;
	}
	.contactItem .textBox ul li{
		margin-bottom: 15px;
	}
	.contactItem .textBox ul li .icon{
		width: 40px;
		height: 40px;
	}
	.contactItem .textBox ul li .text .t1{
		margin-bottom: 4px;
	}
	.feedback .textBox{
		padding: 40px 25px;
	}
	.feedback .formBox .inputLi input, .Asking .formBox .inputLi input,
	.feedback .formBox .inputBtn input, .Asking .formBox .inputBtn input{
		height: 45px;
	}
	.feedback .formBox .textareaLi textarea, .Asking .formBox .textareaLi textarea{
		min-height: 100px;
	}
	.feedback .formBox .inputBtn, .Asking .formBox .inputBtn{
		width: 140px;
	}
	/**/
	.InvestorInteraction .box{
		margin-bottom: 7%;
	}
	/**/
	.ProductDetails .wrap{
		flex-wrap: wrap;
	}
	.ProductDetails .wrap .left_w{
		width: 100%;
	}
	.ProductDetails .preview{
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
	}
	.ProductDetails .swiper-button-prev, .ProductDetails .swiper-container-rtl .swiper-button-next{
	    left: -10px;
	}
	.ProductDetails .preview .swiper-button-next, .ProductDetails .preview .swiper-container-rtl .swiper-button-prev{
	    right: -10px;
	}
	.ProductDetails .wrap .right_w{
		width: 100%;
		margin-top: 30px;
	}
	.ProductDetails .wrap .right_w .title{
		padding-bottom: 15px;
	}
	.ProductDetails .wrap .right_w .text{
		margin-top: 15px;
		margin-bottom: 30px;
	}
	.ProductDetails .Parameters .contentItem table td{
		height: 50px;
	}
	.ProductDetails .Parameters .switching ul li span, .ProductDetails .Parameters .switching ul li a{
		min-width: 140px;
	    height: 45px;
	    line-height: 45px;
	}
	.ProductDetails .Parameters .contentItem table{
		font-size: 15px;
	}
	.ServiceAndSupport .formBox .inputText{
		height: 45px;
	}
	.ServiceAndSupport .formBox .inputBtn{
		width: 140px;
	}
	.ServiceAndSupport .formBox .inputBtn input{
		height: 45px;
	}
	.ServiceAndSupport .formBox .textareaText{
		min-height: 100px;
	}
	/**/
	.history .thumbsBox{
		position: static;
		width: 100%;
		margin-top: 7%;
		margin-bottom: 7%;
	}
	.history .mySwiper1{
		width: 100%;
		overflow: hidden;
	}
	.history .mySwiper1 .swiper-slide{
		width: auto;
	}
	.history .maincontainer:before{
		display: none;
	}
	.history .content{
		flex-wrap: wrap;
	}
	.history .content .text{
		display: block;
		width: 100%;
		min-height: 200px;
	}
	.history .content .text .txt{
		
	}
	.history .content .img{
		width: 60%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.history .ny2-swiper-btn{
		top: 34%;
	}
	.history .swiper-btn-next{
		left: auto;
		right: 0;
	}
	
}
@media screen and (max-width: 640px){
	.menubtn{
		height: 60px;
	}
	.m-nav{
		top: 60px;
		height: calc(100vh - 60px);
	}
	.m-nav>ul>li>a, .m-nav>ul>li>.headtitle{
		padding: 12px 0px;
	}
	.header .show-search-btn,
	.head-login .icon,
	.head-nation .current{
		height: 60px;
	}
	.header .search,
	.head-nation ul,
	.head-login ul{
		top: 60px;
	}
	.footer .wrap{
		flex-wrap: wrap;
		padding-bottom: 30px;
	}
	.footer .wrap .left_w{
		width: 100%;
	}
	.footer .wrap .right_w{
		max-width: 100%;
		width: 100%;
		margin-top: 25px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footer .footInfor{
		margin-top: 20px;
	}
	.footer .footInfor ul li,
	.footer .footCode .text{
		font-size: 14px;
	}
	.footer .copyright{
		padding: 15px 0px;
	}
	
	.size30{
		font-size: 21px;
	}
	.size40{
		font-size: 26px;
	}
	.size80{
		font-size: 36px;
	}
	.size36,
	.size32{
		font-size: 21px;
	}
	.padT70{
		padding-top: 50px;
	}
	.padT80{
		padding-top: 50px;
	}
	.padT100{
		padding-top: 60px;
	}
	.padT120{
		padding-top: 80px;
	}
	.padB100{
		padding-bottom: 60px;
	}
	.padB80{
		padding-bottom: 50px;
	}
	.padB120{
		padding-bottom: 70px;
	}
	.padB140{
		padding-bottom: 80px;
	}
	.padB160{
		padding-bottom: 80px;
	}
	.padB170{
		padding-Bottom: 80px;
	}
	
	.mianContent{
		padding-top: 60px;
	}
	.indexProductSolutions .box ul li{
		width: 100%;
		margin-right: 0;
	}
	
	.indexProducts .box .wrap{
		flex-wrap: wrap;
	}
	.indexProducts .box .left_w{
		width: 100%;
		margin-right: 0;
	}
	.indexProducts .box .upper{
		width: 100%;
		margin-top: 6px;
	}
	.indexProducts .box .right_w ul{
		flex-wrap: wrap;
	}
	.indexProducts .box ul li{
		width: 100% !important;
		margin-right: 0 !important;
		margin-bottom: 6px;
	}
	.indexProducts .box .text{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.indexProducts .box ul li.pro1, .indexProducts .box ul li.pro2,
	.indexProducts .box ul li.pro3, .indexProducts .box ul li.pro4{
		height: auto;
	}
	.indexProducts .box ul li .img{
		padding-top: 10%;
		width: 60%;
	}
	.indexProducts .box .left_w .text{
		padding-top: 40px;
		padding-bottom: 0;
	}
	.indexProducts .box .left_w .img{
		padding-top: 7%;
	}
	.indexProducts .box .left_w .img img{
		max-width: 75%;
		width: 75%;
	}
	.Announcement .notice ul{
		margin-bottom: 10%;
	}
	/*.notice ul li a{
		flex-wrap: wrap;
	}
	.notice ul li .text,
	.notice ul li .date{
		width: 100%;
	}
	.notice ul li .date{
		margin-top: 5px;
	}*/
	.page-list a{
	    min-width: 32px;
	    height: 32px;
	    font-size: 14px;
	    margin-right: 8px;
	}
	
	.RecruitmentProcess .box{
		margin-top: 25px;
	}
	.SRQA .wrap,
	.recruitment .selectBox{
		margin-top: 25px;
	}
	.SRQA .wrap, .recruitment .selectBox{
		flex-wrap: wrap;
	}
	.recruitment .selectBox .selectItem{
		width: 100%;
		margin-right: 0;
	}
	.recruitment .selectBox .selectItem:last-child{
		margin-bottom: 0;
	}
	.recruitment .recruitList ul li .content{
		padding: 25px;
	}
	.recruitment .selectBox .selectItem .select input{
		padding-left: 20px;
    	padding-right: 40px;
    	background: url(../images/icon22.png) no-repeat center right 20px;
    	background-size: 12px auto;
	}
	.recruitment .selectBox .selectItem .select:hover .chooseTxt input, .recruitment .selectBox .selectItem .select .chooseTxt.on input{
		background: url(../images/icon22a.png) no-repeat center right 20px;
    	background-size: 12px auto;
	}
	.recruitment .selectBox .selectItem .option ul li{
		padding: 5px 20px;
	}
	/*.recruitment .recruitList ul li .crosshead .txt{
		flex-wrap: wrap;
	}
	.recruitment .recruitList ul li .crosshead .txt .sp1{
		margin-bottom: 5px;
	}
	.recruitment .recruitList ul li .crosshead .txt .sp2{
		width: 100%;
	}*/
	.ContactInformation ul li{
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 25px;
	}
	.ContactInformation ul li:last-child{
		margin-bottom: 0;
	}
	.ContactInformation ul li .textBox{
		padding: 25px;
	}
	
	/**/
	.InvestorInteraction .current-title{
		margin-bottom: 25px;
	}
	.contact .current-title{
		margin-bottom: 25px;
	}
	.contactItem{
		flex-wrap: wrap;
	}
	.contactItem .textBox{
		width: 100%;
		padding: 30px;
	}
	.contactItem .imgBox{
		width: 100%;
	}
	.feedback{
		flex-wrap: wrap;
	}
	.feedback .textBox{
		width: 100%;
		padding: 30px;
	}
	.feedback .formBox{
		width: 100%;
		padding: 40px 30px;
	}
	.feedback .formBox .inputLi, .Asking .formBox .inputLi{
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 10px;
	}
	.feedback .formBox .inputBtn, .Asking .formBox .inputBtn{
		margin-top: 15px;
	}
	.InvestorInteraction .box{
		margin-bottom: 40px;
	}
	.InteractiveEssence ul li .text{
		padding-bottom: 20px;
	}
	.management .box ul{
		margin-top: 25px;
	}
	.productList ul{
		margin-bottom: 30px;
	}
	.productList ul li .textBox .txt{
		padding-bottom: 20px;
		min-height: 70px;
	}
	
	.ServiceAndSupport .formBox .inputLi{
		width: 100%;
		margin-right: 0 !important;
	}
	.activities .wrap{
		margin-top: 30px;
	}
	.history .ny2-swiper-btn{
		top: 27%;
	}
	
	@keyframes LogoAnimate{
	  	0%,40%,100%{
	    	transform: translateY(0);
	  	}
	  	20%{
	    	transform: translateY(-50px);
	  	}
	} 
	
	
	.ProductInformation ul li {
		width: 100%;
		margin-right: 0 !important;
	}
	.ProductInformation ul li .imgBox{
		height: 200px;
	}
	.ProductInformation .mySwiper ul li .imgBox{
		height: auto;
	}
	/*.ProductInformation ul li .imgBox {
		position: relative;
		padding-bottom: 66.66666666666667%;
	}
	.ProductInformation ul li .imgBox img{
		position: absolute;
	}
	.ProductInformation .mySwiper ul li .imgBox{
		padding-bottom: 0;
	}
	.ProductInformation .mySwiper ul li .imgBox img{
		position: static;
	}*/
}
@media screen and (max-width: 540px){
	.search-header{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.search-header .search-input,
	.search .submit0,
	.search-close{
		height: 45px;
	}
	.search-header .search-input{
		font-size: 15px;
		text-indent: 36px;
	}
	
	.size40{
		font-size: 24px;
	}
	.size80{
		font-size: 32px;
	}
	.lunbotu .swiper-pagination,
	.BannerSwiper .swiper-pagination{
		bottom: 20px;
	}
	.BannerSwiperBox .banner-title{
		bottom: 70px;
	}
	.bannerBtn span {
	    width: 130px;
	}
	.indexProductSolutions .box .textBox .title .size24 img{
		max-width: 18px;
		margin-right: 8px;
	}
	.new-detail .box{
		padding-bottom: 40px;
	}
	.PrveNextBox{
		padding: 25px;
		font-size: 15px;
	}
	.PrveNextBox ul li{
		margin-bottom: 15px;
	}
	.PrveNextBox ul li a{
		padding-bottom: 15px;
	}
	.PrveNextBox .btn{
		font-size: 15px;
	}
	/*.productList ul li{
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 20px;
	}*/
	.ProductInformation .box,
	.ProductInfor .box{
		margin-top: 30px;
	}
	
	.history .ny2-swiper-btn{
		top: 24%;
		width: 42px;
		height: 42px;
	}
	
	.comnect .imgBox{
    	margin-bottom: 40px;
	}
	.ProductInformation ul li .textBox{
		padding: 30px 22px 25px;
	}
	.productList ul li .textBox .txt.size16{
		font-size: 12px;
		min-height: 60px;
	}
}
@media screen and (max-width: 480px){
	.size30{
		font-size: 19px;
	}
	.size36,
	.size32{
		font-size: 20px;
	}
	.size40{
		font-size: 22px;
	}
	.size80{
		font-size: 30px;
	}
	.padT70{
		padding-top: 40px;
	}
	.padT80{
		padding-top: 40px;
	}
	.padT100{
		padding-top: 50px;
	}
	.padT120{
		padding-top: 50px;
	}
	.padB100{
		padding-bottom: 50px;
	}
	.padB80{
		padding-bottom: 40px;
	}
	.padB120{
		padding-bottom: 60px;
	}
	.padB140{
		padding-bottom: 70px;
	}
	.padB160{
		padding-bottom: 70px;
	}
	.padB170{
		padding-Bottom: 70px;
	}
	.lunbotu .swiper-pagination,
	.BannerSwiper .swiper-pagination{
		bottom: 10px;
	}
	.lunbotu .swiper-pagination-bullet,
	.BannerSwiper .swiper-pagination-bullet{
		width: 20px;
		height: 20px;
	}
	.lunbotu .swiper-pagination-bullet:before,
	.BannerSwiper .swiper-pagination-bullet:before{
		width: 4px;
		height: 4px;
	}
	.index-title{
		margin-bottom: 25px;
	}
	.index-title .more{
		margin-top: 10px;
	}
	.BannerSwiperBox .banner-title{
		bottom: 40px;
	}
	.indexProducts .box ul li .img{
		padding-top: 12%;
	}
	.indexProducts .box .text .more{
		margin-top: 15px;
	}
	/**/
	.comnect .imgBox{
		padding-bottom: 30px;
    	margin-bottom: 30px;
	}
	/**/
	.recruitment .selectBox .selectItem .select input{
		height: 45px;
	}
	.recruitment .selectBox .selectItem .option{
		top: 45px;
	}
	.recruitment .recruitList ul li .content{
		padding: 20px;
	}
	.recruitment .recruitList ul li .content h5{
		font-size: 17px;
	}
	.SRQA .wrap .moreIcon span {
	    border-top: 1.5px solid #000000;
	    border-left: 1.5px solid #000000;
	}
	.ContactInformation ul li{
		margin-bottom: 20px;
	}
	.ContactInformation ul li .textBox{
		padding: 20px;
	}
	.contactItem .textBox{
		padding: 25px;
	}
	.contactItem .textBox ul li .icon{
		width: 36px;
		height: 36px;
		margin-right: 10px;
	}
	.contactItem .textBox ul li .text .t2.size18{
		font-size: 15px;
	}
	.feedback .textBox,
	.feedback .formBox{
		padding: 40px 25px;
	}
	.Announcement .notice ul{
		margin-bottom: 40px;
	}
	.notice ul li a{
		font-size: 14px;
	}
	.management .box ul li:last-child{
		margin-bottom: 0;
	}
	.news .new-list{
		margin-top: 30px;
	}
	.new-list ul li{
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
	.mainNews .box .text{
		padding: 25px 25px 55px;
	}
	
	/**/
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		width: 130px;
    	height: 42px;
	}
	/*.ProductDetails .Parameters .box-list{
		margin-top: 30px;
	}*/
	.ProductDetails .Parameters .switching ul li span, .ProductDetails .Parameters .switching ul li a {
	    min-width: 120px;
	    height: 42px;
	    line-height: 42px;
	}
	.ProductDetails .Parameters .contentItem{
		margin-top: 30px;
	}
	.ProductDetails .Parameters .contentItem table td{
		height: 45px;
	}
	.ProductDetails .Parameters .contentItem table{
		font-size: 14px;
	}
	
	.history{
		min-height: 500px;
	}
	.history .ny2-swiper-btn{
		top: 20%;
	}
	
	.comnect .imgBox>img{
		width: 50%;
	}
	.logoAinmation{
		width: 50%;
	}
	
	.ProductInformation .box,
	.ProductInfor .box{
		margin-top: 25px;
	}
	.ProductInformation ul li .textBox h4{
		margin-bottom: 5px;
	}
	.ProductInformation ul li .textBox .more{
		margin-top: 10px;
	}
	.productList ul li a .tag{
	   padding-left: 10px;
	}
}


.feedback .formBox .inputLi.codebox{
	display: flex;
	align-items: center;
	width: 100%;
}
.feedback .formBox .inputLi.codebox input{
	max-width: 170px;
}
.feedback .formBox .inputLi.codebox img{
	max-width: 170px;
	margin-left: 10px;
}
@media screen and (max-width: 768px){
	.feedback .formBox .inputLi.codebox input{
		max-width: 48%;
		width: 48%;
	}
	.feedback .formBox .inputLi.codebox img{
		max-width: 48%;
		margin-left: 4%;
	}
}


.footer .footInfor ul li{
	display: flex;
	align-items: flex-start;
}
.footer .footInfor ul li .sp1{
	white-space: nowrap;
}
.footer .footInfor ul li .sp2{
	flex: 1;
	word-break: break-word;
}


.bannerText .box .text.size20{
	font-size: 34px;
}
@media screen and (max-width: 1920px) and (min-width: 1025px){
	.bannerText .box .text.size20{
		font-size: 1.770833333333333vw;
	}
}
@media screen and (max-width: 1024px){
	.bannerText .box .ProductName.size24{
		font-size: 24px;
	}
	.bannerText .box h2.size80{
		font-size: 64px;
		margin-top: 10px;
	}
	.bannerText .box .text.size20{
		margin-top: 15px;
		font-size: 28px;
	}
}
@media screen and (max-width: 768px){
	.bannerText .box .ProductName.size24{
		font-size: 20px;
	}
	.bannerText .box h2.size80{
		font-size: 56px;
		margin-top: 6px;
	}
	.bannerText .box .text.size20{
		margin-top: 10px;
		font-size: 24px;
	}
}
@media screen and (max-width: 640px){
	.bannerText .box .ProductName.size24{
		font-size: 16px;
	}
	.bannerText .box h2.size80{
		font-size: 48px;
		margin-top: 4px;
	}
	.bannerText .box .text.size20{
		margin-top: 6px;
		font-size: 20px;
	}
}
@media screen and (max-width: 540px){
	.bannerText .box .ProductName.size24{
		font-size: 15px;
	}
	.bannerText .box h2.size80{
		font-size: 40px;
	}
	.bannerText .box .text.size20{
		font-size: 18px;
	}
}
@media screen and (max-width: 480px){
	.bannerText .box .ProductName.size24{
		font-size: 14px;
	}
	.bannerText .box h2.size80{
		font-size: 36px;
		margin-top: 3px;
	}
	.bannerText .box .text.size20{
		font-size: 16px;
	}
}
@media screen and (max-width: 414px){
	.bannerText .box .ProductName.size24{
		font-size: 3.4vmin;
	}
	.bannerText .box h2.size80{
		font-size: 7.5vmin;
	}
	.bannerText .box .text.size20{
		font-size: 3.864vwmin;
		margin-top: 1vmin;
	}
	.bannerBtn{
		margin-top: 4.8vmin;
	}
	.bannerBtn span{
		width: 30vmin;
		height: 8.33333333333333vmin;
	}
}





/*20240514 填写简历*/
.recruitment .selectBox .selectItem:nth-child(1){
	position: relative;
	z-index: 2;
}
.recruitment .selectBox .selectItem:nth-child(2){
	position: relative;
	z-index: 1;
}
.deliver{
	display: flex;
	align-items: center;
}
.deliver .email{
	margin-right: 5%;
}
.deliver .compilebtn a,
.deliver .compilebtn span{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 50px;
	padding-left: 30px;
	padding-right: 30px;
	overflow: hidden;
	box-sizing: border-box;
	font-size: 16px;
	color: #FFFFFF !important;
	/*background-color: #2e54a1;*/
	background: -webkit-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: -moz-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: -o-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	cursor: pointer;
}


.resumeform{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100vh;
	display: none;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: rgba(0,0,0,0.4);
}
.resumeform.on{
	display: flex;
}
.resumeform .box{
	position: relative;
	max-width: 860px;
	width: 44.79166666666667%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	display: flex;
	align-items: stretch;
}
.resumeform .box .wrap{
	padding: 8% 9.30232558139535% 12%;
	box-sizing: border-box;
	max-height: 90vh;
    overflow-y: auto;
}
.resumeform .box .title{
	font-family: "PingFangMedium";
	font-size: 30px;
	color: #000000;
	margin-bottom: 35px;
	text-align: center;
}
.resumeform .box form{
	display: flex;
	flex-wrap: wrap;
}
.resumeform .box .formli{
	width: 48.57%;
	margin-right: 2.86%;
	margin-bottom:4.28%;
}
.resumeform .box .formli:nth-child(2n){
	margin-right: 0;
}
.resumeform .box .sp{
	font-family: "PingFangMedium";
	color: rgba(0,0,0,0.6);
	font-size: 16px;
	margin-bottom: 10px;
}
.resumeform .box .txt{
	display: flex;
	align-items: center;
    border: rgba(0,0,0,0.1) solid 1px;
    box-sizing: border-box;
    width: 100%;
}
.resumeform .box .formli .txt input{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 20px;
    overflow: hidden;
    box-sizing: border-box;
    font-family: "PingFangMedium";
    color: rgba(0,0,0,0.6);
	font-size: 16px;
    height: 48px;
    background: #FFFFFF;
}
.resumeform .box .formli .txt select{
	display: flex;
	align-items: center;
	width: 100%;
	padding-left: 20px;
	padding-right: 40px;
    overflow: hidden;
    box-sizing: border-box;
    font-family: "PingFangMedium";
    color: rgba(0,0,0,0.6);
	font-size: 16px;
    height: 48px;
    background: #FFFFFF;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	outline:0;
	background: url(../images/icon23.png) right 15px center no-repeat;
    background-size: 12px auto;
	box-sizing:border-box;
}
.resumeform .box .textli{
	width: 100%;
}
.resumeform .box .textli textarea{
	width: 100%;
    border: none;
    outline: none;
    font-family: "PingFangMedium";
    color: rgba(0,0,0,0.6);
    font-size: 16px;
    line-height: 1.7;
    min-height: 180px;
    padding: 12px 20px;
    box-sizing: border-box;
    background: #FFFFFF;
}
.resumeform .box .formli input::-webkit-input-placeholder,
.resumeform .box .textli textarea::-webkit-input-placeholder{
	font-family: "PingFangMedium";
	color: rgba(0,0,0,0.3);
}
.resumeform .box .formli input::-moz-placeholder,
.resumeform .box .textli textarea::-moz-placeholder{
    font-family: "PingFangMedium";
	color: rgba(0,0,0,0.3);
}
.resumeform .box .formli input:-moz-placeholder,
.resumeform .box .textli textarea:-moz-placeholder{ 
    font-family: "PingFangMedium";
	color: rgba(0,0,0,0.3);
}
.resumeform .box .formli input:-ms-input-placeholder,
.resumeform .box .textli textarea:-ms-input-placeholder{ 
    font-family: "PingFangMedium";
	color: rgba(0,0,0,0.3);
}
.resumeform .box .formbtn{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44.57%;
	margin: 40px auto 0;
	background: -webkit-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: -moz-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: -o-linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
	background: linear-gradient(45deg, #00a6ca 0%, #008cd6 100%);
}
.resumeform .box .formbtn input{
	width: 100%;
	height: 50px;
	text-align: center;
	font-family: "PingFangMedium";
    color: #FFFFFF;
	font-size: 16px;
    box-sizing: border-box;
    overflow: hidden;
    outline: none;
    border: none;
    background: none;
}
.resumeform .box .closeBtn{
	position: absolute;
	right: 25px;
	top: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.resumeform .box .closeBtn img{
	width: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.resumeform .box .closeBtn:hover img{
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media screen and (max-width: 1920px) and (min-width: 1025px){
	.deliver .compilebtn a,
	.deliver .compilebtn span{
		min-width: 8.333333333333333vw;
		height: 2.604166666666667vw;
		padding-left: 1.5625vw;
		padding-right: 1.5625vw;
		font-size: 0.8333333333333333vw;
	}
	
	
	.resumeform .box .title{
		font-size: 1.5625vw;
		margin-bottom: 1.8vw;
	}
	.resumeform .box .sp{
		font-size: 0.8333333333333vw;
		margin-bottom: 0.521vw;
	}
	.resumeform .box .formli .txt input{
		padding: 0 1vw;
		font-size: 0.8333333333333vw;
	    height: 2.5vw;
	}
	.resumeform .box .formli .txt select{
		font-size: 0.8333333333333vw;
	    height: 2.5vw;
	    padding-left: 1vw;
	    padding-right: 2vw;
		background: url(../images/icon23.png) right 0.78125vw center no-repeat;
    	background-size: 0.625vw auto;
	}
	.resumeform .box .textli textarea{
	    font-size: 0.8333333333333vw;
	    min-height: 9vw;
	    padding: 0.7vw 1vw;
	}
	.resumeform .box .formbtn{
		margin: 2.08vw auto 0;
	}
	.resumeform .box .formbtn input{
		height: 2.604166666666667vw;
		font-size: 0.8333333333333333vw;
	}
	.resumeform .box .closeBtn{
		right: 1.3vw;
		top: 1vw;
		width: 2vw;
		height: 2vw;
	}
}
@media screen and (max-width: 1024px){
	.deliver .compilebtn a,
	.deliver .compilebtn span{
		min-width: 140px;
		height: 45px;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.resumeform .box{
		width: 80%;
	}
}
@media screen and (max-width: 768px){
	.deliver .compilebtn a,
	.deliver .compilebtn span{
		min-width: 120px;
		height: 40px;
		font-size: 14px;
	}
	.resumeform .box{
		width: 90%;
	}
	.resumeform .box .wrap{
		padding: 7% 7% 10%;
	}
	.resumeform .box .title{
		font-size: 24px;
		margin-bottom: 25px;
	}
	.resumeform .box .sp,
	.resumeform .box .formli .txt input,
	.resumeform .box .formli .txt select,
	.resumeform .box .textli textarea{
		font-size: 15px;
	}
	.resumeform .box .formli{
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.resumeform .box .formli:nth-child(2n){
		margin-right: 0;
	}
	.resumeform .box .formli .txt input,
	.resumeform .box .formli .txt select{
		height: 42px;
	}
	.resumeform .box .textli textarea{
		min-height: 150px;
	}
	.resumeform .box .formbtn input{
		font-size: 15px;
		height: 42px;
	}
	.resumeform .box .closeBtn{
		width: 32px;
		height: 32px;
	}
}
@media screen and (max-width: 640px){
	.deliver{
		display: block;
	}
	.deliver .email{
		width: 100%;
		margin-right: 0;
	}
	.deliver .compilebtn{
		display: flex;
		margin-top: 20px;
	}
	
	.resumeform .box .title{
		font-size: 3.75vmin;
		margin-bottom: 4vmin;
	}
	.resumeform .box .sp,
	.resumeform .box .formli .txt input,
	.resumeform .box .formli .txt select,
	.resumeform .box .textli textarea{
		font-size: 2.5vmin;
	}
	.resumeform .box .formli .txt input{
		height: 7vmin;
		padding: 0 3.125vmin;
	}
	.resumeform .box .formli .txt select{
		height: 7vmin;
	    padding-left: 3.125vmin;
	    padding-right: 6.25vmin;
		background: url(../images/icon23.png) right 2.5vmin center no-repeat;
    	background-size: 2vmin auto;
	}
	.resumeform .box .textli textarea{
		min-height: 24vmin;
		padding: 2vmin 3.125vmin;
	}
	.resumeform .box .formbtn{
		margin-top: 6.25vmin;
	}
	.resumeform .box .formbtn input{
		font-size: 2.5vmin;
		height: 7vmin;
	}
	.resumeform .box .closeBtn{
		right: 4vmin;
    	top: 3.125vmin;
		width: 5.625vmin;
		height: 5.625vmin;
	}
}
@media screen and (max-width: 480px){
	.resumeform .box .title{
		font-size: 4vmin;
	}
	.resumeform .box .sp,
	.resumeform .box .formli .txt input,
	.resumeform .box .formli .txt select,
	.resumeform .box .textli textarea{
		font-size: 3.2vmin;
	}
	.resumeform .box .sp{
		margin-bottom: 7px;
	}
	.resumeform .box .formli .txt input,
	.resumeform .box .formli .txt select{
		height: 8vmin;
	}
	.resumeform .box .textli textarea{
		height: 28vmin;
	}
	.resumeform .box .formbtn input{
		font-size: 3.2vmin;
		height: 8vmin;
	}
}

/*20240517*/
.header .second-box{
	min-width: 120%;
	width: auto;
	margin-left: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.header .second-box a{
	white-space: nowrap;
	padding-left: 20px;
	padding-right: 20px;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon{
	display: flex;
}
.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
	width: auto;
	min-width: 160px;
	padding: 0px 20px;
}
@media screen and (max-width: 1920px) and (min-width: 1025px){
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		width: auto;
		min-width: 8.333333333333333vw;
		padding: 0 1.04vw;
	}
}
@media screen and (max-width: 1024px){
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		min-width: 140px;
	}
}
@media screen and (max-width: 480px){
	.ProductDetails .wrap .right_w .btns .DownloadIcon a, .ProductDetails .wrap .right_w .btns .price span{
		min-width: 130px;
		padding: 0px 15px;
	}
}


.footer .footInfor ul li{
	margin-bottom: 4px;
}
.footer .footInfor ul li .sp1{
	min-width: 32px;
}
.footer .footInfor ul li .sp1 img{
	max-width: 19px;
}
.footer .footInfor ul li:nth-child(1) .sp1 img,
.footer .footInfor ul li:nth-child(4) .sp1 img{
	position: relative;
	top: -2px;
}
@media screen and (max-width: 1920px) and (min-width: 1025px){
	.footer .footInfor ul li{
		margin-bottom: 0.2083333333333333vw;
	}
	.footer .footInfor ul li .sp1{
		min-width: 1.666666666666667vw;
	}
	.footer .footInfor ul li .sp1 img{
		max-width: 0.9895833333333333vw;
	}
	.footer .footInfor ul li:nth-child(1) .sp1 img,
	.footer .footInfor ul li:nth-child(4) .sp1 img{
		position: relative;
		top: -0.1vw;
	}
}
@media screen and (max-width: 640px){
	.footer .footInfor ul li .sp1{
		min-width: 26px;
	}
	.footer .footInfor ul li .sp1 img{
		max-width: 16px;
	}
}

.ProductInformation ul li .textBox .text{
	line-height: 1.3;
	min-height: 42px;
}
@media screen and (max-width: 1920px) and (min-width: 1025px) {
	.ProductInformation ul li .textBox .text{
			min-height: 2.1875vw;
	}
}
@media screen and (max-width: 768px){
	.ProductInformation ul li .textBox .text{
			min-height: 36px;
	}
}
@media screen and (max-width: 640px){
	.ProductInformation ul li .textBox .text{
			min-height: 1px;
	}
}


.ProductInformation ul li .textBox .text{
    line-height: 1.3;
    min-height: 42px;
}
@media screen and (max-width: 1920px) and (min-width: 1025px) {
    .ProductInformation ul li .textBox .text{
            min-height: 2.1875vw;
    }
}
@media screen and (max-width: 768px){
    .ProductInformation ul li .textBox .text{
            min-height: 36px;
    }
	.IndexAbout_right{display:none}
}
@media screen and (max-width: 640px){
    .ProductInformation ul li .textBox .text{
            min-height: 1px;
    }
}