@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot') format('embedded-opentype'),
      url('../fonts/iconfont.woff2') format('woff2'),
      url('../fonts/iconfont.woff') format('woff'),
      url('../fonts/iconfont.ttf') format('truetype'),
      url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.align-c{
	text-align: center;
}
.aside-nav{
	display: none;
	position: relative;
	/*display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;*/
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	position: fixed;
    z-index: 2999;
    width: 79px;
    height: 100%;
    background: #FFF;
    border-right: 1px solid #e6e6e6;
    box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
    padding-top: 20px;
    transform: translateX(0px);
    transition:transform .3s ease-out;
}
.aside-nav.active{
	transform: translateX(0px);
}

.aside-nav > .aside-nav-mini{
	position: relative;
	display: none;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	position: absolute;
	top:50%;
	right:0;
	width:30px;
	height:30px;
	transform: translate3d(118%,-50%,0);
	padding:5px;
	border-radius: 100%;
	background-color: #026ed2;
	
}
.aside-nav > .aside-nav-mini > .iconfont{
	color:#ffffff;
	font-size:24px;
}
.aside-nav > .aside-nav-mini > .tip-first{
	display: none;
	position: absolute;
	top:50%;
	right:0;
	width:20px;
	font-size: 12px;
	color:#ffffff;
	background-color: red;
	padding:3px 0px;
	transform: translate3d(35px,-50%,0);
	box-sizing: border-box;
	text-align: center;
}
.aside-nav > .aside-nav-mini > .tip-first::before{
	position: absolute;content: "";    
    width: 0; 
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent  red transparent transparent ;
    top: 50%;
    left: 0;
    transform: translate3d(-99%,-50%,0);
}
.aside-nav.active > .aside-nav-mini{
	opacity: 0;
}
.aside-nav > .nav-list{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}
.aside-nav > .nav-more{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	width:100%;
	height:120px;
}
.aside-nav  a.nav-item{
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	font-size:12px;
	color:#88898c;
	padding:4px 0;
	margin:8px 0;
}

.aside-nav .nav-list  a.nav-item.nav-0{
	display: none;
}

.aside-nav.min .nav-list a.nav-item{
	display: none;
}
.aside-nav.min .nav-list  a.nav-item.nav-0,.aside-nav.min .nav-list  a.nav-item.nav-1{
	display: flex
}


.aside-nav  a.nav-item.active,.aside-nav  a.nav-item:hover{
	color:#3d8fdb;
}
.aside-nav > a > span.iconfont{
	font-size:14px;
}
.header-main{
	position: relative;
	width:100%;
	height:100%;
	background-color: #ccc;
}
.banner{
	position: relative;
	min-width: 1200px;
	height:100%;
}
.banner-mask{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:380px;
	background-image: url(../images/banner-mask.png);
	background-size:12px 100%;
	background-repeat: repeat-x;
	z-index:19;
}
.index-banner-swiper{
	height:100%;
}
.index-banner-swiper .swiper-slide > img{
	position:absolute;
	top:0;
	left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    z-index:9;
}
.index-banner-swiper .swiper-slide > a{
	position: absolute;
	top:0;
	left:0;
	display: block;
	width:100%;
	height: 100%;
	z-index:29;
}
.index-banner-swiper .swiper-slide > .info{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: flex-start;
	-moz-align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
	width:1200px;
	height:100%;
	margin:0 auto;
	z-index:9;
	opacity: 0;
	transform: translateX(100px);
	transition: all .5s ease .8s;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding-right: 30px;
}

.index-banner-swiper .swiper-slide > .info.info-place-0{
	align-items: flex-start;
	-moz-align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
}
.index-banner-swiper .swiper-slide > .info.info-place-1{
	align-items: flex-end;
	-moz-align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-align-items: flex-end;
}
.index-banner-swiper .swiper-slide > .info.info-place-2{
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}

.index-banner-swiper .swiper-slide.swiper-slide-active > .info{
	opacity: 1;
	transform: translateX(0px);
}
.index-banner-swiper .swiper-slide > .info > h5{
	font-size: 36px;
	line-height: 1;
	color:#ffffff;
	font-weight: 400;
}
.index-banner-swiper .swiper-slide > .info.info-color-2 > h5{
	color:#3a3a3a;
}
.index-banner-swiper .swiper-slide > .info > h6{
	color:#ffffff;
	font-size: 18px;
	max-width: 50%;
	line-height: 1.5;
	margin-top: 20px;
	font-weight: normal;
}
.index-banner-swiper .swiper-slide > .info.info-color-2 > h6{
	color:#3a3a3a;
}

.index-banner-swiper .swiper-slide > .info.info-place-0 > h6{
	text-align: left;
}
.index-banner-swiper .swiper-slide > .info.info-place-1 > h6{
	text-align: right;
}
.index-banner-swiper .swiper-slide > .info.info-place-2 > h6{
	text-align: center;
}

.index-banner-swiper .swiper-slide > .info > p{
	margin-top: 20px;
}
.btn-banner-go{
	position: relative;
	padding:5px 22px;
	color:#ffffff;
	font-size: 14px;
	line-height: 1;
	border:1px solid #ffffff;
	border-radius: 34px;
}
.btn-banner-go::after{
	content: '';
    position: absolute;
    top: 50%;
    pointer-events: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    right: 14px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    
}
.btn-banner-go:hover::after{
	right: 9px;
}


.index-banner-swiper .swiper-slide > .info.info-color-2 .btn-banner-go{
	color:#3a3a3a;
	border:1px solid #3a3a3a;
}
.index-banner-swiper .swiper-slide > .info.info-color-2 .btn-banner-go::after{
	border-top: 1px solid #3a3a3a;
    border-right: 1px solid #3a3a3a;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
	width:50px;
	height:100%;
	right:0px;
	left:inherit;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	margin:4px 0;
}



.header-main > .top{
	position: absolute;
	left:0;
	top:30px;
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	z-index:99;
}
.mob-top{
	display: none;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:48px;
	background-color: rgba(0,0,0,.5);
	z-index:599;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	padding:0 10px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	color:#ffffff;
}
.mob-top > .t1{
	width:20%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-start;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}
.mob-top > .t2{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}
.mob-top > .t3{
	width:20%;
}
.mob-top > .t3 a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	width:100%;
	height: 100%;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	color:#ffffff;
	font-size: 24px;
}

.banner-toolbar{
	position: fixed;
	bottom:50px;
	right:0;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	z-index:399;
}
.banner-toolbar > a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:35px;
	height:35px;
	color:#ffffff;
	background-color:#ffffff;
}
.banner-toolbar > a.sc{
	background-color: #026ed2;
}
.banner-toolbar > a.wx{
	background-color: #07be3b;
}
.banner-toolbar > a.bc{
	background-color: #000000;
}
.banner-toolbar > a.bc > .iconfont{
	font-size: 20px;
}


.line-wrapper{
	position: relative;
    width: 20px;
    height: 15px;
}
.line-wrapper  .line{
	position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    left: 0;
    top: 0;
    transition:all .3s ease-out;
}
.line-wrapper .line:nth-child(2){
	top: 7px;
    width: 15px;
}
.line-wrapper .line:nth-child(3) {
    top: 14px;
    width: 15px;
}
.logo{
	margin-left:125px;
}
.logo > img{
	width:176px;
}

.header-main > .top > .nav{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	padding-right:45px;
}
.header-main > .top > .nav > a{
	margin-left:20px;
	color:#ffffff;
	font-size:14px;
	padding-bottom:3px;
	border-bottom: 1px solid rgba(255,255,255,0);
	transition:all .3s;
}
.header-main > .top > .nav > a:hover,.header-main > .top > .nav > a.active{
	border-bottom: 1px solid rgba(255,255,255,1);
}
.header-main > .top > .nav > a.ot{
	border-bottom: none;
}
.header-main > .top > .nav > a.ot:hover{
	border-bottom: none;
}

.swiper-pagination-bullet{
	transition:height .3s ease-out;
}
.swiper-pagination-bullet-active{
	height:25px;
	border-radius: 4px;
}


.sub-nav-wrap{
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,63,97,.5);
	z-index:599;
}
.sub-nav-box{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0);
}
.sub-nav{
	position: fixed;
	top:0;
	left:0;
	width:180px;
	height:100%;
	background-color: #2f3d4a;
	transform:translateX(-120px);
	transition:transform .2s ease-out;
	overflow-y: auto;
    overflow-x: hidden;
}
.sub-nav.active{
	transform:translateX(80px);
}
.sub-nav > a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:100%;
	height:65px;
	color:#ffffff;
	font-size:13px;
	border-bottom: 2px solid #000000;
	background-color:rgba(0,0,0,0);
	transition: background-color .8s ease-out;
}
.sub-nav > a:hover{
	background-color:rgba(0,0,0,1);
}

.sub-nav > a.sub-nav-f{
	font-size: 14px;
	font-weight: 800;
	
	color:#00a6f3;
}
.sub-nav-f > .iconfont{
	margin-right: 10px;
	font-size: 18px;
	color:#00a6f3;
}

/********/
.block-slider-wrap{
	position: relative;
	width:100%;
}
.index-block-slider{
	position: relative;
	width:1200px;
	margin:118px auto 0  auto;
	transform: translateY(-106px);
	z-index:202;
}
.block-slider{
	position: relative;
	width:1200px;
	margin:0px auto 0  auto;
	z-index:202;
}
.block-slider > .heading{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
    justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.block-slider > .heading > .hdg{
	color: #414853;
	font-size: 30px;
	font-weight: 400;
    line-height: 1.3;
    text-align: left;
    letter-spacing: 2px;
}
.block-slider.home-news-slider{
	margin-top: 80px;
}
/*
.block-slider.home-news-slider > .heading > .hdg{
	color: #ffffff;
}
*/
.block-slider > .heading > .hdg > span{
	font-size: 16px;
	margin-left:21px;
	font-weight: normal;

}
.block-slider > .heading > .link > a{
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
    width:215px;
    min-height: 30px;
    background: #0793ff;
    color: #ffffff;
    padding: 5px 25px 5px 10px;
    font-size:14px;
}
/*
.block-slider > .heading > .link > a:hover{
	-webkit-animation: global_button-hover 1s forwards;
    animation: global_button-hover 1s forwards;
}*/

.block-slider > .heading > .link > a::after{
	content: '';
    position: absolute;
    top: 50%;
    pointer-events: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    right: 14px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
}

.block-slider > .heading > .link > a:hover::after{
	right: 9px;
}

.index-block-slider{
	margin-top: 80px;
}

/*
.home-news-slider .block-container{
	margin-top: 20px;
}
.home-news-slider .block-container > ul{
	width:100%;
	height: 200px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
}
.home-news-slider .block-container > ul > li{
	width: 300px;
	height:100%;
}

.home-news-slider .block-container > ul > li  a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	width:100%;
	height:100%;
    color: rgba(1,123,188,1);
    padding: 5%;
    background-image: url(../images/index-news-bg.jpg);
	background-size: 100% 100%;
    border-bottom: 8px solid rgba(1,123,188,1);
    box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
*/
/*
.home-news-slider .block-container > ul > li  a:hover{
	background: rgba(43,93,163,.9);
}
*/
/*
.home-news-slider .block-container > ul > li:nth-child(even)  a{
	background-image: url(../images/index-news-bg.jpg);
	background-size: 100% 100%;
	color: rgba(43,93,163,1);
	border-bottom: 8px solid rgba(43,93,163,1);
}
*/
/*
.home-news-slider .block-container > ul > li:nth-child(even)  a:hover{
	background: rgba(1,123,188,.9);
}*/
/*
.home-news-slider .block-container > ul > li  a .news-heading > time{
	display: block;
	width:100%;
	padding:4px 0;
	border-bottom: 1px solid rgba(1,123,188,1);
	font-weight: 800;
}
.home-news-slider .block-container > ul > li:nth-child(even)  a .news-heading > time{
	border-bottom: 1px solid rgba(43,93,163,1);
}
.home-news-slider .block-container > ul > li  a .news-heading > p{
	margin-top: 16px;
	color:#5e5c5c;
}

.home-news-slider .block-container > ul > li  a > p.more{
	transform: translateY(0);
	transition: all .3s ease-out;
	color: rgba(1,123,188,1);
}
.home-news-slider .block-container > ul > li:nth-child(even)  a > p.more{
	color: rgba(43,93,163,1);
}
.home-news-slider .block-container > ul > li  a:hover > p.more{
	transform: translateY(-10px);
}*/

.home-news-slider .block-container{
	margin-top: 20px;
}
.home-news-slider .block-container > ul{
	width:100%;
	height: 380px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.home-news-slider .block-container > ul > li{
	width: 390px;
	height:100%;
}

.home-news-slider .block-container > ul > li  a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	width:100%;
	height:100%;
    color: #000000;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #f3f3f3;

}
.home-news-slider .block-container > ul > li  a > img{
	width:390px;
	height:220px;
	object-fit: cover;
}
.home-news-slider .block-container > ul > li  a h5{
	padding:0 20px;
	font-size: 14px;
	font-weight: normal;
	color:#828282;
}
.home-news-slider .block-container > ul > li  a h6{
	padding:0 20px;
	height:66px;
	font-size: 16px;
	font-weight: 800;
	text-align: justify;
}


.home-news-slider .block-container > ul > li  a > p.more{
	transform: translateY(0);
	transition: all .3s ease-out;
	padding:0 20px 14px 20px;
	
}
.home-news-slider .block-container > ul > li  a > p.more > span{
	padding:3px 15px;
	background-color: #0793ff;
	color:#ffffff;
	font-size: 12px;
}
.home-news-slider .block-container > ul > li  a > p.more > span > i.iconfont{
	font-size: 14px;
}
.home-news-slider .block-container > ul > li  a:hover > p.more{
	transform: translateY(-5px);
}




/*
@-webkit-keyframes global_button-hover {
  0% {
    background: rgba(43,93,163,.1);
  }
  100% {
    background: rgba(43,93,163,1);
  }
}
@keyframes global_button-hover {
  0% {
    background: rgba(43,93,163,.1);
  }
  100% {
    background: rgba(43,93,163,1);
  }
}*/
.home-product-slider{
	margin-top: 80px;
}
.home-product-slider .block-container{
	width:100%;
	height:802px;
	margin-top: 40px;
}
.home-product-slider .block-container ul{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	width:100%;
	height: 100%;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.home-product-slider .block-container ul li{
	width:392px;
	height: 100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.home-product-slider .block-container ul li a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	position: relative;
	width:100%;
	background-color: #ccc;
	
	
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	overflow: hidden;
}
.home-product-slider .block-container ul li a > .bg{
	position: absolute;
	width:100%;
	height:100%;
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
	transform:scale(1);
	transition:transform .5s ease-out;
	z-index:1;
}
.home-product-slider .block-container ul li a:hover > .bg{
	transform:scale(1.05);
}
.home-product-slider .block-container ul li a > .title{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	width:100%;
	padding:14px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	color:#ffffff;
	font-size: 18px;
	background-color: #7d7d7d;
	transition:background .5s ease-out;
	z-index:9;
}
.home-product-slider .block-container ul li a:hover > .title{
	background-color: #2b5aa2;
}
.home-product-slider .block-container ul li a > .gradient-bg{
	position: absolute;
	width:100%;
	height: 285px;
	bottom:0;
	left:0;
	background-size:100% 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-image: url(../images/pro-item-bg.png);
	z-index:1;
}

.home-product-slider .block-container ul li a > h6{
	position: relative;
	font-size:32px;
	color:#ffffff;
	line-height: 1;
	z-index:9;
}
.home-product-slider .block-container ul li a > p{
	position: relative;
	font-size: 14px;
	color:#ffffff;
	line-height: 1.5;
	margin-top: 15px;
	z-index:9;
}
.home-product-slider .block-container ul li a span.i-more{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	font-size:12px;
	color:#ffffff;
	padding:0px 22px 0px 8px;
	border:1px solid #ffffff;
}

.home-product-slider .block-container ul li a span.i-more::after{
	content: '';
    position: absolute;
    top: 50%;
    
    pointer-events: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    right: 14px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}

.home-product-slider .block-container ul li.col-1 a.top{
	height: 472px;
}
.home-product-slider .block-container ul li.col-1 a.bottom{
	height: 318px;
}
.home-product-slider .block-container ul li.col-2 a.top{
	height: 318px;
}
.home-product-slider .block-container ul li.col-2 a.bottom{
	height: 474px;
}
.home-product-slider .block-container ul li.col-3 a.top{
	height: 474px;
}
.home-product-slider .block-container ul li.col-3 a.bottom{
	height: 318px;
}

.home-application-slider{
	margin-top: 80px;
}
.home-application-slider .block-container{
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top: 40px;
}
.home-application-slider .block-container > li{
	width:392px;
	height:380px;
	
}
.home-contact-slider{
	margin-top: 80px;
}
.home-contact-slider .heading{
	position: relative;
	z-index:19;
}
.home-contact-slider .block-container{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top: 40px;
	z-index:9;
}
.home-contact-slider .block-container > .info{
	width:40%;
	height:322px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.home-contact-slider .block-container > .info > dl{
	margin-bottom: 20px;
}
.home-contact-slider .block-container > .info > dl > dt{
	font-size:14px;
	color:#000000;
	line-height: 1.3;
	letter-spacing: 2px;
}
.home-contact-slider .block-container > .info > dl > dd{
	font-size: 14px;
	color:#949393;
	line-height: 1.5;
	padding-top: 12px;
}
.info > .site-info{
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	font-size: 16px;
	color:#949393;
}
.info > .site-info > .email{
	flex:1;
}
.info > .site-info > .email > p{
	display: flex;
}
.info > .site-info > .email  span.title{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	width:80px;
}
.info > .site-info > .email  span.title.en{
	width:140px;
}
.info > .site-info a{
	font-size: 14px;
	color:#949393;
	text-decoration: none;
}
.info > .site-info a:hover{
	text-decoration: underline;
}
.home-contact-slider .block-container > .map{
	width:46%;
	height:400px;
	background-color: #ccc;
	transform: translateY(-78px);
	border:1px solid #0794ff;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}


.block-footer{
	width:100%;
	min-width: 1200px;
	padding:80px 0;
	background-color: #363a45;
}
.block-footer > .block-container{
	width:1200px;
	margin:0 auto;
	color:#ffffff;
	font-size: 13px;
	background-color: #363a45;
	text-align: center;
	line-height: 2;
}
.block-footer > .block-container a{
	color:#ffffff;
	text-decoration: none;
}
.block-footer > .block-container a:hover{
	text-decoration: underline;
}


.app-item{
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	border:1px solid #dedede;
	transition:all .3s ease-out;
	transform: translateY(0);
}
.app-item:hover{
	border-color:#5799ca;
	transform: translateY(-10px);
}
.app-item > img{
	width:100%;
	height:198px;
	object-fit: cover;
}
.app-item > .info{
	width:100%;
	flex:1;
	padding:28px 22px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	width:100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.app-item > .info > .head > h6{
	font-size: 24px;
	color:#111729;
	line-height: 1;
	
}
.app-item > .info  > .head > p{
	font-size: 14px;
	color:#828282;
	line-height: 1.5;
	margin-top: 25px;
}
.app-item > .info a.btn-more{
	background-color: #cecece;
	font-size: 12px;
	color:#ffffff;
	padding:6px 20px;
}
.app-item > .info:hover a.btn-more{
	background-color: #0794ff;
}



/*****bread nav******/

.bread-nav-wrap{
	width:100%;
	border-bottom: 1px solid #e7e7e7;
	background-color: #ffffff;
    z-index: 299;
}
.bread-nav-wrap.fixed{
	position: fixed;
	top:0;
	left:0;
}
.bread-nav-wrap > .bread-nav{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	width:1200px;
	margin:0 auto;
}
.bread-nav-wrap > .bread-nav > a{
	padding:22px 12px;
	font-size:16px;
	color:#3a3a3a;
	border-bottom: 1px solid rgba(255,255,255,0);
	transform: translateY(1px);
	margin-right: 22px;
}
.bread-nav-wrap > .bread-nav > a.active,.bread-nav-wrap > .bread-nav > a:hover{
	color:#ef3b00;
	border-color: #ef3b00;
}

.bread-nav-wrap > .bread-nav.third-level{
	justify-content: space-between;
}
.bread-nav-wrap > .bread-nav.third-level .left{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
}
.bread-nav-wrap > .bread-nav.third-level .left > a{
	padding:22px 12px;
	font-size:16px;
	color:#3a3a3a;
	border-bottom: 1px solid rgba(255,255,255,0);
	transform: translateY(1px);
	margin-right: 22px;
}
.bread-nav-wrap > .bread-nav.third-level .left > a.active,.bread-nav-wrap > .bread-nav.third-level .left > a:hover{
	color:#ef3b00;
	border-color: #ef3b00;
}
.bread-nav-wrap > .bread-nav.third-level .right{
	display: flex;
	align-items: center;
}
.bread-nav-wrap > .bread-nav.third-level .right a{
	margin:0 10px;
	font-size: 13px;
	color:#7f7f7f;
}
.bread-nav-wrap > .bread-nav.third-level .right a:hover{
	text-decoration: underline;
}
.bread-nav-wrap > .bread-nav.third-level .right > .iconfont{
	color:#7f7f7f;
	font-size: 12px;
}

/****icon***/

.icon{
	display: inline-block;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.icon-youku{
	width:30px;
	height:30px;
	background-image: url(../images/icon-youku.png);
}
.icon-youku-w{
	width:25px;
	height:25px;
	background-image: url(../images/icon-youku-w.png);
}
.icon-youku-w.active,.icon-youku-w:hover{
	background-image: url(../images/icon-youku-w-a.png);
}
.icon-weixin{
	width:30px;
	height:30px;
	background-image: url(../images/icon-weixin.png);
}
.icon-weixin-w{
	width:25px;
	height:25px;
	background-image: url(../images/icon-weixin-w.png);
}
.icon-weixin-t{
	width:25px;
	height:25px;
	background-image: url(../images/icon-weixin-w.png);
}
.icon-weixin-w.active,.icon-weixin-w:hover{
	background-image: url(../images/icon-weixin-w-a.png);
}

.icon-youku-t{
	width:30px;
	height:30px;
	background-image: url(../images/icon-youku5.png);
}

.icon-gs{
	width:19px;
	height:13px;
	background-image: url(../images/icon-gs.png);
}
.nav-item:hover .icon-gs{
	background-image: url(../images/icon-gs-2.png);
}
.icon-gs-3{
	width:37px;
	height:26px;
	background-image: url(../images/icon-gs-3.png);
}


.icon-001{width:180px;height:180px;background-image: url(../images/icon-001.png);}
.icon-002{width:180px;height:180px;background-image: url(../images/icon-002.png);}
.icon-003{width:180px;height:180px;background-image: url(../images/icon-003.png);}
.icon-004{width:180px;height:180px;background-image: url(../images/icon-004.png);}
.icon-005{width:180px;height:180px;background-image: url(../images/icon-005.png);}
.icon-006{width:180px;height:180px;background-image: url(../images/icon-006.png);}
.icon-007{width:180px;height:180px;background-image: url(../images/icon-007.png);}
.icon-008{width:180px;height:180px;background-image: url(../images/icon-008.png);}
.icon-009{width:180px;height:180px;background-image: url(../images/icon-009.png);}
.icon-010{width:180px;height:180px;background-image: url(../images/icon-010.png);}
.icon-011{width:180px;height:180px;background-image: url(../images/icon-011.png);}
.icon-012{width:180px;height:180px;background-image: url(../images/icon-012.png);}
.icon-013{width:180px;height:180px;background-image: url(../images/icon-013.png);}
.icon-014{width:180px;height:180px;background-image: url(../images/icon-014.png);}
.icon-015{width:180px;height:180px;background-image: url(../images/icon-015.png);}
.icon-016{width:180px;height:180px;background-image: url(../images/icon-016.png);}
.icon-017{width:180px;height:180px;background-image: url(../images/icon-017.png);}
.icon-018{width:180px;height:180px;background-image: url(../images/icon-018.png);}
.icon-019{width:180px;height:180px;background-image: url(../images/icon-019.png);}
.icon-020{width:180px;height:180px;background-image: url(../images/icon-020.png);}
.icon-021{width:180px;height:180px;background-image: url(../images/icon-021.png);}


.icon-app-default{
	width:82px;
	height:93px;
	
}
.icon-app-1{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-1.png);
}

.icon-app-2{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-2.png);
}
.icon-app-3{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-3.png);
}
.icon-app-4{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-4.png);
}
.icon-app-5{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-5.png);
}
.icon-app-6{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-6.png);
}
.icon-app-7{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-7.png);
}
.icon-app-8{
	width:82px;
	height:93px;
	background-image: url(../images/icon-app-8.png);
}

.icon-job-1{
	width:80px;
	height:80px;
	background-image: url(../images/icon-job1.png);
}
.icon-job-2{
	width:63px;
	height:74px;
	background-image: url(../images/icon-job2.png);
}
.icon-job-3{
	width:91px;
	height:72px;
	background-image: url(../images/icon-job3.png);
}
.icon-job-4{
	width:69px;
	height:90px;
	background-image: url(../images/icon-job4.png);
}
.icon-job-5{
	width:83px;
	height:81px;
	background-image: url(../images/icon-job5.png);
}

.icon-soc-1{
	width:74px;
	height:67px;
	background-image: url(../images/icon-soc.png);
}
.icon-soc-2{
	width:51px;
	height:62px;
	background-image: url(../images/icon-soc2.png);
}
.icon-soc-3{
	width:59px;
	height:70px;
	background-image: url(../images/icon-soc3.png);
}

.icon-down3{
	width: 10px;
    height: 10px;
    background-image: url(../images/icon-down3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*****product*********/
.product-type-wrap{
	background-color: #f3f3f3;
}
.product-type-wrap > .heading{
	background-color: #ffffff;
}
.product-type-content{

	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
}
.product-type-wrap > .heading > h5{
	font-size: 32px;
	color:#2e3642;
	width:100%;
	height:90px;
	line-height: 90px;
	text-align: center;
}

.product-type2-wrap{
	margin-top: 40px;
}

.product-type2-wrap > .heading{
	background-color: #ffffff;
}
.product-type2-content{

	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
}
.product-type2-wrap > .heading > h5{
	font-size: 32px;
	color:#2e3642;
	width:100%;
	height:90px;
	line-height: 90px;
	text-align: center;
}

.product-type2-wrap .type-intro{
	text-align: center;
}

.mcu-32bit-info-1{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.mcu-32bit-info-1 > img{
	width:260px;
	height:260px;
	margin-right: 60px;
}
.mcu-32bit-info-1 > .dc{
	line-height: 2;
	font-size: 22px;
	color:#040404;
}
.type-attr-wrap{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-around;
	-moz-justify-content: space-around;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	margin-top: 10px;
}
.type-attr-wrap > .type-item{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}
.type-attr-wrap > .type-item > p{
	min-height: 100px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}
.type-attr-wrap > .type-item > h5{
	width:100%;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
}
.type-attr-wrap > .type-item > h6{
	width:100%;
	min-height: 80px;
	font-size: 16px;
	font-weight: normal;
	border-right: 1px solid #13227a;
	text-align: left;
	margin-top: 20px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 50px;
	line-height: 1.5;
	
}
.type-attr-wrap  .type-item:last-child > h6{
	border:none;
}


.product-app-area{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;

}
.product-app-area.mcu-32-bit{
	width:1560px;
	flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
}

.product-type-content  > .heading > h5{
	font-size: 32px;
	color:#2e3642;
	width:100%;
	height:90px;
	line-height: 90px;
	text-align: center;
}
.product-app-area > .area-item{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	width:386px;
	height:232px;
	background-size: cover;
	background-repeat: no-repeat;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}

.product-app-area.default{
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.product-app-area.default > .area-item{
	position: relative;
	margin-bottom:20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.product-app-area.default  > .area-item > h6{
	position: relative;
	color:#ffffff;
	transition:transform .3s ease-out;
	z-index:2;
}
.product-app-area.default > .area-item:hover > h6{
	transform:translateY(-10px);
}
.product-app-area.default > .area-item > span.bg{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,.3);
	z-index:1;

}


.product-app-area.mcu-32-bit > .area-item{
	width:500px;
	height:325px;
}
.product-app-area.mcu-32-bit > .area-item.area-item-1{
	background-image: url(../images/mcu32bit-p1-v2.png);
}
.product-app-area.mcu-32-bit > .area-item.area-item-2{
	background-image: url(../images/mcu32bit-p2.png);
	transform: translateX(-150px);
}
.product-app-area.mcu-32-bit > .area-item.area-item-3{
	background-image: url(../images/mcu32bit-p3-v3.png);
	transform: translateX(-300px);
}
.product-app-area.mcu-32-bit  > .area-item > h6{
	width:350px;
	text-align: center;
	color:#ffffff;
	padding-bottom: 24px;
	transform:translateY(0);
	transition:transform .3s ease-out;
}
.product-app-area.mcu-32-bit > .area-item:hover > h6{
	transform:translateY(-10px);
}


.banner-img-wrap{
	width:100%;
	overflow: hidden;
}
.banner-img-wrap > img{
	width:100%;
	height:auto;
	object-fit: cover;
}

.pro-tb-wrap{

}

.pro-tb-wrap > .tb-head{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	height:140px;
	border-top:2px solid #999;
	font-weight:800;
}



.pro-tb-wrap > .tb-head .td{
	width:35px;
	height:200px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding-top: 120px;
	font-size:12px;
}


.pro-tb-wrap > .tb-head > .td-group{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	height:200px;
}
.pro-tb-wrap > .tb-head > .td-group > .td-group-title{
	text-align: center;
	border-bottom: 1px solid #ccc;
	height:40px;
	line-height: 40px;
	font-size: 14px;
}
.pro-tb-wrap > .tb-head > .td-group .td-group-con{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;

}
.pro-tb-wrap > .tb-head > .td-group .td-group-con.mcu{
	position: relative;
}
.pro-tb-wrap > .tb-head > .td-group .td-group-con.mcu > .sub-group{
	position: absolute;
	top:10px;
	font-size: 12px;
	border-bottom: 1px solid #ccc;
	line-height: 2;
}
.pro-tb-wrap > .tb-head > .td-group .td-group-con.mcu > .sub-group.sg-1{
	width:105px;
	left:0;
	text-align: center;
}
.pro-tb-wrap > .tb-head > .td-group .td-group-con.mcu > .sub-group.sg-2{
	width:70px;
	left:110px;
	text-align: center;
}

.pro-tb-wrap > .tb-head > .td-group .td{
	height:160px;
	padding-top: 80px;
}



.pro-tb-wrap.en > .tb-head{
	height:160px;
}
.pro-tb-wrap.en > .tb-head .td{
	padding-top: 140px;
}
.pro-tb-wrap.en > .tb-head > .td-group .td{
	padding-top: 100px;
}

.pro-tb-wrap.tb2.en > .tb-head{
	height:220px;
}
.pro-tb-wrap.tb2.en > .tb-head .td{
	padding-top: 200px;
}
.pro-tb-wrap.tb2.en > .tb-head > .td-group .td{
	padding-top: 160px;
}



.pro-tb-wrap > .tb-head .td.td-1{
	width:65px;
}
.pro-tb-wrap > .tb-head .td.td-2{
	width:80px;
}
.pro-tb-wrap > .tb-head .td > i{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	width:300px;
	transform:rotate(-45deg);
	transform-origin:0 0;
}



.pro-tb-wrap > .tb-body{
	border-top: 1px solid #ccc;
	max-height: 400px;
	overflow-y: scroll;

}
.pro-tb-wrap > .tb-body .tr{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	
	border-bottom: 1px solid #ccc;
	padding:10px 0;
}
.pro-tb-wrap > .tb-body .td{
	width:35px;
	font-size: 12px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;

	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
}
.pro-tb-wrap > .tb-body .td.td-1{
	width:65px;
}
.pro-tb-wrap > .tb-body .td.td-2{
	width:80px;
}

.pro-tb-wrap > .tb-body  .td-group{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;

}

.pro-tb-wrap > .tb-body  .td-group .td-group-con{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;

}
.pro-tb-wrap > .tb-foot{
	font-size: 13px;
	padding:15px 0;
}
.pro-tb-wrap > .tb-foot span{
	margin-right: 20px;
}



/***product-detail-content****/

.product-detail-content > .heading > h5{
	font-size: 32px;
	color:#2e3642;
	width:100%;
	height:90px;
	line-height: 90px;
	text-align: center;
}

.product-detail-content .block-container dl{
	margin-top: 70px;
}
.product-detail-content .block-container dl dt{
	border-left:14px solid #026ed2;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	font-size: 24px;
	color:#4b4b4b;
	padding-left: 30px;
}
.product-detail-content .block-container dl dd{
	padding-left: 44px;
	padding-top: 30px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	font-size: 16px;
	color:#333333;
	line-height: 2;
}
.product-detail-content .block-container dl dd a{
	color:#0050c8;
}
.product-detail-content .block-container dl dd a:hover{
	text-decoration: underline;
}

/***app***/
.app-model{
	margin-top: 65px;
}
.app-model > h5{
	font-size: 30px;
	color:#414953;
	text-align: left;
}
.app-model:nth-child(even) > h5{
	text-align: right;
}
.app-model dl{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	margin-top: 30px;
}

.app-model dl dt img{
	width:100%;
	height:100%;
	object-fit: cover;
}
.app-model dl dd{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top: 25px;
}

.app-model dl.type-2{
	flex-direction: row;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.app-model dl.type-2 dt{
	flex:1;
}

.app-model dl.type-2 dd{
	width:316px;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	margin-top: 0;
	margin-left: 15px;
}
.app-model dl.type-2 dd a{
	flex:none;
	height: 190px;
	position: relative;
	line-height: 1;
	margin-right: 0;
	color:#ffffff;
	font-size:14px;
}
.app-model dl.type-2 dd a > img{
	height:190px;
}
.app-model dl.type-2 dd a > p{
	position: absolute;
	left:0;
	top:10px;
	line-height: 1;
	height: auto;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding-left: 15px;
}


.app-model dl dd a{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	background-color: #ffffff;
	color:#686868;
	transition:background .3s ease-out;
	margin-right:16px;
}
.app-model dl dd a:last-child{
	margin-right: 0;
}
.app-model dl dd a > img{
	width:100%;
	height:180px;
	object-fit: cover;

	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	border:1px solid #015ac0;
}
.app-model dl dd a > p{
	height:56px;
	text-align: center;
	line-height: 56px;
}
.app-model dl dd a:hover{
	background-color: #015ac0;
	color:#ffffff;
}


.app-product-list{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top:50px;
}
.app-product-list a{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;

	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	flex:1;
	margin-right: 12px;
	padding:15px 0px 10px;
	border:1px solid #ececec;
}
.app-product-list a:last-child{
	margin-right: 0;
}
.app-product-list a > h6{
	font-size: 14px;
	letter-spacing: 2px;
	margin-top: 20px;
	text-align: center;
}
.app-product-list a > p{
	position: relative;
	color:#bcbcbc;
	font-size: 12px;
	margin-top: 20px;
	z-index:19;
}
.app-product-list a > .line{
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:4px;
	transition:height .3s ease-out;
	z-index:9;
}

.app-product-list a:hover > .line{
	height:38px;
}
.app-product-list a:hover > p{
	color:#ffffff;
}
.app-product-list a > .line.color-1{
	background-color: #fbcc00;
}
.app-product-list a > .line.color-2{
	background-color: #f8681d;
}
.app-product-list a > .line.color-3{
	background-color: #b5d84d;
}
.app-product-list a > .line.color-4{
	background-color: #549bec;
}
.app-product-list a > .line.color-5{
	background-color: #6abcbb;
}
.app-product-list a > .line.color-6{
	background-color: #ffa600;
}
.app-product-list a > .line.color-7{
	background-color: #001a4a;
}
.app-product-list a > .line.color-8{
	background-color: #8559be;
}

.app-detail-banner > img{
	width:100%;
	margin-top: 80px;
}
.app-solution-intro > .heading{
	margin-top: 80px;
}
.app-solution-intro > .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.app-intro1{
	margin-top: 30px;
}
.app-intro1 > img{
	width:100%;
}
.app-intro2 > img{
	width:100%;
}


.app-download > .heading{
	margin-top: 80px;
}
.app-download > .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.app-download .block-container{
	border-top:2px solid #ccc;
	border-bottom:2px solid #ccc;
	margin-top: 50px;
}
table.default{
	width:100%;
	text-align: center;
}

table.default > thead  th{
	border-bottom: 1px solid #bbbcbe;
	font-size: 14px;
	height:46px;
}
table.default > tbody tr{
	transition:background .3s ease-out;
}
table.default > tbody tr:hover{
	background-color: #f0f0f0;
}
table.default > tbody  td{
	border-bottom: 1px solid #bbbcbe;
	font-size: 13px;
	padding:15px 0;
}

/**about***/
.ft-about{
	padding: 80px 0;
}
.ft-about > .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-about > .block-container{
	margin-top: 50px;
	line-height: 2;
	font-size: 18px;
}
.ft-about > .block-container p{
	margin:15px 0;
}
.ft-brand-wrap{
	background-color: #f3f3f3;
}
.ft-brand{
	padding: 80px 0;
}
.ft-brand > .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-brand > .block-container{
	margin-top: 0px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	font-size: 18px;
}
.ft-brand > .block-container > img{
	width:300px;
	margin-left: 100px;
}
.ft-brand > .block-container > .brand-info{
	flex:1;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	line-height: 2;

}
.ft-idea-wrap{
	margin-top: 80px;
}
.ft-idea-wrap   .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-idea-wrap   .full-bg{
	background-image: url(../images/about-idea-bg-v2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding:108px 0;
	margin-top: 50px;
}
.ft-idea-wrap   .full-bg .idea-content{
	width:600px;
	line-height: 2;
	color:#ffffff;
	font-size: 18px;
	font-weight: 100;
}
.ft-idea-wrap   .full-bg .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
}
.ft-idea-wrap   .full-bg .idea-content span{
	font-weight: 800;
}

.ft-duty > .heading{
	margin-top: 80px;
}
.ft-duty > .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-duty .block-container{
	font-size: 18px;
	line-height: 2.5;
	margin-top: 35px;
}
.ft-duty .block-container span{
	font-weight: 800;
}





.ft-study-wrap{
	margin-top: 80px;
}
.ft-study-wrap   .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-study-wrap   .full-bg{
	background-image: url(../images/we-do-1-v3.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding:108px 0;
	margin-top: 50px;
}
.ft-study-wrap   .full-bg .study-content{
	width:600px;
	line-height: 2;
	color:#3a3937;
	font-size: 18px;
	font-weight: 200;
}
.ft-study-wrap   .full-bg .study-content p.p2{
	margin-top: 20px;
}
.ft-study-wrap   .full-bg .study-content p.p2 > a{
	color: #3a3937;
    border: 1px solid #3a3937;
}
.ft-study-wrap   .full-bg .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-start;
}
.ft-study-wrap   .full-bg .study-content span{
	font-weight: 800;
}



.ft-solution-wrap{
	margin-top: 80px;
}
.ft-solution-wrap   .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.ft-solution-wrap   .full-bg{
	background-image: url(../images/we-do-2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding:108px 0;
	margin-top: 50px;
}
.ft-solution-wrap   .full-bg .solution-content{
	width:600px;
	line-height: 2;
	color:#ffffff;
	font-size: 18px;
	font-weight: 100;
}
.ft-solution-wrap   .full-bg .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
}
.ft-solution-wrap   .full-bg .solution-content span{
	font-weight: 800;
}

.btn-ft-more{
	color:#ffffff;
	border:1px solid #ffffff;
	font-size: 16px;
	padding:2px 20px;
	transition:all .3s ease-out;
}

.btn-ft-more:hover{
	color:#000000;
	border-color:#ffffff;
	background-color: #ffffff;
}


.history-wrap{
	padding-top: 50px;
}
.history-wrap dl{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;

}
.history-wrap dl dt{
	position: relative;
	width:12%;
	font-size: 24px;
	color:#202835;
	text-align: left;
	border-right:1px solid #b0aeae;
	padding: 30px 0;
	line-height: 1;
}
.history-wrap dl dt > i{
	position: absolute;
	top:0;
	right:0;
	width:18px;
	height:18px;
	border:1px solid #2054ff;
	border-radius:100%;
	transform: translate3d(50%,33px,0);
	background-color: #ffffff;
}
.history-wrap dl dd{
	flex:1;
	line-height: 24px;
	padding: 30px 0px 30px 60px;
	font-size: 18px;
}
.history-wrap dl dd > p{
	position: relative;
	margin-bottom: 30px;
}

.history-wrap dl dd i.iconfont{
	position: absolute;
	top:0;
	left:0;
	transform:translateX(-30px);
}

.news-list-wrap{
	margin-top: 80px;
}
.news-list-wrap   .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}

.news-list{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top: 80px;
}
.news-list a{
	position: relative;
	width:380px;
	height:220px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	margin-bottom: 50px;
	border:1px solid #e7e7e7;
	transition:all .5s ease-out;
	overflow: hidden;
	
}
.news-list a.none{
	border:0;
	opacity: 0;
}
.news-list a  .date{
	display: inline-block;
	background-color: #e7e7e7;
	color:#333333;
	font-size:14px;
	padding:4px 14px;
}
.news-list a:hover .date{
	background-color: #026ed2;
	color:#ffffff;
}
.news-list a > h6{
	height:54px;
	font-size: 18px;
	margin-top:15px;
	line-height: 1.5;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 10px;
}
.news-list a > p{
	font-size: 13px;
	color:#616161;
	line-height: 1.5;
	margin-top: 20px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 10px;
}
.news-list a > img{
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.news-list a:hover{
	border:1px solid #026ed2;
}
.news-list a.none:hover{
	opacity: 0;
	cursor: default;
}
.news-list a:hover > h6{
	color:#026ed2;
}
.news-list a:hover > p{
	color:#026ed2;
}

.news-action{
	text-align: center;
}

.btn-news-more{
	display: inline-block;
	padding:5px 20px;
	color:#ffffff;
	font-size: 14px;
	background-color: #282828;
}
.btn-news-more:hover{
	background-color: #626262;
}


.news-detail-wrap{
	padding-top: 50px;
}

.news-detail{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
}
.news-detail > .news-section{
	flex:1;
	padding-right: 25px;
	border-right:1px solid #f0f0f0;
	padding-bottom: 50px;
}
.news-detail > .news-aside{
	width:300px;
	padding-left: 25px;
}



.news-section > p.date{
	font-size: 14px;
    color: #989898;
    text-align: center;
    margin-top: 15px;
}
.news-section > h6{
	font-size: 22px;
	color:#636363;
	margin-top: 10px;
	line-height: 1.5;
	text-align: center;
}
.news-section > .content{
	padding-top: 15px;
	font-size: 16px;
	line-height: 1.8;
	color:#636363;
}
.news-section > .content p{
	margin:10px 0;
	text-indent: 2em;
}
.news-section > .content img{
	display: block;
	max-width: 100%;
	margin:15px auto;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}

.news-aside dl{
	margin-bottom: 20px;
}
.news-aside dl:first-child{
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 20px;
}
.news-aside dl dt{
	font-size: 16px;
	font-weight: 800;
	color:#636363;

}
.news-aside dl dd{
	padding-top: 10px;
}
.news-aside dl dd a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;

}

.news-aside dl dd a > img{
	width:100%;
	height:156px;
	object-fit: cover;
}
.news-aside dl dd a > h6{
	font-size: 16px;
	color:#636363;
	margin-top: 15px;
	line-height: 1.5;
}
.news-aside dl dd a > p{
	font-size: 13px;
	color:#636363;
	margin-top: 15px;
	line-height: 1.5;
}
.news-aside dl dd a > p.date{
	text-align: right;
}

.news-aside dl dd a:hover h6{
	color:#026ed2;
}
.news-aside dl dd a:hover p{
	color:#026ed2;
}


.site-map{
	display: none;
	position: fixed;
	width:100%;
	height:100%;
	z-index:419;
	background-color: rgba(41,55,69,.9);
	transform: translateX(-200px);
	opacity: 0;
	transition:all .3s ease-out;
	overflow-y: auto;
}
.site-map.active{
	transform: translateX(0px);
	opacity: 1;
}
.site-map .head{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:100%;
	height:70px;
	background-color: #000000;
	color:#ffffff;
	font-size: 24px;
	line-height: 100px;
	padding-left: 125px;
	padding-right: 60px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
.site-map .head > a{
	color:#ffffff;
}
.site-map .head > a > span{
	font-size: 24px;
}
.site-map .site-map-block{
	width:100%;
	height: 100%;
	max-width: 1200px;
	margin:0 auto;
	padding-top: 20px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-around;
	-moz-justify-content: space-around;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}

.site-map .site-map-block dl{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}

.site-map.en .site-map-block dl{
	flex:1;
	margin-right:10px;
}
.site-map.en .site-map-block dl:last-child{
	margin-right: 0;
}

.site-map .site-map-block dl > dt{
	font-size: 18px;
	color:#ffffff;
	border-bottom: 1px solid #ffffff;
	padding:10px 10px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
.site-map .site-map-block dl > dt > span{
	font-size: 22px;
	margin-right: 5px;
}
.site-map .site-map-block dl > dd{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}
.site-map .site-map-block dl > dd a{
	color:#ffffff;
	font-size: 14px;
	margin:7px 0;
	padding-top: 5px;
}
.site-map .site-map-block dl > dd a:hover{
	text-decoration: underline;
}
.site-map .site-map-block dl > dd > dl{
	margin-bottom: 20px;
}

.download-wrap{
	padding: 50px 0;
}
.download-wrap .download-content{
	border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}
.download-wrap .search-wrap{
	width:1200px;
	margin:30px auto;
}
.download-wrap .search-box{
	display: flex;
	width:310px;
	padding:5px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	color:#282828;
	border:1px solid #282828;
}
.download-wrap .search-box > a{
	display: block;
	width:30px;
	text-align: center;
}
.download-wrap .search-box input{
	flex:1;
	border-top:none;
	border-bottom:none;
	border-left: none;
	border-right:1px solid rgba(0,0,0,.5);
	background-color: transparent;
	color:#282828;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 10px;
}


/***/
.video-list-wrap{
	margin-top: 80px;
}
.video-list-wrap   .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}

.video-list{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	margin-top: 80px;
}
.video-list a{
	position: relative;
	width:380px;
	height:320px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	margin-bottom: 50px;
	border:1px solid #ffffff;
	transition:all .5s ease-out;
	
}

.video-list a > .date{
	position: absolute;
	left:-1px;
	top:-10px;
	background-color: #026ed2;
	color:#ffffff;
	font-size:14px;
	padding:4px 14px;
}
.video-list a > h6{
	font-size: 18px;
	margin-top:15px;
	line-height: 1.5;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 10px;
}
.video-list a > p{
	font-size: 13px;
	color:#616161;
	line-height: 1.5;
	margin-top: 20px;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding:0 10px;
}
.video-list a > img{
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.video-list a > .play-video{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 230px;
	background-color: rgba(0,0,0,.1);
	color:#ffffff;
	
}
.video-list a > .play-video > span{
	font-size: 50px;
}

.video-list a:hover{
	border:1px solid #026ed2;
}
.video-list a.none{
	border: none;
	opacity: 0;
	cursor: default;
}
.video-list a:hover > h6{
	color:#026ed2;
}
.video-list a:hover > p{
	color:#026ed2;
}
.video-action{
	text-align: center;
}
.index-banner-swiper .swiper-slide.job-banner-1{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
}
.index-banner-swiper .swiper-slide.job-banner-1 > .info{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: row;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	justify-content: flex-end;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	color:#ffffff;
	font-size: 14px;
}
.index-banner-swiper .swiper-slide.job-banner-1 > .info h5{
	font-size: 28px;
}
.index-banner-swiper .swiper-slide.job-banner-1 > .info > .job-info > div{
	margin-top: 15px;
}

/****/
.job-slider-1{
	margin-top: 80px;
}
.job-slider-1   .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}

.job-slider-1 .block-container{
	margin-top: 100px;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
}

.job-slider-1 .block-container > img{
	width:550px;
}
.job-slider-1 .block-container > .txt{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;

	flex:1;
	margin-left:112px;
	line-height: 2;
}

.job-slider-2{
	margin-top: 90px;
	padding:80px 0 0;
	background-color: #f3f3f3;
}
.job-slider-2 .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
}
.job-slider-2 .block-container > li{
	width:550px;
	margin-bottom: 70px;
}
.job-slider-2 .block-container > li > img{
	width:550px;
	height:297px;
	object-fit: cover;
}
.job-slider-2 .block-container > li > h6{
	margin-top: 20px;
	font-size: 22px;
	color:#2a323e;
	line-height: 1;
}
.job-slider-2 .block-container > li > p{
	margin-top: 15px;
	font-size: 14px;
	color:#2a323e;
	line-height: 1.5;
}
.job-slider-3{
	margin-top: 100px;
}
.job-slider-3 .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#2a323e;
	font-weight: 400;
}
.job-slider-3 .block-container{
	padding-top: 45px;
	
}
.job-slider-3 .block-container p.p1{
	font-size: 18px;
	color:#2a323e;
	text-align: center;
}
.job-slider-3 .block-container p.action{
	text-align: center;
	margin-top: 60px;
	padding-bottom: 100px;
}


.btn-primary{
	padding:4px 10px;
	color:#ffffff;
	background-color: #416eff;
	border:1px solid #416eff;
	font-size: 16px;
	transition:background .3s ease-out;
	letter-spacing: 1px;
	font-size: 13px;
}
.btn-primary:hover{
	color:#416eff;
	background-color: #ffffff;
	border:1px solid #416eff;
}
.btn-primary-job{
	padding:12px 60px;
	color:#ffffff;
	background-color: #13227a;
	border:1px solid #13227a;
	font-size: 16px;
	transition:background .3s ease-out;
	letter-spacing: 1px;
}
.btn-primary-job:hover{
	color:#13227a;
	background-color: #ffffff;
	border:1px solid #13227a;
}


.job-wrap-4{
	padding:100px 0;
	margin-top: 60px;
}
.job-slider-4 .block-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.job-slider-4 .block-container .txt{
	max-width:40%;
}
.job-slider-4 .block-container h6{
	font-size: 20px;
	color:#333;
}

.job-slider-4 .block-container p{
	font-size: 16px;
	color:#333;
	margin-top: 10px;
}

.job-wrap-5{
	
	padding:50px 0;
	background-color: #f4f4f4;
}
.job-slider-5 .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content:space-between;
	align-items: center;
}

.job-slider-5 .block-container .txt{
	max-width:40%;
}
.job-slider-5 .block-container h6{
	font-size: 20px;
	color:#333;
	
}

.job-slider-5 .block-container p{
	font-size: 16px;
	color:#333;
	margin-top: 10px;
}


.job-slider-6{

	margin-top: 100px;
}
.job-slider-6 .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#2a323e;
	font-weight: 400;
}
.job-slider-6 .block-container{
	padding-top: 45px;
	padding-bottom: 100px;
	
}
.job-slider-6 .block-container p.p1{
	font-size: 18px;
	color:#2a323e;
	text-align: center;
}
.job-slider-6 .block-container p.action{
	text-align: center;
	margin-top: 60px;
	padding-bottom: 100px;
}

.job-slider-6 .block-container p.p2{
	margin-top: 50px;
	font-size: 18px;
	color:#2a323e;
	text-align: center;
}
.job-slider-6 .block-container p.p3{
	margin-top: 10px;
	font-size: 18px;
	color:#2a323e;
	text-align: center;
}
.job-flow{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: space-around;
	-moz-justify-content: space-around;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	margin-top: 50px;
}

.job-flow > li{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:180px;
	height:180px;
	border-radius: 200px;
	box-shadow: 2px 2px 4px 0px #a1a1a1;
}
.job-flow > li > p{
	margin-top: 15px;
	font-size: 16px;
}
.job-type-slider{
	padding-top: 80px;
}
.job-type-slider .block-container{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;

}
.job-type-slider .block-container a{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:450px;
	height:180px;
	box-shadow: -2px -2px 2px #eee, 4px 4px 8px #d7d7d7;
	margin:0 20px;
	transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
}
.job-type-slider .block-container a > h6{
	margin-left: 20px;
}

.job-type-slider .block-container a:hover{
	box-shadow: 0px 0px 16px #999;
}

input[type=radio] {
    visibility: hidden;
}
.checkboxFour {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100%;
    position: relative;
    margin-right: .15rem;
	border:1px solid #ccc;
}
.checkboxFour label {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    background: rgba(255, 255, 255, 1);
   
}
.checkboxFour input[type=radio]:checked + label {
    background-color: #4c4c4c;
}



.job-list-head{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	font-size: 14px;
}

.job-list-head dl{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	margin-top: 35px;
}
.job-list-head dl dt{
	width:120px;
	font-size: 16px;
	font-weight: 800;
}
.job-list-head dl dd{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	
}
.job-list-head dl dd.ot{
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}
.job-list-head dl dd .col-item{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	margin-right: 20px;
}
.job-list-head dl dd .col-item > label{
	margin-left: 10px;
}
.job-list-head dl dd .cat-group{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	margin-bottom: 15px;
}

.job-list-head dl dd .cat-group > span{
	width:100px;
}
.job-list-content{
	padding-bottom: 100px;
}

.job-wrap{
    margin-top: 35px;
}
.job-wrap table{
    width: 100%;
    text-align: left;
}
.job-wrap table thead{
    background-color: #416eff;
    color:#fff;
    font-size:12px;
    font-weight: normal;
}
.job-wrap table thead th{
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}
.job-wrap table thead th span,.job-wrap table tbody td span{
    padding-left: 30px;
    margin-right: 15px;
}
.job-wrap table thead th i,.job-wrap table tbody td i{
    opacity: 0;
    transition:all .5s;
}

.job-wrap table tbody tr:hover i{
    opacity: 1;
}
.job-wrap table tbody tr.active{
    box-shadow: 0px 1px 10px 0px #dfdfdf;
}
.job-wrap table tbody tr.active i{
    opacity: 1;
    transform:rotate(180deg);
}


.job-wrap dd li{
    border-bottom: 1px solid #bdbdbd;
    color:#6b6b6b;
    font-size: .875rem;
}
.job-wrap table tbody td{
    padding:2rem 0;
}
.job-wrap dd li .more{
    display: none;
    width: 940px;
    height: auto;
    padding:0px 30px 35px;
    text-align: left;
    line-height: 2;
    font-size: 12px;
}
.job-wrap dd li .more h6{
    margin-top: 35px;
    color:black;
    font-size: 14px;
}
.job-wrap .more-jobs{
    padding-top: 6rem;
    text-align: center;
    font-size: 14px;
    color:#949494;
}



/***/
.banner-wrap{
	position: relative;
	min-width: 1200px;
	height:100%;
}

.banner-wrap > .mask{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:300px;
	background-image: url(../images/banner-mask.png);
	background-size:12px 100%;
	background-repeat: repeat-x;
	background-position: center top;
	z-index:19;
}
.banner-wrap .banner-content{
	width:1200px;
	height: 100%;
	margin:0 auto;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	overflow: hidden;
}



.banner-wrap > img{
	position:absolute;
	top:0;
	left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    z-index:9;
}
.banner-wrap .banner-content > .info{
	position: relative;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: flex-start;
	-moz-align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
	width:100%;
	height:100%;
	margin:0 auto;
	z-index:9;
	opacity: 0;
	transform: translateX(100px);
	transition: all .5s ease .8s;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	padding-right: 30px;

}

.banner-wrap .banner-content > .info.info-place-0{
	align-items: flex-start;
	-moz-align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-align-items: flex-start;
}
.banner-wrap .banner-content > .info.info-place-1{
	align-items: flex-end;
	-moz-align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-align-items: flex-end;
}
.banner-wrap .banner-content > .info.info-place-2{
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
}

.banner-wrap .banner-content.active > .info{
	opacity: 1;
	transform: translateX(0px);
}
.banner-wrap .banner-content > .info > h5{
	font-size: 36px;
	line-height: 1;
	color:#ffffff;
	font-weight: 400;
}

.banner-wrap .banner-content > .info.info-color-2 > h5{
	color:#3a3a3a;
}
.banner-wrap .banner-content > .info > h6{
	color:#ffffff;
	font-size: 18px;
	max-width: 50%;
	line-height: 1.5;
	margin-top: 20px;
	font-weight: normal;
}
.banner-wrap .banner-content > .info.info-color-2 > h6{
	color:#3a3a3a;
}

.banner-wrap .banner-content > .info.info-place-0 > h6{
	text-align: left;
}
.banner-wrap .banner-content > .info.info-place-1 > h6{
	text-align: right;
}
.banner-wrap .banner-content > .info.info-place-2 > h6{
	text-align: center;
}

.mt80{
	margin-top: 80px;
}


.qr-wrap{
	position: relative;
}
.qr-wrap > .qrcode-box{
	display: none;
	position: absolute;
	left:0;
	bottom:0;
	transform: translateX(-110%);
}
.qr-wrap > .qrcode-box.left{
	position: absolute;
	left:0;
	bottom:0;
	transform: translateX(-110%);
}
.qr-wrap > .qrcode-box.bottom{
	position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate3d(-50%,110px,0);
}
.qr-wrap > .qrcode-box.top{
	position: absolute;
    left: 50%;
    top: 0;
    transform: translate3d(-50%,-110px,0);
}
.qr-wrap > .qrcode-box > img{
	width:80px;
}



/*******/
.study-list-wrap{
	margin-top: 80px;
}
.study-list-wrap   .heading > h5{
	width:100%;
	text-align: center;
	font-size: 36px;
	color:#3f4650;
	font-weight: 400;
}

.study-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 80px;
}
.study-list a{
	position: relative;
	width:380px;
	height:300px;
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
	border:1px solid #ffffff;
	transition:all .5s ease-out;
	
}

.study-list a > .date{
	position: absolute;
	left:-1px;
	top:-10px;
	background-color: #026ed2;
	color:#ffffff;
	font-size:14px;
	padding:4px 14px;
}
.study-list a > h6{
	font-size: 18px;
	margin-top:15px;
	line-height: 1.5;
	box-sizing: border-box;
	padding:0 10px;
}
.study-list a > p{
	font-size: 13px;
	color:#616161;
	line-height: 1.5;
	margin-top: 20px;
	box-sizing: border-box;
	padding:0 10px;
}
.study-list a > img{
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.study-list a:hover{
	border:1px solid #026ed2;
}
.study-list a.none:hover{
	opacity: 0;
	cursor: default;
}
.study-list a:hover > h6{
	color:#026ed2;
}
.study-list a:hover > p{
	color:#026ed2;
}

/****/

.study-detail-wrap{
	padding-top: 50px;
}

.study-detail{
	display: flex;
}
.study-detail > .study-section{
	flex:1;
	padding-right: 85px;
	border-right:1px solid #f0f0f0;
	padding-bottom: 50px;
}
.study-detail > .study-aside{
	width:300px;
	padding-left: 25px;
}



.study-section > p.date{
	font-size: 20px;
	color:#636363;
}
.study-section > h6{
	font-size: 22px;
	color:#636363;
	margin-top: 10px;
	line-height: 1.5;
}
.study-section > .content{
	padding-top: 15px;
	font-size: 14px;
	line-height: 2;
	color:#636363;
}
.study-section > .download{
	margin-top: 30px;
}
.study-section > .download > a{
	display: inline-block;
	padding:15px 10px;
	background-color:#e7e7e7;
	box-sizing: border-box;
}
.study-section > .download > a:hover{
	background-color: #026ed2;
	color:#ffffff;
}
.study-section > .content > p{
	margin:10px 0;
	/*text-indent: 2em;*/
}
.study-section > .content img{
	display: block;
	max-width: 100%;
	margin:15px auto;
	box-sizing: border-box;
}
.study-aside dl{
	margin-bottom: 50px;
}
.study-aside dl dt{
	font-size: 16px;
	font-weight: 800;
	color:#636363;

}
.study-aside dl dd{
	padding-top: 10px;
}
.study-aside dl dd a{
	display: flex;
	flex-direction: column;

}
.study-aside dl dd a > img{
	width:100%;
	height:156px;
	object-fit: cover;
}
.study-aside dl dd a > h6{
	font-size: 16px;
	color:#636363;
	margin-top: 15px;
	line-height: 1.5;
}
.study-aside dl dd a > p{
	font-size: 13px;
	color:#636363;
	margin-top: 15px;
	line-height: 1.5;
}
.study-aside dl dd a > p.date{
	text-align: right;
}

.study-aside dl dd a:hover h6{
	color:#026ed2;
}
.study-aside dl dd a:hover p{
	color:#026ed2;
}
.study-detail .keywords-list{
	display: flex;
	margin-top: 20px;
	line-height: 1;
}
.study-detail .keywords-list > span{
	color:#1560a9;
	line-height: 1;
	margin-right: 15px;
}
.study-detail .keywords-list > a.kk{
	margin-right: 20px;
	color:#1560a9;
	line-height: 1;
}
.study-detail .keywords-list > a.kk:hover{
	text-decoration: underline;
}




/****/
.study-file-wrap{
	padding: 50px 0;
}
.study-file-wrap .study-file-content{
	border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-top: 50px;
}
.study-file-wrap   .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}

/****/

.study-tech-wrap .heading > h5{
	width:100%;
	text-align: left;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.study-tech-wrap .full-bg{
	width:100%;
	height:480px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding:108px 0;
}
.study-tech-wrap .full-bg.study-1{
	background-image: url(../images/study-1.jpg);
}
.study-tech-wrap .full-bg.study-2{
	background-image: url(../images/study-2.jpg);
}
.study-tech-wrap .full-bg.study-3{
	background-image: url(../images/study-3.jpg);
}
.study-tech-wrap .full-bg .idea-content{
	width:600px;
	line-height: 2;
	color:#ffffff;
	font-size: 18px;
	font-weight: 100;
}
.study-tech-wrap .full-bg .block-container{
	display: flex;
	color:#ffffff;
}
.study-tech-wrap .full-bg .block-container h6{
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 20px;
}
.study-tech-wrap .full-bg .block-container .content{
	max-width: 600px;
	line-height: 1.8;
}

.study-tech-wrap .full-bg.study-2 .block-container{
	justify-content: flex-end;
	text-align: right;
	color:#000000;
}

.study-tech-wrap .full-bg .idea-content span{
	font-weight: 800;
}
.study-info{
	padding: 50px 0 30px;
}
.study-info > .heading > h5{
	width:100%;
	text-align: center;
	font-size: 30px;
	color:#3f4650;
	font-weight: 400;
}
.study-info > .block-container{
	margin-top: 30px;
	line-height: 1.5;
	font-size: 18px;
}
.study-info > .block-container p{
	margin:15px 0;
	text-align: center;
}



.cat-banner-2{
	width:100%;
	background-image: url(../images/1594685419223.jpg);
	background-size:cover;
	background-position: center;
	background-repeat: repeat-x;
}
.cat-banner-2 > .cat-banner-con{
	display: none;
	width:1200px;
	margin:0 auto;
	padding:50px 0 130px;
	box-sizing: border-box;
}
.cat-banner-2 > .cat-banner-con.pc{
	display: block;
}
.cat-banner-2 > .cat-banner-con.mobile{
	display: none;
}
.cat-banner-2 > .cat-banner-con > dl > dt{
	font-size: 32px;
    color: #ffffff;
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-align: center;
}
.cat-banner-2 > .cat-banner-con > dl > dd{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: space-around;
	-moz-justify-content: space-around;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	padding:0 20px;
	box-sizing: border-box;
}

.cat-banner-2 > .cat-banner-con > dl > dd > .cat-icon-item{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	width:220px;
	margin:20px 0 20px 0;
}
.cat-banner-2 > .cat-banner-con > dl > dd > .cat-icon-item > p{
	color:#ffffff;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 8px;
}

.cat-banner-3{
	width:100%;
	background-image: url(../images/cat-banner-3.jpg);
	background-size:cover;
	background-position: center;
	background-repeat: repeat-x;
}
.cat-banner-3 > .cat-banner-con{
	width:1200px;
	margin:0 auto;
	padding:60px 0 60px;
	box-sizing: border-box;
	text-align: center;
}
.cat-banner-3 > .cat-banner-con img{
	width:92%;
}

.cat-icon{
	width:93px;
	height:93px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.cat-icon.c-1{
	background-image: url(../images/c-1.png);
}
.cat-icon.c-2{
	background-image: url(../images/c-2.png);
}
.cat-icon.c-3{
	background-image: url(../images/c-3.png);
}
.cat-icon.c-4{
	background-image: url(../images/c-4.png);
}
.cat-icon.c-5{
	background-image: url(../images/c-5.png);
}
.cat-icon.c-6{
	background-image: url(../images/c-6.png);
}
.cat-icon.c-7{
	background-image: url(../images/c-7.png);
}
.cat-icon.c-8{
	background-image: url(../images/c-8.png);
}
.cat-icon.c-9{
	background-image: url(../images/c-9.png);
}
.cat-icon.c-10{
	background-image: url(../images/c-10.png);
}


.cat-icon.c2-1{
	background-image: url(../images/c2-1.png);
}
.cat-icon.c2-2{
	background-image: url(../images/c2-2.png);
}
.cat-icon.c2-3{
	background-image: url(../images/c2-3.png);
}
.cat-icon.c2-4{
	background-image: url(../images/c2-4.png);
}
.cat-icon.c2-5{
	background-image: url(../images/c2-5.png);
}
.cat-icon.c2-6{
	background-image: url(../images/c2-6.png);
}
.cat-icon.c2-7{
	background-image: url(../images/c2-7.png);
}
.cat-icon.c2-8{
	background-image: url(../images/c2-8.png);
}
.cat-icon.c2-9{
	background-image: url(../images/c2-9.png);
}
.cat-icon.c2-10{
	background-image: url(../images/c2-10.png);
}
.cat-icon.c2-11{
	background-image: url(../images/c2-11.png);
}
.cat-icon.c2-12{
	background-image: url(../images/c2-12.png);
}
.cat-icon.c2-13{
	background-image: url(../images/c2-13.png);
}
.cat-icon.c2-14{
	background-image: url(../images/c2-14.png);
}


/***/
.drop-nav{
	display: none;
	position: absolute;
	left:0;
	/*top:85px;*/
	width:100%;
	min-width: 1200px;
	box-sizing: border-box;
	background-color: #ffffff;
	z-index:399;

}
.drop-nav.in-search{
	box-shadow: 4px 4px 15px #e2e1e1;
}
.drop-nav .drop-nav-con{
	width:1200px;
	margin:0 auto;
	padding:50px 0;

}
.drop-nav .drop-nav-con > i.sig {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    top: 0px;
    left: 502px;
    transform: translateY(-100%);
    transition: all .4s ease-out;
}

.drop-nav .drop-nav-con .nav-wrap{
	display: none;
	transform:translateY(10px);
	transition:all .5s ease-out;
}
.drop-nav .drop-nav-con .nav-wrap.active{
	display: flex;
	opacity: 0;
}
.drop-nav .drop-nav-con .nav-wrap.ani{
	transform:translateY(0px);
	opacity: 1;
}
.drop-nav .drop-nav-con .about-nav-wrap{
	justify-content: center;
	flex-wrap:wrap;
	width:1100px;
	margin: 0 auto;
}
.drop-nav .drop-nav-con  .about-nav-wrap dl{
	display: flex;
	flex-direction: column;
	margin:0 10px;
}
.drop-nav .drop-nav-con .about-nav-wrap dl dt{
	color: #333336;
    font-size: 16px;
    border-bottom: 1px solid #e7e7e7;
    padding:0 30px 15px 0;
}
.drop-nav .drop-nav-con .about-nav-wrap dl dd{
	display: flex;
	flex-direction: column;
}
.drop-nav .drop-nav-con dl dd > a{
	padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333336;
}
.drop-nav .drop-nav-con dl dd > a:hover{
	background-color: #edf1fa;
}


.product-nav-wrap{
	

	justify-content: center;
	flex-wrap:wrap;
	width:1000px;
	margin:0 auto 50px auto;
}

.drop-nav .drop-nav-con .product-nav-wrap a{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
	margin:0 30px;

}
.drop-nav .drop-nav-con .product-nav-wrap a:hover{
	color: #293c98;
}
.drop-nav .drop-nav-con .product-nav-wrap a > .iconfont{
	font-size: 32px;
	margin-bottom: 10px;
}



.drop-nav .drop-nav-con .support-nav-wrap{

	justify-content: center;
	flex-wrap:wrap;
	width:1200px;
}
.drop-nav .drop-nav-con  .support-nav-wrap dl{
	display: flex;
	flex-direction: column;
	margin:0 30px 30px 30px;
}
.drop-nav .drop-nav-con .support-nav-wrap dl dt{
	color: #333336;
    font-size: 16px;
    border-bottom: 1px solid #e7e7e7;
    padding:0 30px 15px 0;
}
.drop-nav .drop-nav-con .support-nav-wrap dl dd{
	display: flex;
	flex-direction: column;
}


.header-main.header-main-mini{
	height:466px;
}

.study-section ul,news-section ul{
	padding-left: 20px;
}



/******/
.contact-wrap{
	margin-top: 40px;
	padding-bottom: 40px;
}
.contact-wrap .heading > h5{
	font-size: 24px;
}

.contact-wrap .block-container{
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	z-index:9;
}
.contact-wrap .block-container > .info{
	width:40%;
	/*height:322px;*/
	/*display: flex;*/
	flex-direction: column;
	justify-content: space-between;
}
.contact-wrap .block-container > .info{
	width:40%;
	/*height:412px;*/
	/*display: flex;*/
	flex-direction: column;
	justify-content: space-between;
}
.contact-wrap .block-container > .info > dl{
	margin-bottom: 20px;
}
.contact-wrap .block-container > .info > dl > dt{
	font-size:16px;
	color:#000000;
	line-height: 1.3;
	letter-spacing: 2px;
}
.contact-wrap .block-container > .info.en > dl > dt{
	font-size: 12px;
}
.contact-wrap .block-container > .info > dl > dd{
	font-size: 16px;
	color:#949393;
	line-height: 1.5;
	padding-top: 12px;
}
.contact-wrap .block-container > .info.en > dl > dd{
	font-size: 12px;
}
.contact-wrap .block-container > .info > .site-info{
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	color:#949393;
}
.contact-wrap .block-container > .info > .site-info a{
	font-size: 16px;
	color:#949393;
	text-decoration: none;
}
.contact-wrap .block-container > .info > .site-info a:hover{
	text-decoration: underline;
}
.contact-wrap .block-container > .map{
	width:45%;
	height:347px;
	background-color: #ccc;
	border:1px solid #0794ff;
	box-sizing: border-box;
}

.contact-adv-wrap{
	background-color: #f3f3f3;
	padding:50px 0 100px;
}

.contact-adv-wrap .heading > h5{
	width:100%;
	font-size: 24px;
	text-align: center;
}
.contact-adv-wrap .block-container{
	margin-top: 40px;
}
.contact-adv-wrap .adv-list{
	width:100%;
	display: flex;
	justify-content: space-between;
}
.contact-adv-wrap .adv-list a{
	display: flex;
	justify-content: center;
	align-items: center;
	width:288px;
	height:130px;
	box-shadow: 0px 0px 5px #ccc;
	font-size: 16px;
	font-weight: 400;
	background-color: #ffffff;
	color:#13227a;
}
.contact-adv-wrap .adv-list a > h6{
	display: flex;
	align-items: center;
	transform: translateY(0);
	transition: transform .3s ease-out;
	font-weight: normal;
}
.contact-adv-wrap .adv-list a:hover > h6{
	transform: translateY(-5px);
}
.contact-adv-wrap .adv-list a > h6 > .iconfont{
	font-size: 28px;
	margin-right: 10px;
}


.advisory-wrap{
	margin-top: 40px;
}
.advisory-wrap .block-container{
	display: flex;
    justify-content: center;
    padding-bottom: 120px;
}
.form-group.radio-group{
	display: flex;
}
.form-group.radio-group dl{
	display: flex;
	margin-right: 45px;
}
.form-group.radio-group dl dt{
	margin-right: 5px;
}

.advisory-wrap .form-tip{
	color:#2366ee;
	font-size: 14px;
	margin:20px 0;
}

.form-item.input-item{
	margin:8px 0;
}
.form-item.input-item dl{
	display: flex;
}
.form-item.input-item dl > dt{
	width:60px;
	display: flex;
	justify-content:space-between;
	align-items: center;
}
.advisory-wrap > .block-container.en .form-item.input-item dl > dt{
	width:80px;
}


.form-item.input-item dl > dd{
	flex:1;
	padding-left: 25px;
	box-sizing: border-box;
}
.form-item.input-item dl > dd > input{
	width:500px;
	height:35px;
	border:1px solid #ccc;
	padding:0 8px;
}
.form-item.input-item dl > dd > textarea{
	width:500px;
	height:85px;
	border:1px solid #ccc;
	padding:8px;
}
.form-item.input-item dl > dd > span{
	margin-left:10px;
	color:#ccc;
}
.form-item.input-item.captcha-box input{
	width:300px;
}
.form-item.input-item.captcha-box dd{
	display: flex;
	align-items: center;
}

.btn-captcha{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left:20px;
	font-size: 13px;
	color:#ccc;
}

.form-item.action{
	margin-top: 40px;
}

.btn-submit{
	background-color: #2366ee;
	color:#ffffff;
	font-size: 14px;
	padding:10px 55px;
}
.btn-reset{
	background-color: #404752;
	color:#ffffff;
	font-size: 14px;
	padding:10px 55px;
}



/*****/
.investor-contact-wrap{
	margin-top: 40px;
	padding-bottom: 40px;
}
.investor-contact-wrap .heading > h5{
	font-size: 24px;
}
.investor-contact-wrap .block-container{
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	z-index:9;
}
.investor-contact-wrap .block-container > .info{
	width:40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.investor-contact-wrap .block-container > .info > .t1{
	padding-bottom: 20px;
	border-bottom:1px solid #ccc;
	line-height: 2;
	font-size: 14px;
	color:#414853;
}
.investor-contact-wrap .block-container > .info > .t2{
	padding-top: 20px;
	line-height: 2;
	font-size: 14px;
	color:#414853;
}
.investor-contact-wrap .block-container > .info > .t2 img{
	width:150px;
}
.investor-contact-wrap .block-container > .map{
	width:46%;
	background-color: #ccc;
	border:1px solid #0794ff;
	box-sizing: border-box;
}


/*****/
.header-top{
	position: relative;
}
.header-top .top{
	position: relative;
	width:100%;
	display: flex;
	padding: 20px 0;
	background-color: #f4f4f4;
}
.header-top > .top > .nav{
	flex: 1;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    justify-content: flex-end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    padding-right: 45px;
}
.header-top > .top > .nav > a{
	margin-left: 20px;
    color: #000000;
    font-size: 14px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255,255,255,0);
    transition: all .3s;
}

/*****/
.search-wrapper{
	width:1000px;
	margin:0 auto;
	padding-top: 80px;
}
.search-wrapper  .heading{
	width:100%;
}
.search-wrapper  .heading form{
	width:100%;
}
.search-wrapper  .heading  .search-box{
	display: flex;
	width:100%;
}
.search-wrapper  .heading  .search-box > input{
	flex:1;
	background-color: #efefef;
	border:1px solid #ccc;
	border-radius: 4px;
	color:#000000;
	box-sizing: border-box;
	padding:0 10px;
}
.search-wrapper  .heading  .search-box > a.btn-search{
	display: flex;
	justify-content: center;
	align-items: center;
	width:50px;
	height:50px;
	border-radius: 100%;
	color:#ffffff;
	margin-left: 20px;
	background-color: #037abc;
}
.search-wrapper  .heading  .search-box > a.btn-search > span{
	font-size: 20px;
}
.search-wrapper .block-container{
	margin-top: 50px;
}
.search-wrapper .block-container dl{
	margin-bottom: 50px;
}
.search-wrapper .block-container dl > dt{
	
	border-bottom: 1px solid #cccccc;
	padding:10px 0;
	
}
.search-wrapper .block-container dl > dt > h6{
	font-size: 16px;
	color:#000000;
	line-height: 1.5;
	font-weight: 800;
	border-left:4px solid #026ed2;
	box-sizing: border-box;
	padding-left: 15px;
}
.search-wrapper .block-container dl > dd{
	padding-top: 20px;
	line-height: 2;
}
.search-wrapper .block-container dl > dd li{
	margin:10px 0;
}
.search-wrapper .block-container dl > dd a{
	text-decoration: none;
}
.search-wrapper .block-container dl > dd a:hover{
	border-bottom: 1px solid #000000;
}
.search-wrapper .block-container dl > dd a > .hl{
	color:red;
}



.page-link{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.page-link a{
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid #ccc;
	width:auto;
	min-width: 34px;
	height:34px;
	margin:0 3px;
	font-size: 13px;
}

.page-link a.cur{
	background-color: #e7e7e7;
}

.page-link a:hover{
	background-color: #e7e7e7;
}

.btn-sub-close{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:48px;
	background-color: #2f3d4a;
	color:#ffffff;
	font-size: 18px;
	text-align: center;
    line-height: 48px;
	z-index:199;
}



/***/
.pop-modal{
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background-color: rgba(0,0,0,.6);
	z-index:599;
}
.pop-modal.flex{
	display: flex;
	
}

.pop-modal > .pop-modal-con{
	width:490px;
	height:auto;
	background-color: #ffffff;
}
.pop-modal > .pop-modal-con > .head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:100%;
	height:40px;
	background-color: #2366ee;
	color:#ffffff;
	padding:0 12px;
	box-sizing: border-box;
	font-size: 14px;
}
.pop-modal > .pop-modal-con > .head > a{
	color:#ffffff;
	font-size: 12px;
}
.pop-modal > .pop-modal-con > .content{
	padding:20px;
	box-sizing: border-box;
}
.pop-modal > .pop-modal-con > .content .form-item{
	display: flex;
	align-items: center;
	margin:10px 0;
}
.pop-modal > .pop-modal-con > .content .form-item > dt{
	width:100px;
	text-align: right;
	
	font-size: 14px;
}
.pop-modal > .pop-modal-con > .content .form-item > dd{
	flex:1;
}
.pop-modal > .pop-modal-con > .content .form-item > dd > input{
	width:100%;
	border:1px solid #dedede;
	border-radius: 4px;
	padding:8px;
	font-size: 14px;
}
.pop-modal > .pop-modal-con > .content .form-item.captcha > dd{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.pop-modal > .pop-modal-con > .content .form-item.captcha > dd > input{
	width:150px;
	margin-right: 10px;
}
.pop-modal > .pop-modal-con > .content .form-item.captcha > dd > a{
	display: flex;
	align-items: center;
}
.pop-modal > .pop-modal-con > .content .form-item.gender > dd{
	display: flex;
	align-items: center;
}
.pop-modal > .pop-modal-con > .content .form-item.gender > dd span{
	display: flex;
	align-items: center;
	margin-right: 10px;
}
.pop-modal > .pop-modal-con > .content .form-item.gender > dd span > input{
	margin-right: 5px;
}
.pop-modal > .pop-modal-con > .content .form-item label{
	font-size: 14px;
}
.pop-modal > .pop-modal-con > .content .form-item input[type=radio]{
	visibility: inherit;
	-webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    outline: 0;
}
.pop-modal > .pop-modal-con > .foot{
	
	text-align: center;
	padding-bottom: 50px;
}
.pop-modal > .pop-modal-con > .foot > a.btn{
	background-color: #000000;
}