/*common start*/
body,div,ul,li,a,img,p,dl,dt,dd,h1,h2,h3,h4,span,input,button,textarea,dl,dt{ margin:0; padding:0;list-style:none;text-decoration:none;border:0; list-style:none;font-weight: normal;}
body{ font-size:14px;color:#111;overflow-x: hidden;font-family: "Arial"}
a img{
  border: 0;
}
em {
  font-style: normal;
}
body.head_on{overflow:hidden;}
a{text-decoration:none;color: #333;transition: all .3s;}
*{box-sizing: border-box;}
input,select,textarea{outline: none;}
.clear{ margin:0; padding:0; font-size:0; clear:both; }

.wapper{
	width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding:0 50px;
	box-sizing: border-box;
}



@media only screen and (min-width: 1400px){
	.wapper{
		width: 1389px;
		margin: 0 auto;
		padding:0 5%;
	}
}

:root{
	--primary-color:#2a62ac;
	--font-color:#666;
	--main-white:#fff;
}





/* 轮播图通用 */
.swiper {width: 100%;height: 100%;}
.swiper-slide
{
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img{
	width: 100%;
}

.overflow1{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;width: 100%;display: block;}
.overflow2{display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
.overflow3{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}

header{position: relative;width: 100%;}

.topbox{width: 100%;margin: 0 auto;position: relative;}
.topbox .line{background-color: #f5f3f2;display: flex;height: 6px;justify-content: flex-start;position: absolute;width: 100%;}
.topbox .tr_list{display: flex;justify-content: flex-end;position: relative;}
.topbox .tr_list svg{background-position: bottom;background-size: cover;height: 20px;left: -16px;position: absolute;top: 5px;transform: rotate(270deg);width: 20px;}
.t_menu{background-color: #f5f3f2;border-bottom-left-radius: 12px;padding: 0 12px;display: flex;justify-content: flex-end;}
.t_menu a{color: #847770;padding: 8px;}



/* 导航 */
.headerbox{width: 100%;margin:  0 auto;position: relative;}
.headerbox .header{display: flex;align-items: center;justify-content: space-between;}
.headerbox .header .menu ul{display: flex;flex-wrap: wrap;}
.headerbox .header .menu ul li{
	position: relative;
}
.headerbox .header .menu ul li a{
	font-size: 20px;
	font-weight: 400;
    line-height: 1;
    padding: 8px 16px;
    color: #0078be;
    position: relative;
    text-decoration: none;
}
.headerbox .header .menu>ul>li>a:after{position: absolute;left: 50%;bottom: 0;transition: all 0.5s;margin: 0 auto;height: 1px;width: 0px;background-color: #0078be;content: "";transform: translateX(-50%);}
.headerbox .header .menu>ul>li:hover>a:after{width: 30px;}
.headerbox .header .menu ul li .sub_menu{
	min-width: 200%;
    position: absolute;
    top: 140%;
    left: -50%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu ul li:hover > dl {
    opacity: 1;
    visibility: visible;
    top: 150%;
	
}

.headerbox .header .menu ul li dd {
    position: relative;
    display: block;
	text-align: center;
	transition: all 400ms ease;
}
.headerbox .header .menu dl dd>.three_menu{
	min-width: 100%;
    position: absolute;
    left: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    background: white;
    transition: all 400ms ease;
}
.headerbox .header .menu dl dd:hover>.three_menu {
    opacity: 1;
    visibility: visible;
    top: 0px;
	
}
.headerbox .header .menu ul li dl dd a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #333;
    text-align: left;
    display: block;
    padding: 15px 25px 15px 25px;
    position: relative;
    text-decoration: none;
    outline: none;
	text-align: center;
    text-transform: none;
    transition: all 400ms ease;
    border-bottom: 1px solid #f4f4f4;
}
.headerbox .header .menu ul li dl dd:hover{
    background-color: var(--primary-color);
}
.headerbox .header .menu ul li dl dd:hover>a{color: #fff;}

.h_right{display: flex;align-items: center;}
.s_btn{padding: 10px;cursor: pointer;display: flex;align-items: center;position: relative;}
.r_btn{padding: 10px;cursor: pointer;display: flex;align-items: center;position: relative;}
.l_btn{cursor: pointer;display: flex;align-items: center;position: relative;padding: 10px;}
.s_btn img,.r_btn img,.l_btn img{margin-right: 10px;}
.s_btn:after,.r_btn:after,.l_btn:after{position: absolute;left: 50%;bottom: 0;transition: all 0.5s;margin: 0 auto;height: 1px;width: 0px;background-color: #11387f;content: "";transform: translateX(-50%);}
.s_btn,.r_btn,.l_btn{font-size: 20px;color: #0078be;font-weight: 400;}
.s_btn:hover:after,.s_btn.curr:after,.r_btn:hover:after,.r_btn.curr:after,.l_btn:hover:after,.l_btn.curr:after{width: 30px;}


.searchbox{
    height: calc(100% - 100px);
    position: fixed;
    transform: translateY(-110%);
    transition-duration: 275ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: 100%;
    z-index: 10;
}
.searchbox.show{transform: translateY(0);background-color: rgb(0, 0, 0,0.6);}

.search{background-color: #fff;}
.search .inner{width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 10px 0;}
.search input{border: 1px solid #a79c95;padding: 10px 35px 10px 10px;border-radius: 3px;font-size: 16px;color: #847770;width: 70%;}
.search .s_close{background: none;color: #847770;font-size: 30px;cursor: pointer;display: inline-block;}


.registbox{
    height: calc(100% - 100px);
    position: fixed;
    transform: translateY(-110%);
    transition-duration: 275ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: 100%;
    z-index: 10;
}
.registbox.show{transform: translateY(0);background-color: rgb(0, 0, 0,0.6);}
.regist{background-color: transparent;}
.regist .inner{width: 100%;display: flex;align-items: center;justify-content: flex-end;}
.regist .i_inner{width: 327px;padding: 10px;background-color: #fff;}
.regist .i_inner .r_close{background: none;color: #847770;font-size: 30px;cursor: pointer;display: block;text-align: right;margin-bottom: 10px;}
.regist .i_inner ul li{padding: 11px 14px;background-color: #11387f;margin-bottom: 10px;}
.regist .i_inner ul li:hover{background-color: #0d2c65;}
.regist .i_inner ul li a{font-size: 16px;color: #fff;display: flex;align-items: center;justify-content: space-between;}


.languagebox{
    height: calc(100% - 100px);
    position: fixed;
    transform: translateY(-110%);
    transition-duration: 275ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    width: 100%;
    z-index: 10;
}
.languagebox.show{transform: translateY(0);background-color: rgb(0, 0, 0,0.6);}

.language{background-color: #fff;}
.language .inner{width: 100%;padding: 10px 0;}
.language .inner .l_tit{display: flex;align-items: center;justify-content: space-between;align-items: flex-start;}
.language .inner .l_tit .l_tit_left{width: 70%;}
.language .inner .l_tit .l_tit_left h3{font-size: 24px;color: #11387f;}
.language .inner .l_tit .l_tit_left p{font-size: 16px;color: #3c3c3c;line-height: 30px;margin-top: 12px;}
.language .inner .l_tit .l_close{font-size: 18px;color: #11387f;cursor: pointer;}

.l_content {width: 100%;padding: 20px 0;border-bottom: 1px solid #d7d2cb;}
.l_content ul{display: flex;flex-wrap: wrap;}
.l_content ul li{width: 25%;margin-bottom: 10px;}
.l_content ul li a{font-size: 16px;color: #3c3c3c;}
.l_bot{padding: 20px 0;width: 100%;font-size: 16px;color: #3c3c3c;}
.l_bot a{color: #11387f;}
.l_bot a:hover{text-decoration: underline;}




/*mMenu*/
.m_header{width: 100%;}
.sp_header{height:70px;overflow:hidden;background:var(--main-white);position:fixed;z-index:999;width:100%;display: none;top: 0;align-items: center;justify-content: space-between;}
.sp_logo{height:70px;display: flex;justify-content: center;align-items: center;padding-left: 10px;}
.sp_logo img{margin:auto;max-height:50px;}
.sp_nav{width:50px;position:relative;cursor:pointer;height:30px;}
/* 横杠 */
.sp_nav 
span{display:block;background:#000000;width:30px;height:3px;position:absolute;left:10px;transition:all ease 0.35s}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:10px}
.sp_nav span:nth-of-type(3){top:20px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav{position:fixed;z-index:9999;background:var(--main-white);width:100%;height:calc(100% - 70px);font-size:14px;line-height:40px;top:70px;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.35s;display: none;transition:all ease 0.35s}
.nav_show{display: block;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-bottom: 1px dashed #ddd;;position:relative;line-height:45px;font-size:16px}
.sjj_nav>ul >li:last-child{border-bottom: 1px dashed #ddd;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:var(--font-color);width:100%;padding: 0 20px;display: block;box-sizing: border-box;}
.sjj_nav ul li a:hover{color: #000000;}
.sjj_nav ul li ul li a{color:var(--font-color);display:block;text-align:left;}
.sjj_nav ul li i svg{width:25px;height:25px;fill:#333;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#333;}
.sjj_nav ul li ul li>ul{margin-left:10px}
.sjj_nav ul li ul li{border-top: none;}
.sjj_nav ul li ul li a{padding: 0 30px;}



/*  */
.videobox{width: 100%;margin: 0 auto;position: relative;}
.video{width: 100%;margin: 0 auto;position: relative;height: 100vh;}
.video video{width: 100%;height: 100%;object-fit: cover;}
.videobox .text{padding: 0 15px;}
.videobox .text h1{font-size: 45px;color: #000;font-weight: bold;margin-bottom: 14px;}
.v_btn{position: absolute;bottom: 20px;right: 24px;width: 58px;height: 58px;border-radius: 50%;background-color: #ffffff80;cursor: pointer;z-index: 2;}
.v_btn .svg{display: inline-block;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);font-size: 30px;color: #101010;}
.v_btn .svg2{display: none;}
.v_btn.on .svg2{display: inline-block;}
.v_btn.on .svg1{display: none;}

.pd100{padding: 50px 0;}


/* footer */
footer{width: 100%;margin: 0 auto;background-color: #0b1128;color: #fff;font-size: 14px;}
footer a{color: #fff;}
.footer{padding: 120px 0 36px;width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;position: relative;}
.footer .linebox{position: absolute;left: 0;top: 0;width: 100%;height: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.footer .linebox .line{width: 33.33%;border-left: 1px solid rgba(255, 255, 255, .12);height: 100%;}
.f_content{width: 33.33%;padding-right: 30px;position: relative;z-index: 2;}
.f_menu{width: 33.33%;padding-right: 30px;position: relative;z-index: 2;}
.f_share{width: 33.33%;padding-right: 30px;position: relative;z-index: 2;}

.f_logo{width: 100%;margin-bottom: 35px;font-size: 0;}
.f_logo img{max-width: 100%;width: auto;}
.f_desc{width: 100%;}
.f_desc h3{font-size: 18px;color: #fff;font-weight: bold;margin-bottom: 20px;}
.f_desc p{font-size: 16px;color: rgba(255, 255, 255, .9);}
.f_contact{width: 100%;margin-top: 35px;font-size: 16px;color: rgba(255, 255, 255, .9);}

.f_menu h3,.f_share h3{font-size: 12px;color: #fff;letter-spacing: 4px;margin-bottom: 20px;    margin-left: 22px;}

.f_menu ul li{display: grid;border-top: 1px solid rgba(255, 255, 255, .15);padding: 24px;font-size: 16px;color: #fff;align-content: start;grid-auto-flow: column;grid-auto-columns: 1fr;grid-column-gap: 18px;grid-row-gap: 16px;grid-template-columns: auto 1fr;transition: padding .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);letter-spacing: -.03em;}
.f_menu ul li:hover a{transform: translate3d(12px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);}
.f_menu ul li i{opacity: 0;transform: translate3d(-18px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);}
.f_menu ul li:hover i{opacity: 1;transform: translate3d(20px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);}

.f_share ul li{display: grid;border-top: 1px solid rgba(255, 255, 255, .15);padding: 24px;font-size: 16px;color: #fff;}
.f_share ul li a{display: flex;align-items: center;}
.f_share ul li img{max-width: 100%;width: 30px;margin-right: 20px;}
.f_share ul li i{opacity: 0;transform: translateX(-18px);transition: all 0.5s;}
.f_share ul li:hover i{opacity: 1;transform: translateX(20px);}


.f_bot{width: 100%;margin: 0 auto;text-align: center;border-top: 1px solid rgba(255,255,255,.3);padding: 10px 0;}




/* 通用内页 */
.inbannerbox{position: relative;width: 100%;margin: 0 auto;background-repeat: no-repeat;background-size: cover;padding: 220px 0px 80px;}
.inbannerbox .text{text-align: center;}
.inbannerbox .text h1{font-size: 38px;color: #fff;margin-bottom: 15px;font-weight: bold;}
.inbannerbox .text .s_menu{text-align: center;font-size: 16px;color: #fff;}
.inbannerbox .text .s_menu a{font-size: 16px;color: #fff;}
.inbannerbox .text .s_menu span{padding: 0 10px;}
.insidebox{width: 100%;margin: 0 auto;}
.insidebox .inside{width: 100%;box-sizing: border-box;}


.main_title{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;margin-bottom: 10px;}
.main_title .tit{}
.main_title .tit h3{font-size: 12px;color: #090b19;letter-spacing: 4px;text-transform: uppercase;white-space: pre-wrap;margin-bottom: 18px;}
.main_title .tit h1{font-size: 48px;font-weight: bold;color: #333;}
.main_title .more{display: inline-block;padding: 16px 28px;border-radius: 100px;background-color: #0078bf;font-size: 11px;color: #fff;letter-spacing: 3px;transition: all 0.5s;}
.main_title .more:hover{background-color: #e2e7f1;color: #090b19;}



/* ================首页样式========================= */
.index1box{width: 100%;margin: 0 auto;}
.index1{width: 100%;margin: 0 auto;}
.i1_content{width: 100%;margin: 0 auto;}
.i1_content ul{display: flex;flex-wrap: wrap;}
.i1_content ul li{width: 50%;border: 1px solid #f3f6fc;padding: 36px;position: relative;overflow: hidden;min-height: 700px;}
.i1_content ul li .card-circle{position: absolute;left: auto;top: -6vw;right: -6vw;bottom: auto; width: 6vw;height: 6vw;max-height: 800px;max-width: 800px;border-radius: 100%;background-color: rgba(243, 246, 252, .66);transition: all 2s ease;}
.i1_content ul li:hover .card-circle{transform: translate3d(6vw, -6vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);transform-style: preserve-3d;width: 56vw !important;height: 56vw !important;}
.i1_content ul li a{width: 100%;position: relative;z-index: 2;display: flex;flex-direction: column;justify-content: space-between;height: 100%;}
.i1_content ul li a .imgbox{width: 100%;font-size: 0;margin-bottom: 20px;}
.i1_content ul li a .imgbox img{width: 100%;transition: all 0.5s;}
.i1_content ul li a .textbox{width: 100%;transform: translate3d(0px, 60px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);transition: all 1.5s;margin-bottom: 20px;}
.i1_content ul li:hover a .textbox{transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);}
.i1_content ul li a .textbox h3{font-size: 24px;color: #333;font-weight: bold;}
.i1_content ul li a .textbox p{font-size: 16px;color: #6e7488;line-height: 25px;}
.i1_content ul li a .i1_btn{opacity: 0;transition: all 1.5s ease;}
.i1_content ul li:hover a .i1_btn{opacity: 1;}
.button-text{display: inline-block;padding: 9px 18px;letter-spacing: 3px;border: 1px solid #e2e7f1;font-size: 9px;color: #090b19;background-color: rgba(9, 11, 25, 0);border-radius: 50px;}
.i1_content ul li:last-child{width: 50%;}
.i1_content ul li:nth-last-child(2){width: 50%;}


.index2box{width: 100%;margin: 0 auto;}
.index2{width: 100%;margin: 0 auto;}
.i2_content{width: 100%;margin: 0 auto;border: 1px solid #f3f6fc;}
.i2_content ul{display: flex;flex-wrap: wrap;}
.i2_content ul li{width: 33.33%;padding: 48px;position: relative;min-height: 450px;overflow: hidden;}
.i2_content ul li .card-circle{position: absolute;left: auto;top: -6vw;right: -6vw;bottom: auto; width: 6vw;height: 6vw;max-height: 800px;max-width: 800px;border-radius: 100%;background-color: rgba(243, 246, 252, .66);transition: all 2s ease;}
.i2_content ul li:hover .card-circle{transform: translate3d(6vw, -6vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);transform-style: preserve-3d;width: 56vw !important;height: 56vw !important;}
.i2_content ul li .inner{width: 100%;display: flex;flex-direction: column;justify-content: space-between;height: 100%;position: relative;z-index: 2;}
.i2_content ul li .inner .icon{width: 60px;height: 60px;display: flex;align-items: center;justify-content: center;border-radius: 50%;background-color: rgba(243, 246, 252, .66);transition: all 2s ease;}
.i2_content ul li:hover .inner .icon{background-color: #fff;}
.i2_content ul li .textbox{width: 100%;transform: translate3d(0px, 60px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);transition: all 2s;margin-top: 20px;}
.i2_content ul li:hover .textbox{transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);}
.i2_content ul li .textbox h3{font-size: 24px;color: #333;font-weight: bold;margin-bottom: 15px;}
.i2_content ul li .textbox p{font-size: 16px;color: #6e7488;line-height: 25px;}
.i2_content ul li .inner .i1_btn{opacity: 0;transition: all 1.5s ease;}
.i2_content ul li:hover .inner .i1_btn{opacity: 1;}


.index3box{width: 100%;margin: 0 auto;}
.index3{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;min-height: 700px;}
.i3_left{width: 30%;padding: 80px 48px;background-color: #f3f6fc;}
.i3_right{width: 70%;position: relative;padding: 80px 0;}
.i3_left h3{font-weight: 12px;color: #090b19;margin-bottom: 20px;}
.i3_left h1{font-size: 32px;color: #333;font-weight: bold;}
.i3_right .linebox{position: absolute;left: 0;top: 0;width: 100%;height: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;background-repeat: no-repeat;background-size: cover;background-position: center;}
.i3_right .linebox .line{width: 50%;border-left: 1px solid rgba(255, 255, 255, .12);height: 100%;}
.i3_right ul{position: relative;z-index: 2;display: flex;flex-wrap: wrap;justify-content: space-between;}
.i3_right ul li{width: 48%;padding: 0 24px;margin-bottom: 15px;}
.i3_right ul li p{font-size: 12px;color: #fff;line-height: 20px;letter-spacing: 4px;}
.i3_right ul li p span{color: red;}
.i3_right ul li input{border: 1px solid rgba(255,255,255,.16);padding: 18px 13px;background-color: hsla(0,0%,100%,.08);width: 100%;font-size: 14px;color: #fff;}
.i3_right ul li input::placeholder{color: #fff;}
.i3_right ul li textarea{border: 1px solid rgba(255,255,255,.16);padding: 18px 13px;background-color: hsla(0,0%,100%,.08);width: 100%;font-size: 14px;color: #fff;}
.i3_right ul li textarea::placeholder{color: #fff;}
.i3_right ul li input.i3_btn{display: inline-block;width: 160px;height: 50px;border-radius: 40px;color: #090b19;font-size: 12px;letter-spacing: 3px;background-color: #fff;line-height: 50px;padding: 0;}


.index4box{width: 100%;margin: 0 auto;}
.index4{width: 100%;margin: 0 auto;}
.i4_content{width: 100%;margin: 0 auto;}
.i4_content ul{display: flex;flex-wrap: wrap;}
.i4_content ul li{width: 33.33%;border: 1px solid #f3f6fc;overflow: hidden;position: relative;}
.i4_content ul li .card-circle{position: absolute;left: auto;top: -6vw;right: -6vw;bottom: auto; width: 6vw;height: 6vw;max-height: 800px;max-width: 800px;border-radius: 100%;background-color: rgba(243, 246, 252, .66);transition: all 2s ease;}
.i4_content ul li:hover .card-circle{transform: translate3d(6vw, -6vw, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);transform-style: preserve-3d;width: 56vw !important;height: 56vw !important;}
.i4_content ul li .inner{width: 100%;position: relative;z-index: 2;display: block;}
.i4_content ul li .inner .imgbox{width: 100%;font-size: 0;position: relative;}
.con{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);width: 100px;height: 100px;border: 1px solid #fff;border-radius: 50%;line-height: 100px;text-align: center;font-size: 12px;color: #fff;transition: all 1.5s;}
.i4_content ul li:hover .inner .imgbox .con{transform: translate(-50%,-50%) scale(0.8);}
.i4_content ul li .inner .imgbox .con:hover{background-color: #fff;color: #090b19;}
.i4_content ul li .inner .imgbox img{width: 100%;height: 300px;object-fit: cover;}
.i4_content ul li .textbox{padding: 36px 36px 24px;display: flex;flex-direction: column;justify-content: space-between;}
.i4_content ul li .textbox .l_top{width: 100%;}
.i4_content ul li .textbox .l_top h3{font-size: 18px;color: #090b19;line-height: 24px;font-weight: bold;margin-bottom: 20px;}
.i4_content ul li .textbox .l_top p{font-size: 16px;color: #6e7488;line-height: 25px;}
.i4_content ul li .textbox .l_bot{display: flex;align-items: center;justify-content: space-between;}
.i4_content ul li .textbox .l_bot .tip{font-size: 12px;color: #6e7488;letter-spacing: 4px;}
.i4_content ul li .textbox .l_bot .date{font-size: 12px;color: #6e7488;letter-spacing: 4px;}




/*  */
.about1box{width: 100%;margin: 0 auto;}
.about1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.a1_left{width: 48%;}
.a1_right{width: 48%;font-size: 0;text-align: right;}
.about1box h1{font-size: 65px;color: #242424;font-weight: bold;display: inline-block;position: relative;margin-bottom: 25px;line-height: 1;}
.about1box h1:after{margin-left: 10px;width: 40px;height: 2px;bottom: 8px;/*background-color: #0078bf;*/display: inline-block;content: "";position: absolute;left: 100%;top: 50%;transform: translateY(-50%);}
.a1_left p{font-size: 16px;color: #333;margin-bottom: 30px;line-height: 25px;}
.a1_right .a1_btn{display: inline-block;padding: 13px 38px;border-radius: 50px;background-color: #0078bf;font-size: 16px;color: #f5f5f5;font-weight: 500;margin-top:20px;}
.a1_right img{width: 100%;}


.about2box{width: 100%;margin: 0 auto;}
.about2{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;align-items: center;}
.a2_left{width: 41.66666667%;font-size: 0;}
.a2_right{width: 58.33333333%;}
.a2_left img{width: 100%;}
.a2_right .inner{background-color: #fafafc;padding: 65px 45px 50px 70px;margin-left: -70px;}
.a2_right .inner h1{font-size: 28px;color: #242424;font-weight: bold;margin-bottom: 20px;}
.a2_right .inner h3{font-style: italic;font-size: 14px;margin-bottom: 15px;color: #242424;}
.a2_right .inner p{font-size: 16px;color: #a09b9b;line-height: 32px;margin-bottom: 20px;}


.about3box{width: 100%;margin: 0 auto;padding: 95px 0px 50px;background-color: #f0f0f0;}
.about3{width: 100%;margin: 0 auto;}
.about3 h1{font-size: 24px;color: #242424;margin-bottom: 40px;font-weight: bold;}
.about3 h1 span{color: #0078bf;text-decoration: underline;font-style: italic;}
.a3_content{width: 100%;margin: 0 auto;}
.a3_content ul{display: flex;flex-wrap: wrap;}
.a3_content ul li{width: 32%;margin-right: 2%;}
.a3_content ul li:nth-child(3n){margin-right: 0;}
.a3_content ul li a{display: block;width: 100%;}
.a3_content ul li a .imgbox{width: 100%;font-size: 0;}
.a3_content ul li a .imgbox img{width: 100%;}
.a3_content ul li a .textbox{width: 100%;margin-top: 20px;}
.a3_content ul li a .textbox h3{font-size: 20px;color: #242424;margin-bottom: 8px;}
.a3_content ul li a .textbox h3:hover{color: #c92b26;}
.a3_content ul li a .textbox p{font-size: 15px;color: #898989;line-height: 27px;font-weight: 400;}



.about4box{width: 100%;margin: 0 auto;padding: 40px 0px 20px;background-color: #444;}
.about4{width: 100%;margin: 0 auto;}
.about4 ul{display: flex;flex-wrap: wrap;}
.about4 ul li{width: 32%;margin-right: 2%;display: flex;align-items: center;margin-bottom: 20px;}
.about4 ul li:nth-child(3n){margin-right: 0;}
.about4 ul li .icon{width: 70px;margin-right: 10px;}
.about4 ul li .icon img{width: 100%;}
.about4 ul li .textbox{flex: 1;}
.about4 ul li .textbox h3{font-size: 20px;color: #fff;font-weight: 600;margin-bottom: 8px;}
.about4 ul li .textbox p{font-size: 15px;color: #fff;}

.about5box{width: 100%;margin: 0 auto;}
.about5{width: 100%;margin: 0 auto;}
.a5_top{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;margin-bottom: 40px;}
.a5t_left{width: 48%;}
.a5t_right{width: 48%;font-size: 0;}
.a5t_left h1{font-size: 28px;color: #242424;font-weight: bold;display: inline-block;position: relative;margin-bottom: 25px;}
.a5t_left h1:after{margin-left: 10px;width: 40px;height: 2px;bottom: 8px;background-color: #c92b26;display: inline-block;content: "";position: absolute;left: 100%;top: 50%;transform: translateY(-50%);}
.a5t_left h3{font-size: 20px;color: #242424;margin-bottom: 15px;}
.a5t_left .desc{width: 100%;}
.a5t_left .desc p{font-size: 16px;color: #797979;line-height: 28px;margin-bottom: 25px;}

.a5_bot{width: 100%;margin: 0 auto;}
.a5_bot ul li{width: 100%;display: flex;}
.a5_bot ul li .year{width: 110px;height: 110px;color: #fff;line-height: 110px;text-align: center;border-radius: 50%;font-size: 24px;font-weight: 700;margin-bottom: 30px;display: inline-block;background-color: #006bae;margin-right: 60px;position: relative;}
.a5_bot ul li .year:after{position: absolute;content: '';left: 50%;top: 100%;width: 1px;height: 120%;background-color: #d2d2d2;}
.a5_bot ul li:last-child .year:after{display: none;}
.a5_bot ul li .textbox{flex: 1;}
.a5_bot ul li .textbox h3{font-size: 24px;color: #242424;margin-bottom: 15px;font-weight: 600;}
.a5_bot ul li .textbox p{font-size: 16px;color: #797979;line-height: 28px;}

.img3{width: 100%;display: flex;justify-content: space-between;margin-top: 20px;flex-wrap: wrap;}
.img3 img{width: 32%;}



/*  */
.su1box{width: 100%;margin: 0 auto;}
.su1{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
.su1 h1{font-size: 80px;color: #101010;font-weight: bold;width: 40%;}
.su1 p{font-size: 16px;color: #101010;display: block;width: 30%;}

.su2box{width: 100%;margin: 0 auto;padding: 64px 0;}
.su2{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s2_left{width: 48%;font-size: 0;}
.s2_right{width: 48%;}
.s2_left img{width: 100%;}
.s2_right h1{font-size: 56px;color: #fff;font-weight: bold;margin-bottom: 30px;}
.s2_right .desc{width: 100%;}
.s2_right .desc p{font-size: 24px;color: #fff;margin-bottom: 28px;}


.su3box{width: 100%;margin: 0 auto;}
.su3{width: 100%;margin: 0 auto;}
.su3 h1{font-size: 32px;color: #101010;margin-bottom: 64px;}
.s3_content{width: 100%;margin: 0 auto;}
.s3_content ul{display: flex;flex-wrap: wrap;}
.s3_content ul li{min-height: 380px;padding: 32px;background-color: #f8f8f8;width: 32%;margin-bottom: 20px;margin-right: 2%;display: flex;flex-direction: column;justify-content: space-between;}
.s3_content ul li:nth-child(3n){margin-right: 0;}
.s3_content ul li .l_top{width: 100%;}
.s3_content ul li .l_top h3{font-size: 24px;color: #101010;margin-bottom: 15px;}
.s3_content ul li .l_top p{font-size: 16px;color: #101010;line-height: 28px;}
.s3_content ul li .more{display: inline-block;}
.s3_content ul li .more span{font-size: 14px;color: #101010;text-decoration: underline;margin-right: 15px;}
.s3_content ul li .more i{font-size: 24px;color: #a08c64;transition: all 0.3s;}
.s3_content ul li .more:hover i{transform: translateX(10px);}


.su4box{width: 100%;margin: 0 auto;padding: 64px 0;background-color: #000000;}
.su4{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s4_left{width: 48%;font-size: 0;}
.s4_right{width: 48%;display: flex;flex-direction: column;justify-content: space-between;}
.s4_left img{width: 100%;}
.s4_right .s4_top{width: 100%;}
.s4_right .s4_top h1{font-size: 56px;color: #fff;font-weight: 600;margin-bottom: 30px;}
.s4_right .s4_top p{font-size: 24px;color: #fff;margin-bottom: 28px;}
.s4_right .s4_top ul li{list-style-type: disc;margin-left: 20px;font-size: 24px;color: #fff;margin-bottom: 28px;}
.s4_right .more{display: inline-block;}
.s4_right .more span{font-size: 14px;color: #fff;text-decoration: underline;margin-right: 15px;}
.s4_right .more i{font-size: 24px;color: #a08c64;transition: all 0.3s;}
.s4_right .more:hover i{transform: translateX(10px);}



.su5box{width: 100%;margin: 0 auto;}
.su5{width: 100%;margin: 0 auto;}
.su5_top{width: 100%;margin-bottom: 128px;}
.su5_top ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.su5_top ul li{width: 48%;padding: 32px;color: #101010;}
.su5_top ul li:first-child{color: #fff;}
.su5_top ul li:first-child a{color: #fff;}
.su5_top ul li h1{font-size: 40px;margin-bottom: 32px;}
.su5_top ul li a{font-size: 16px;text-decoration: underline;color: #101010;}

.su5_bot{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s5_left{width: 30%;}
.s5_right{width: 70%;font-size: 0;display: flex;align-items: center;justify-content: center;}
.s5_left h1{font-size: 56px;color: #101010;margin-bottom: 50px;font-weight: 600;}
.s5_left p{font-size: 16px;color: #101010;margin-bottom: 24px;}
.s5_left a{font-size: 16px;color: #101010;text-decoration: underline;}
.s5_right img{max-width: 100%;width: auto;}


.su6box{width: 100%;margin: 0 auto;padding: 64px 0;background-color: #000;}
.su6{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s6_left{width: 40%;}
.s6_right{width: 40%;}

.s6_left h3{font-size: 24px;color: #fff;margin-bottom: 16px;}
.s6_left p{font-size: 16px;color: #fff;}
.s6_right ul li{width: 100%;margin-bottom: 20px;background-color: #282828;padding: 12px 16px;}
.s6_right ul li a{display: flex;align-items: center;justify-content: space-between;}
.s6_right ul li a span{font-size: 16px;color: #fff;}
.s6_right ul li a i{font-size: 16px;color: #fff;}
.s6_right ul li:hover{background-color: #404040;}


.su7box{width: 100%;margin: 0 auto;}
.su7{width: 100%;margin: 0 auto;}
.su7 h1{font-size: 32px;color: #101010;margin-bottom: 64px;}
.s7_content{width: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.s7_left{width: 30%;font-size: 0;}
.s7_left img{width: 100%;}
.s7_right{width: 65%;}
.s7_right h3{font-size: 24px;color: #101010;margin-bottom: 16px;}
.s7_right .desc{width: 100%;}
.s7_right .desc p{font-size: 16px;color: #101010;}
.s7_right .desc p a{color: #101010;}
.s7_right .desc p a:hover{color: #575757;}

.su3box2{padding: 128px 0;background-color: #f8f8f8;}
.su3box2 .s3_content ul li{background-color: #fff;}

.su8box{width: 100%;margin: 0 auto;padding: 64px 0;}
.su8{width: 100%;margin: 0 auto;}
.su8 p{font-size: 16px;color: #434343;margin-bottom: 32px;}
.s8_content{width: 100%;}
.s8_content ul{display: flex;flex-wrap: wrap;}
.s8_content ul li{width: 32%;margin-bottom: 20px;margin-right: 2%;padding: 16px 0;border-bottom: 1px solid #e6e6e6;}
.s8_content ul li:nth-child(3n){margin-right: 0;}
.s8_content ul li a{font-size: 24px;color: #101010;}
.s8_content ul li:hover{border-color: #101010;}



/*  */
.solution1box{width: 100%;margin: 0 auto;}
.solution1{width: 100%;margin: 0 auto;}
.s_title{width: 100%;text-align: center;}
.s_title h1{font-size: 30px;color: #242424;font-weight: bold;margin-bottom: 15px;padding-bottom: 18px;position: relative;display: inline-block;}
.s_title h1:after{width: 30px;height: 1px;background-color: #c92b26;position: absolute;left: 50%;transform: translateX(-50%);bottom: 0;content: "";}
.solution1 .imgbox{width: 100%;font-size: 0;}
.solution1 .imgbox img{width: 100%;}
.solution1 .p{font-size: 16px;color: #797979;margin-bottom: 22px;}
.s1_list{width: 100%;margin: 0 auto;border: 1px solid #e5e5e5;}
.s1_list ul{display: flex;flex-wrap: wrap;}
.s1_list ul li{background-color: #fafafa;padding: 30px 19px 40px;border-right: 1px solid #e5e5e5;width: 33.33%;}
.s1_list ul li:nth-child(3n){border-right: 0;}
.s1_list ul li .icon{display: flex;align-items: center;justify-content: center;font-size: 0;margin-bottom: 20px;}
.s1_list ul li .icon img{max-width: 100%;width: auto;height: 85px;}
.s1_list ul li .textbox{width: 100%;text-align: center;}
.s1_list ul li .textbox h3{font-size: 18px;color: #242424;margin-bottom: 8px;}
.s1_list ul li .textbox p{font-size: 15px;color: #797979;line-height: 27px;}


.solution2box{width: 100%;margin: 0 auto;padding: 50px 0;}
.solution2{width: 100%;margin: 0 auto;}
.s2_title{width: 100%;margin: 0 auto;}
.s2_title h3{font-size: 24px;color: #242424;margin-bottom: 15px;}
.s2_title p{font-size: 16px;margin-bottom: 22px;color: #797979;line-height: 28px;}
.s2_list{width: 100%;}
.s2_list ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.s2_list ul li{width: 48%;margin-bottom: 15px;display: flex;}
.s2_list ul li img{max-width: 100%;width: auto;margin-right: 20px;}
.s2_list ul li span{font-size: 16px;color: #999;line-height: 28px;}


.solution3box{width: 100%;margin: 0 auto;margin-bottom: 50px;}
.solution3{width: 100%;margin: 0 auto;}
.solution3 h1{font-size: 28px;color: #242424;font-weight: bold;display: inline-block;position: relative;margin-bottom: 25px;}
.solution3 h1:after{margin-left: 10px;width: 40px;height: 2px;bottom: 8px;background-color: #c92b26;display: inline-block;content: "";position: absolute;left: 100%;top: 50%;transform: translateY(-50%);}
.solution3_content{width: 100%;margin: 0 auto;display: flex;align-items: center;justify-content: space-between;padding: 30px 35px 25px;background-color: #313131;}
.solution3_content .text{width: 70%;}
.solution3_content .text h3{font-size: 20px;color: rgba(255,255,255,0.70);margin-bottom: 6px;font-style: italic;}
.solution3_content .text h2{font-size: 26px;color: #fff;font-weight: bold;}
.solution3_content .text h2 span{color: #c92b26;font-style: italic;}

.s3_btn{}
.s3_btn a{display: inline-block;padding: 12px 33px;padding: #c92b26;border: 2px solid #c92b26;font-size: 24px;color: #fff;border-radius: 50px;background-color: #c92b26;}
.s3_btn a:hover{background-color: transparent;color: #c92b26;}

.s3_list{margin-bottom: 50px;}
.s3_list ul{display: flex;flex-wrap: wrap;}
.s3_list ul li{width: 25%;padding: 0 10px;margin-bottom: 20px;}
.s3_list ul li a{display: block;width: 100%;}
.s3_list ul li a .imgbox{width: 100%;font-size: 0;overflow: hidden;position: relative;}
.s3_list ul li a .imgbox img{width: 100%;transition: all 0.3s;}
.s3_list ul li a .imgbox:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.5);content: "";opacity: 1;transition: all 0.3s;visibility: hidden;}
.s3_list ul li:hover a .imgbox img{transform: scale(1.1);}
.s3_list ul li:hover a .imgbox:after{opacity: 1;visibility: visible;}
.s3_list ul li a p{font-size: 15px;color: #777;margin-top: 20px;font-weight: bold;}


/*  */
.case1box{width: 100%;margin: 0 auto;}
.case1{width: 100%;margin: 0 auto;}
.c1_top{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;padding: 40px 30px 30px 50px;background-color: #f5f5f5;margin-bottom: 40px;}
.c1t_left{width: 40%;}
.c1t_right{width: 45%;font-size: 0;}
.c1t_right img{width: 100%;}
.c1t_left h3{font-size: 24px;color: #242424;margin-bottom: 10px;font-weight: 600;}
.c1t_left ul li{display: flex;align-items: center;margin-bottom: 10px;font-size: 16px;
    line-height: 30px;}
.c1t_left ul li img{max-width: 100%;width: auto;margin-right: 20px;}
.c1t_left ul li span{font-size: 18px;color: #242424;font-style: italic;}

.c1_bot{width: 100%;display: flex;flex-direction: column;align-items: center;font-size: 0;}
.c1_bot img{max-width: 100%;width: auto;margin-bottom: 20px;}



/*  */
.newsbox{width: 100%;margin: 0 auto;}
.news{width: 100%;margin: 0 auto;}
.news ul{display: flex;flex-wrap: wrap;}
.news ul li{width: 25%;margin-bottom: 20px;padding: 0 10px;}
.news ul li a{display: block;width: 100%;}
.news ul li a .imgbox{width: 100%;position: relative;overflow: hidden;font-size: 0;}
.news ul li a .imgbox img{width: 100%;transition: all 0.5s;height: 250px;object-fit: cover;}
.news ul li a .imgbox:after{position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-color: rgb(0, 0, 0,0.5);content: "";opacity: 0;visibility: hidden;transition: all 0.5s;}
.news ul li:hover a .imgbox img{transform: scale(1.1) rotate(3deg);}
.news ul li:hover a .imgbox:after{opacity: 1;visibility: visible;}
.news ul li a .textbox{width: 100%;padding-top: 25px;}
.news ul li a .textbox .t_top{display: flex;align-items: center;justify-content: space-between;padding-bottom: 10px;border-bottom: 1px solid #e4e4e4;}
.news ul li a .textbox .t_top .date{font-size: 18px;color: #242424;font-weight: bold;margin-bottom: 10px;display: inline-block;}
.news ul li a .textbox .t_top .tip{font-size: 16px;color: #a1a1a1;display: inline-block;margin-bottom: 10px;}
.news ul li a .textbox h3{padding-top: 32px;font-size: 20px;color: #242424;font-weight: bold;margin-bottom: 18px;transition: all 0.3s;min-height: 170px;}
.news ul li:hover a .textbox h3{color: #0078be;}
.news ul li a .textbox .n_btn{display: inline-block;padding: 7px 32px 7px;background-color: #0078be;font-size: 15px;color: #fff;border-radius: 50px;border: 2px solid #0078be;transition: all 0.3s;}
.news ul li a .textbox .n_btn:hover{background-color: transparent;color: #0078be;}



/*  */
.contactbox{width: 100%;margin: 0 auto;}
.contact{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.contact_left{width: 55%;}
.contact_right{width: 30%;}

.contact_left h1{font-size: 32px;color: #3c3c3c;margin-bottom: 40px;}
.contact_left ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.contact_left ul li{width: 48%;background-color: #f1efed;padding: 16px;min-height: 180px;display: flex;flex-direction: column;justify-content: space-between;align-items: flex-start;margin-bottom: 20px;border-radius: 3px;position: relative;}
.contact_left ul li .text{width: 100%;}
.contact_left ul li .text h3{font-size: 24px;color: #3d3935;margin: 10px 0;}
.contact_left ul li .text p{font-weight: 14px;color: #3c3c3c;line-height: 1.7;}
.contact_left ul li .c_btn{display: inline-block;padding: 11px 14px;background-color: #0078bf;font-size: 16px;color: #fff;border-radius: 5px;}
.contact_left ul li .c_btn:hover{background-color: #0078bf;}


.contact_right h3{font-size: 20px;color: #3c3c3c;line-height: 32px;}
.contact_right p{font-size: 16px;color: #3c3c3c;}
.contact_right .labels-font{font-size: 16px;color: #3c3c3c;margin: 20px 0;}
.contact_right .a{display: block;font-size: 16px;color: #11387f;line-height: 24px;margin-bottom: 20px;}
.contact_right .a1{margin-top: 20px;}
.c_btn2{display: none;position: absolute;right: 24px;top: 24px;color: #10387f;font-size: 24px;}
.c_btn2:hover{color: #007fc8;}



/*  */
.enquirybox{width: 100%;margin: 0 auto;padding: 50px 0;}
.enquiry{width: 100%;margin: 0 auto;}
.en_top{width: 100%;margin-bottom: 35px;}
.en_top a{font-size: 16px;color: #11387f;display: block;margin-bottom: 10px;}
.en_top a:hover{text-decoration: underline;}
.en_top h1{font-size: 32px;color: #3d3935;}

.en_content{width: 100%;margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.en_left{width: 48%;}
.en_right{width: 48%;}
.en_left p{font-size: 16px;color: #000;line-height: 1.7;}
.en_right .item{width: 100%;max-width: 80%;margin: 0 auto;margin-bottom: 50px;}
.en_right .item h3{font-size: 24px;color: #3d3935;margin-bottom: 24px;}
.en_right .item ul li{width: 100%;margin-bottom: 20px;}
.en_right .item ul li p{font-size: 14px;color: #3d3935;margin-bottom: 8px;}
.en_right .item ul li textarea{border: 1px solid #3d3935;width: 100%;border-radius: 3px;padding: 8px;font-size: 16px;}
.en_right .item ul li .e_text{border: 1px solid #3d3935;width: 100%;border-radius: 3px;padding: 8px;font-size: 16px;}
.en_right .item ul li select{border: 1px solid #3d3935;width: 100%;border-radius: 3px;padding: 8px;font-size: 16px;}
.en_right .item ul li label input{margin-right: 20px;}
.en_right .item ul li label{font-size: 12px;color: #3c3c3c;width: 70%;display: flex;}
.en_right .item ul li .e_btn{display: inline-block;background-color: #0078bf;padding: 16px 24px;font-size: 16px;color: #fff;border-radius: 3px;}

.file{position: relative;margin-right: 20px;}
.file .btn{align-items: center;background: #f5f3f2;border: 1px;border-radius: 2px;display: flex;justify-content: space-between;min-height: 56px;padding: 18px;width: 156px;}
.file .btn img{margin-left: 2px;margin-right: 18px;width: 25px;}
.file .btn span{font-size: 14px;color: #3c3c3c;white-space: nowrap;}
.file input{position: absolute;left: 0;top: 0;width: 100%;height: 100%;text-indent: -170px;cursor: pointer;}








/* @media only screen and (max-width: 1200px) {
	.about1box .wapper{padding-left: 30px;}
} */




@media only screen and (max-width: 980px) {
	header{display: none;}
	.sp_header{ display:flex;}
	.bannerbox{margin-top: 70px;}
	.inbannerbox{margin-top: 70px;}
	.inbannerbox .text h1{font-size: 25px;}
	.pd100{padding: 50px 0;}
	.linebox{display: none;}
	.f_content{width: 100%;margin-bottom: 20px;}
	.f_menu{width: 100%;margin-bottom: 20px;}
	.f_share{width: 100%;margin-bottom: 20px;}
	.f_menu ul li i {opacity: 1;transform: none;margin-left: 20px;}
	.f_share ul li i {opacity: 1;transform: none;margin-left: 20px;}
	.f_menu ul li:hover a {transform: none;}
	.f_menu ul li:hover i{transform: none;}
	.f_share ul li:hover i{transform: none;}
	.main_title .tit h1 {font-size: 30px;}
	.i1_content ul li {width: 100% !important;}
	.about1box h1 {font-size: 30px;}
	.i2_content ul li {width: 100%;}
	.i3_left {width: 100%;padding: 36px 24px;}
	.i3_right{width: 100%;}
	.i3_left h1 {font-size: 24px;}
	.i4_content ul li {width: 100%;}
	.main_title .tit {width: 100%;margin-bottom: 20px;}
	.i3_right ul li {width: 100%;}
	.a5_bot ul li{flex-wrap: wrap;margin-bottom: 20px;}
	.a5_bot ul li .year:after{display: none;}
	.a5_bot ul li .textbox{width: 100%;margin-top: 20px;flex: auto;}
	.img3 img{width: 100%;margin-bottom: 20px;}
	.a5t_left {width: 100%;margin-bottom: 20px;}
	.a5t_right{width: 100%;}
	.a5_bot ul li .textbox h3 {font-size: 20px;}
	.a5t_left h1 {font-size: 24px;}
	.about4 ul li {width: 100%;}
	.a3_content ul li {width: 100%;margin-right: 0 !important;}
	.a2_left {width: 100%;}
	.a2_right{width: 100%;margin-left: 0;}
	.a2_right .inner h1 {font-size: 24px;}
	.a1_left h1 {font-size: 24px;}
	.a1_left {width: 100%;margin-bottom: 20px;}
	.a1_right{width: 100%;}
	.s8_content ul li {margin-right: 0 !important;width: 100%;}
	.s7_left {width: 100%;margin-bottom: 20px;}
	.s7_right{width: 100%;}
	.s6_left {width: 100%;margin-bottom: 20px;}
	.s6_right{width: 100%;}
	.s5_left{width: 100%;margin-bottom: 20px;}
	.s5_left h1{font-size: 30px;}
	.s5_right{width: 100%;}
	.su5_top ul li {width: 100%;margin-bottom: 20px;}
	.su5_top ul li h1{font-size: 24px;}
	.s4_left{width: 100%;margin-bottom: 20px;}
	.s4_right{width: 100%;}
	.s4_right .s4_top h1 {font-size: 30px;}
	.s4_right .s4_top p {font-size: 20px;}
	.s4_right .s4_top ul li {font-size: 20px;margin-bottom: 16px;}
	.s2_left{width: 100%;margin-bottom: 20px;}
	.s2_right{width: 100%;}
	.s2_right h1{font-size: 30px;}
	.su1 h1 {width: 100%;margin-bottom: 20px;font-size: 30px;}
	.su1 p{width: 100%;font-size: 16px;}
	.s2_list ul li {width: 100%;}
	.solution3_content {flex-wrap: wrap;}
	.solution3_content .text {width: 100%;margin-bottom: 20px;}
	.s3_list ul li {width: 50%;}
	.c1t_left{width: 100%;margin-bottom: 20px;}
	.c1t_right{width: 100%;}
	.c1t_left h3 {font-size: 24px;}
	.solution3 h1 {font-size: 24px;}
	.news ul li{width: 50%;}
	.contact_left {width: 100%;margin-bottom: 20px;}
	.contact_left ul li {width: 100%;}
	.contact_right{width: 100%;}
	.contact_left ul li .c_btn{display: none;}
	.c_btn2{display: inline-block;}
	.en_left{width: 100%;margin-bottom: 20px;}
	.en_right{width: 100%;}
	.en_right .item {max-width: 100%;}
	.videobox .text h1{font-size: 30px;}
}


@media only screen and (max-width: 680px) {
	.s3_content ul li {width: 100%;margin-right: 0 !important;}
	.s3_content ul li {width: 100%;margin-right: 0 !important;}
	.s1_list ul li {width: 100%;}
	.solution3 h1:after {display: none;}
	.s3_list ul li {width: 100%;}
	.news ul li{width: 100%;}
}
