* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

p {
    font-size: 14px;
    margin: 0;
}

ul,
li {
    list-style: none
}

.fl {
    float: left
}

.fr {
    float: right
}

.clear {
    clear: both
}

input {
    outline: none
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 1270px;
    margin: 0 auto;
}

.container::before,
.container::after {
    display: none;
}

body,
html {
    background: #fff;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", microsoft yahei;

}


/*导航*/
.navbar {
    transition: 1s;
    left: 0;
    right: 0;
    top: 0px;
    position: fixed;
    margin-bottom: 0;
    z-index: 9999;
    border-radius: 0;
    border: none;
    display: -ms-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    background: rgba(0,0,0,.5);
}
.navbar::before,.navbar::after{
    display: none;
}
.nav-top{
    background: #015aaa;
}
.nav-top .navbar-brand{
    background: #fff;
}
.nav-top .navbar-right>p{
    visibility: visible;
}
.navbar-brand{
    width: 22%;
    padding:10px 50px;
    height: auto;
    line-height: 30px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.navbar-right{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 74%;

}
.navbar-right>p{
    visibility: hidden;
}
.navbar-right>p>small{
    font-size: 15px;
    color: #fff;
}
.navbar-right>p>small>i{
    padding-right: 5px;
}
.navbar-right>p>span{
    font-size: 18px;
    color: #fff;
}


.navbar-nav {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-right: 20%;
}
.navbar-nav>li>a {
    color: #fff;
    transition: .5s;
    font-size: 16px;
    padding: 10px 20px ;
    display: inline-block;
}
.navbar-nav>li.active>a{
    font-weight: bold;
    color: #f00;
}
.navbar-nav>li>hr{
    width: 0px;
    height: 2px;
    background: #f00;
    border: none;
    margin: 0 auto;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.navbar-nav>li.active>hr{
    width: 30px;
}
.navbar-nav>li:hover>hr{
    width: 30px;
    background: #fff;
}




.navbar-right>i {
    display: none;
}




/* banner */
.carousel-control.left,
.carousel-control.right {
    background: none;
    top: calc(100% - 50% - 60px)
}

.carousel-control>span {
    font-size: 60px;
    color: #fff;

}



.title>h3{
    font-size: 30px;
    font-weight: bold;
    color: #000;
    border-bottom: 4px solid #f00;
    display: inline-block;
}
.title>p{
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

.application{
    padding: 80px 0;
}
.application ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin : 50px 0;
}
.application ul>li{
    width: 50%;
}
.in-app-img{
    position: relative;
    overflow: hidden;
}
.in-app-img img{
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.application ul>li:hover .in-app-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.in-app-con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    word-wrap: break-word;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.application ul>li:hover .in-app-con{
    opacity: 1;
}
.in-app-con>h4{
    text-align: center;
    width: 80%;
}
.in-app-con>h4>p{
    font-size: 16px;
    color: #fff;
}
.in-app-con>h4>hr{
    border: none;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 10px 0;
}
.in-app-con>h4>span{
    font-size: 16px;
    color: #fff;
}

.in-app-p{
    text-align: center;
    font-size: 16px;
    
}
.in-app-p>span{
    border-bottom: 2px solid #f00;
    padding: 0 10px;
    display: inline-block;
}








.in-about{
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}
.in-about-bg{
    background: url(../img/about-bg.jpg) no-repeat;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.in-ab-con{
    width: 60%;
    margin-left: 40%;
    background: #fff;
    padding: 80px 50px;
}
.in-ab-con>h4{
    font-size: 20px;
    letter-spacing: 2px;
    display: inline-block;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}
.in-ab-con>p{
    font-size: 14px;
    color: #999;
    line-height: 26px;
    padding-left: 30px;
    margin: 30px 0 ;
}
.in-ab-con>p>span{
    font-weight: bold;
    color: #000;
}
.in-ab-con>a{
    display: inline-block;
    padding: 5px;
    font-size: 12px;
    color: #000;
    border: solid 1px #000;
    margin-left: 30px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.in-ab-con>a>i{
    padding-left: 5px;
}
.in-ab-con>a:hover{
    background: #000;
    color: #fff;
}





.in-pro{
    padding: 120px 0;
}
.in-pro>div{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.in-pro-left{
    width: 48%;
}


.main{ padding:20px 0; margin: 160px auto 0; width: 100%;}
.numCount ul{display: flex;flex-flow: row wrap;justify-content: space-between;}
.numCount li{width: 33%;}
.numCount li .numU{ line-height:1.3;}
.numCount li .numCX{ font-size:30px; color:#f00;font-weight: bold;}
.numCount li .numU .unitC{font-size:100%; line-height: 1.3; margin-left: 0.3em;}
.numCount li .numU sup{vertical-align: top;}
.numCount li .numU sub{vertical-align:baseline;}
.numCount li .numU small{font-size: 30px;font-weight: bold;color: #f00;}
.num-img{
    width: 40px;
    margin-bottom: 20px;
    height: 50px;
}
@media (max-width:800px){
	.numCount li .numCX{ font-size:36px; }
}

@media (max-width:480px){
	.numCount{ font-size:0.5vw;}
}

.in-pro-right{
    width: 48%;
    
}
.w-imgText{ overflow:hidden;}
.w-imgText ul,.w-imgText li{ list-style:none; padding:0 0 50px; margin:0;}
.w-imgText .item{ position:relative;}
.w-imgText .item > a{ display:block; position:absolute; left:0; top:0; right:0; bottom:0; z-index:2;}
.w-imgText .img-count-in{ position:absolute; top:0; left:0; right:0; bottom:0; overflow:hidden;*height:100%; }
.w-imgText .textB{ line-height:1.7;}
.w-imgText .textB .bg_x{ position:absolute; left:0; right:0; top:0; bottom:0; z-index:0;}
.w-imgText .text_x{ position:relative; z-index:1;}
.w-imgText .igt_page{ text-align:center; display:none; z-index:5;}
.w-imgText .igt_page .swiper-pagination-bullet{ border-radius:0; -webkit-border-radius:0; width:1em; height:5px; background:#999; opacity:0.5;}
.w-imgText .igt_page .swiper-pagination-bullet-active{ background:#f80; opacity:1;}

.w-imgText1{position:relative;}
.w-imgText1 .item{ padding-bottom:8px; padding-left:1px;}
.w-imgText1 .img{ width:100%; overflow:hidden;border: solid 1px #666;}
.w-imgText1 .img img{width:100%;transition:all 0.5s; -webkit-transition:all 0.5s; }
.w-imgText1 li:hover .img img{ transform:scale(1.07); -webkit-transform:scale(1.07);}
.w-imgText1 .textB{ position:absolute; left:0; bottom:-40px; width:460px;}

.w-imgText1 .text_x .tt_h{font-size:18px; color:#000; line-height:1.5; margin-bottom:0.5em;}
.w-imgText1 .text_x p{color:#666;}
.w-imgText1 .igt_btn{ position:absolute; z-index:9; right:0; bottom:50px; width:81px; height:50px;}
.w-imgText1 .igt_btn .igt_prev,.w-imgText1 .igt_btn .igt_next{ position:absolute; cursor:pointer; top:0; width:40px; height:35px;background-color:#dadada; }
.w-imgText1 .igt_btn .igt_prev{ left:0;}
.w-imgText1 .igt_btn .igt_next{ right:0;}
.w-imgText1 .igt_btn .igt_prev:before,.w-imgText1 .igt_btn .igt_next:before{ content: ''; position:absolute; width:10px; height:10px; text-align:center; top:50%; margin-top:-5px; left:50%; margin-left:-5px;}
.w-imgText1 .igt_btn .igt_prev:before{background:url(../img/prev2.png) no-repeat center;}
.w-imgText1 .igt_btn .igt_next:before{background:url(../img/next2.png) no-repeat center;}
.w-imgText1 .igt_btn .igt_prev:hover,.w-imgText1 .igt_btn .igt_next:hover{background-color:#666;}

@media (max-width:1200px){
    .title{ padding-left:15px;}
}
@media (max-width:860px){
    .w-imgText .igt_page{ display:block;}
	.w-imgText .igt_btn{ display:none;}
	
	.w-imgText1 .item{ padding-bottom:0;}
	.w-imgText1 .img{ width:100%;}
	.w-imgText1 .textB{ position:relative; width:100%;padding:1.2em 4% 1.5em;}
	.w-imgText1 .igt_btn{ width:auto; left:0; right:0; top:50%; margin-top:-60px;}
}

@media (max-width:640px){
	.w-imgText .igt_page .swiper-pagination-bullet{height:2px;}
}
@media (max-width:480px){
    body{font-size:4vw;}
    .title{font-size:6vw;}
	.w-imgText1 .igt_btn .igt_next, .w-imgText1 .igt_btn .igt_prev,.w-imgText3 .igt_btn .igt_next, .w-imgText3 .igt_btn .igt_prev{ width:2.5em; height:2.5em;}
	.w-imgText1 .text_x .tt_h,.w-imgText2 .text_x .tt_h,.w-imgText3 .text_x .tt_h,.w-imgText4 .text_x .tt_h,.w-imgText5 .text_x .tt_h{font-size:130%;}
}







.in-pro-app-title{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.in-pro-app-title>h3{
    font-size: 24px;
    color: #000;
}
.in-pro-app-title>p>span{
    position: relative;
    display: block;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
}
.in-pro-app-title>p>span::before{
    content:"";
    position: absolute;
    left: -66px;
    top: 10px;
    width: 60px;
    height: 1px;
    background: #999;
}
.in-pro-app-title>p>a{
    display: inline-block;
    padding: 3px 10px;
    border: solid 1px #666;
    font-size: 14px;
    color: #000;
    float: right;
    margin-top: 10px;
}
.Box {
    position: relative;
}

.Box .content {
    width: 1090px;
    margin: 0 auto;
}

.Box .Box_con {
    position: relative;
    margin-top: 50px;
}

.Box .Box_con .btnl {
    position: absolute;
}

.Box .Box_con .btn {
    display: block;
    width: 41px;
    height: 41px;
    position: absolute;
    top: 40%;
    cursor: pointer;
}

.Box .Box_con .btnl {
    background: url(../img/jtl02.png) no-repeat center;
    left: -72px;
}

.Box .Box_con .btnr {
    background: url(../img/jtr02.png) no-repeat center;
    right: -72px;
}

.Box .Box_con .btnl:hover {
    background: url(../img/jtl03.png) no-repeat center;
}

.Box .Box_con .btnr:hover {
    background: url(../img/jtr03.png) no-repeat center;
}

.Box .Box_con .conbox {
    position: relative;
    overflow: hidden;
}

.Box .Box_con .conbox ul {
    position: relative;
    list-style: none;
}

.Box .Box_con .conbox ul li {
    float: left;
    width: 350px;
    height: 400px;
    margin-left: 20px;
    overflow: hidden;

}

.Box .Box_con .conbox ul li:first-child {
    margin-left: 0;
}

.Box .Box_con .conbox ul li img {
    display: block;
    width: 350px;
    height: 360px;
    transition: all 0.5s;
    background: #eee;
}

.Box .Box_con .conbox ul li p {
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #000;
}

.Box .Box_con .conbox ul li:hover img {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

.Box .BoxSwitch {
    margin-top: 30px;
    text-align: center;
}

.Box .BoxSwitch span {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.Box .BoxSwitch span.cur {
    background: red;
}

.BoxSwitch {
    display: none;
}

.pro-btn {
    text-align: center;
}

.pro-btn>a {
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
    background: #e6212a;
    margin-top: 50px;
}








.in-honor{
    background: url(../img/honor-bg.jpg) no-repeat;
    padding: 100px 0;
    text-align: center;
    margin-top: 150px;
}
.in-honor>div>h3{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.in-honor>div>p{
    font-size: 14px;
    color: #999;
    line-height: 26px;
}
.in-honor ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 50px 0;
}
.in-honor ul>li{
    width: 20%;
    padding: 0 40px;
}
.in-honor ul>li p{
    font-size: 16px;
    color: #fff;
    padding-top: 15px;
}
.in-honor ul>li span{
    font-size: 12px;
    color: #ccc;
}
.in-honor a{
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background: #ea0001;
}
.in-honor a>i{
    padding-left: 5px;
}




.parent{
    padding: 80px 0;
}
.parent ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.parent ul>li{
    width: 32%;
    margin: 10px 0;
    border: solid 1px #ccc;
}
.parent ul>li p{
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 10px 0;
}

.in-news{
    padding: 80px 0;
}
#youdaoBanner{
	margin-top:80px;
	height:326px;
	position:relative;
}
#youdaoBanner .swiper-slide{
	width: 480px;
	padding:0 30px;
	position:relative;
}
#youdaoBanner .swiper-slide .bg{
	height: 326px;
	background-repeat: no-repeat;
    background-position: center top;
	position:relative;
	overflow:hidden;
	}
#youdaoBanner .swiper-slide .white-top{
	background:url(../img/white-top.png);
	position:absolute;
	z-index:900;
	top:0;
	left:0;
	width:100%;
	height:8px;
}
#youdaoBanner .swiper-slide .white-bottom{
	background:url(../img/white-bottom.png);
	position:absolute;
	z-index:900;
	bottom:0;
	left:0;
	width:100%;
	height:8px;}
#youdaoBanner .bg .black-mask{
	width:480px;
	height:326px;
	position:absolute;
	z-index:1;
	top:0;
	left:0;
	background:url(../img/black-mask.png);}
#youdaoBanner .bg:hover .black-mask{
	display:none;
}
#youdaoBanner .swiper-button-prev,#youdaoBanner .swiper-button-next{
	position:absolute;
	z-index:999;
	top:50%;
	left:10px;
	margin-top:-30px;
	width: 60px;
    height: 60px;
	background:url(../img/swiper-btn.png);
	cursor:pointer;
	display:none;
}
#youdaoBanner .swiper-button-next{
	background-position:0 -60px;
	left:auto;
	right:10px;}
#youdaoBanner:hover .swiper-button-prev,#youdaoBanner:hover .swiper-button-next{
	display:block;
}
#youdaoBanner .slide1 .bg{background-image:url(../img/n1.jpg);background-size: cover;}
#youdaoBanner .slide2 .bg{background-image:url(../img/n1.jpg);background-size: cover;}	
#youdaoBanner .slide3 .bg{background-image:url(../img/n1.jpg);background-size: cover;}		
#youdaoBanner .slide4 .bg{background-image:url(../img/n1.jpg);background-size: cover;}		

#youdaoBanner .swiper-slide .bg:hover{
	background: url(../images/fire.png) #015aaa 340px 210px no-repeat;
	}

#youdaoBanner .info{
	position: absolute;
	padding:30px;
	z-index:999;
    bottom: -130px;
	color:#fff;
	font-size:14px;
	padding-top:30px;
}
#youdaoBanner .info .date{
    font-size: 14px;
    margin-bottom: 16px;
}
#youdaoBanner .info h3{
	margin-bottom: 18px;
}
#youdaoBanner .info h3 a{
    color: #fff;
    font-size: 24px;
    font-weight: 500;
	text-decoration:none;
}
#youdaoBanner .info p{
	text-indent:2em;
}
#youdaoBanner .info .btn{
	margin-top: 40px;
	display:block;
    color: #fff;
    font-size: 16px;
	text-align:center;
	width:106px;
	height:42px;
    line-height: 40px;
	text-decoration:none;
	background:url(../images/link_bg.png) no-repeat;
}
#youdaoBanner .info .btn:hover{
	
	color:#000;
	background:url(../images/link_bg.png) no-repeat left -42px;
}








/* footer */
.footer{
    background: #34302f;
    padding: 50px 0;
}
.footer>div{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.foot-left>h1{
    width: 300px;
}
.foot-left>ul>li{
    display: inline-block;
    padding: 10px 30px 10px 0;
}
.foot-left>ul>li>a{
    color: #fff;
    font-size: 16px;
}
.foot-left>hr{
    width: 66%;
    height: 1px;
    background: #666;
    border: none;
}
.foot-left>p{
    font-size: 14px;
    color: #999;
    margin-top: 30px;
    margin-bottom: 5px;
}
.foot-left>a{
    font-size: 14px;
    color: #999;
}
.foot-right{
    padding-top: 50px;
}
.foot-right>ul>li{
    color: #bbb;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.foot-right>ul>li>i{
    width: 40px;
    text-align: center;
}
.foot-right>ul>li:first-of-type{
    color: #f00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.foot-right>ul>li:first-of-type>i{
    color: #bbb;
}


@media all and (max-width:1440px) and (min-width:960px) {
    .navbar-nav{
        padding-right: 10%;
    }
}



@media all and (max-width:768px) {
    .navbar-brand{
        width: 55%;
        padding: 10px 10px;
    }
    .navbar-right>p{
        display: none;
    }
    .navbar-right>i{
        display: block;
        font-size: 30px;
        color: #fff;
    }
    .navbar-right{
        width: 20%;
    }
    .navbar-nav{
        position: absolute;
        left: 0;
        top: 57px;
        width: 100%;
        padding-right: 0;
        margin: 0;
        display: none;
    }
    .navbar-nav>li,.navbar-nav>li>a{
        width: 100%;
        background: #fff;
        color: #000;
    }
    .navbar-nav>li>hr{
        display: none;
    }
    #myCarousel{
        padding-top: 56px;
    }
    .carousel-control.left, .carousel-control.right {
        background: none;
        top: calc(100% - 50% - 30px);
    }
    .container{
        width: 100%;
    }
    .in-app-p{
        text-align: left;
    }
    .in-ab-con{
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    .in-pro-left{
        width: 100%;
    }
    .main{
        margin: 0 auto;
    }
    .num-img{
        margin: 0 auto;
    }
    .item{
        text-align: center;
    }
    .numCount li .numU{
        height: 50px;
        line-height: 50px;
    }
    .numCount li .numCX{
        font-size: 24px;
    }
    .in-pro-right{
        width: 100%;
    }
    .w-imgText ul, .w-imgText li{
        padding: 0 0 20px;
    }
    .in-honor ul>li{
        width: 48%;
        margin: 10px 0;
        padding: 0 5px;
    }
    .in-honor{
        padding: 20px 0;
    }
    .parent{
        padding: 0;
    }
    .parent ul{
        margin-top: 20px;
    }
    .parent ul>li{
        width: 48%;
    }
    .in-news{
        padding: 20px 0;
    }
    #youdaoBanner{
        margin-top: 20px;
        height: auto;
    }
    #youdaoBanner .swiper-slide{
        width: 300px;
    }
    #youdaoBanner .swiper-slide .bg{
        height: 200px;
    }
    #youdaoBanner .info .btn{
        margin-top: 10px;
    }
    #youdaoBanner .info h3{
        margin-bottom: 40px;
    }
    #youdaoBanner .info h3 a{
        font-size: 22px;
    }
    #youdaoBanner .info{
        padding: 24px 10px;
    }
    .foot-left{
        padding: 0 20px;
    }
    .foot-left>h1{
        width: 70%;
    }
    .foot-left>ul{
        display: none;
    }
}