/* 头部 */
.header{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: auto;
}
.header .banner{
        width: 100%;
        height: 660px;
}
.header-top{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 89px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo{
    float: left;
    margin-top: 0px;
    display: block;
    position: relative;
    height: 90px!important;
}
.logo img{
	transition: all 0.3s linear;
    width: 142px;
    display: inline-block;
}
.logo h1{
    display: inline-block;
    font-size: 24px;
    color: #fff;
    margin-left: 15px;
    font-weight: bold;
}
.nav{
	transition: all 0.3s;
    float: right;
    margin-top: 34px;
    position: relative;
}
.nav>li{
	float: left;
	position: initial;
    z-index: 40;
    margin: 0 22px;
}
.nav>li>a{
	display: block;
	padding:22px 8px;
	text-align: center;
	font-size: 14px;
    color:#ABCCFF;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.nav>li>a:hover{
    background: none;
    border-bottom: 3px solid #fff;
}
.nav>li.current a{
    /* border-bottom: 3px solid #CC0100; */
}
/* 手机导航 */

#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 50px;
	height: 46px;
	padding: 15px;
	background: #666666;
	padding: 0;
	right: 5px;
	top: 7px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    border-radius: 5px;
}
#navToggle::before {
    margin-top: -7px;
}
#navToggle::after {
    margin-top: 7px;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show span {
    opacity: 0;
}
#navToggle span, #navToggle::after, #navToggle::before {
    height: 3px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show::before {
    margin-top: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#navToggle.show::after {
    margin-top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mask{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
	display:none;
}
#mobileMenu {
    position: fixed;
    right: -250px;
    top: 0;
    margin: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1110;
    background: #fff;
}
#mobileMenu .hello {
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #F0F0F0;
	padding-left: 25px;
	position: relative;
	padding-top: 8px;
}
#mobileMenu .hello h3{
	font-size: 22px;
	color: #000;
	font-weight: bold;
	line-height: 28px;
}
#mobileMenu .hello h4{
	font-size: 14px;
	color: #000;
	line-height: 23px;
}
#mobileMenu .hello .cha{
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 15px;
	background: url(../img/cha.png) no-repeat;
}
#mobileMenu .menu a {
    display: block;
    font-size: 14px;
    padding-left: 25px;
    color: #666;
    line-height: 50px;
    border-bottom: 1px solid #E6E6E6;
}
#mobileMenu .menu a:hover{
	background-color: #005BAC;
    text-decoration: none;
    color:#fff;
}
#mobileMenu.show {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}
#page.show {
    /*-webkit-transform: translateX(200px);
    transform: translateX(200px);*/
    width: 100vw;
    height: 100vh;
}
#page {
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.show {
    display: block !important;
}
html.show, body.show {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-overflow-scrolling: auto;
    -webkit-transform: translateZ(0px);
}
@media(max-width: 991px){
    .header{
        height: auto;
    }
    .header-top{
        border-bottom: none;
    }
	.header-top .container{
		width: 100%;
	}
	.header-top{
		height: 60px;
	}
	.header-top .nav{
		display: none;
	}
	.logo img{
		width: 50px;
	}
	.logo{
		margin: 8px 0px 0px 10px;
    }
    .logo h1{
        margin-left: 10px;
    }
	#navToggle{
		display: block;
	}
}
@media(max-width: 599px){
	.logo{
        margin-left: 0px;
    }
    .logo img{
        width: 44px;
    }
    .logo h1{
        font-size: 16px;
        margin-left: 5px;
    }
}
.count{
    background: #f7f7f7;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}
.count-ul li{
    float: left;
    width: 25%;
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; */
    min-height: 32px;
    text-align: center;
    line-height: 32px;
}
.count-ul li::before{
    content: '';
    position: absolute;
    height: 32px;
    width: 1px;
    background: #dbdbdb;
    top: 50%;
    margin-top: -16px;
    right: 0px;
}
.count-ul li:last-child::before{
    background: transparent;
}
.count-ul li p{
    font-size: 18px;
    color: #666;
    margin-right: 14px;
    text-align: center;
    display: inline-block;
}
.count-ul li .num-item{
    display: inline-block;
}
.count-ul li span{
    font-style: normal;
    color: #E80100;
    font-size: 30px;
}
@media(max-width: 991px){
    .count{
        padding: 15px 0;
    }
    .count-ul li::before{
        height: 20px;
        margin-top: -10px;
    }
    .count-ul li p{
        font-size: 14px;
        margin-right: 5px;
    }
    .count-ul li span{
        font-size: 20px;
    }
}
@media(max-width: 599px){
    .count-ul li{
        width: 50%;
    }
    .count-ul li:nth-child(2)::before{
        background: transparent;
    }
    .count-ul li p{
        font-size: 12px;
    }
    .count-ul li span{
        font-size: 16px;
    }
}
/* 我们的业务 */
.public-module{
    width: 100%;
    padding-top: 60px;
}
.public-title{
    text-align: center;
    margin-bottom: 25px;
}
.public-title h2{
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
}
.public-title span{
    font-size: 16px;
    color: #666;
}
.business li{
    float: left;
    position: relative;
    margin-bottom: 10px;
}
.business li .business-bg{
    width: 100%;
}
.business-img{
    /* width: 100%; */
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    overflow: hidden;
    text-align: center;
}
.business-box{
    display: table-cell;
    vertical-align: middle;
}
.business-img img{
    transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.business-img p{
    font-size: 20px;
    color: #fff;
    margin-top: 22px;
    text-align: center;
    line-height: 22px;
}
.business li a:hover .business-img img{
	transform:rotateY(180deg);
	-ms-transform:rotateY(180deg);
	-moz-transform:rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	-o-transform:rotateY(180deg);
}
@media(max-width: 991px){
    .public-module{
        padding-top: 10px;
    }
    .public-title{
        margin-bottom: 12px;
    }
    .public-title h2{
        font-size: 16px;
        margin-bottom: 8px;
    }
    .public-title span{
        font-size: 13px;
    }
}
@media(max-width: 599px){
    .business-img img{
        width: 65px;
    }
    .business-img p{
        font-size: 16px;
        margin-top: 20px;
    }
}
/* 我们的服务 */
.sevice{
    padding-top: 20.83%;
    background: url(../img/service_bg.png) no-repeat center;
    background-size: cover;
    background-position: center;
}
.sevice img{
    margin-top: -20.83%;
    margin-bottom: 25px;
    width: 100%;
}
@media(max-width: 991px){
    .sevice img{
        margin-bottom: 5px;
    }
}
/* 案例 */
.our-case{
    margin-bottom: 60px;
}
.case li{
    margin-bottom: 10px;
}
.case li a{
    padding: 19px 13px;
    display: block;
    border: 1px solid #e6e6e6;
    text-align: center;
}
.case li a img{
    border: 1px solid #e6e6e6;
    width: 100%;
}
.case li a p{
    font-size: 18px;
    color: #333;
    margin-top: 25px;
}
.case li a:hover p{
    color: #cc0100;
}
.look-more{
    width: 120px;
    height: 38px;
    background: #cc0100;
    border-radius: 5px;
    line-height: 38px;
    text-align: center;
    display: block;
    margin: 25px auto 0;
    color: #fff;
}
.look-more:hover{
    color: #fff;
}
@media(max-width: 991px){
    .our-case{
        margin-bottom: 20px;
    }
    .case li a{
        padding: 13px 10px;
    }
    .case li a p{
        font-size: 14px;
        margin-top: 15px;
    }
}
/* 合作伙伴 */
.partner{
    width: 100%;
    background: #f7f7f7;
    padding-bottom: 60px;
}
.partner-title{
    padding-top: 40px;
}
.partner-item{
    margin-bottom: 20px;
}
.partner-item img{
    width: 100%;
}
@media(max-width: 991px){
    .partner{
        padding-bottom: 15px;
    }
    .partner-title{
        padding-top: 25px;
    }
    .partner-item{
        margin-bottom: 10px;
    }
}
/* 联系我们 */
.contact{
    position: relative;
    padding-bottom: 20.83%;
    height: 0;
    overflow: hidden;
}
.map{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.consult{
    padding: 60px 0;
}
.consult-item{
    width: 42%;
    height: 90px;
    background: #f7f7f7;
    text-align: center;
    display: table;
}
.consult-list{
    display: table-cell;
    vertical-align: middle;
}
.consult-item img{
    margin-right: 15px;
    display: inline-block;
}
.consult-item .consult-text{
    font-size: 16px;
    color: #333;
    display: inline-block;
}
/* 底部 */
.footer{
    padding-top: 30px;
    background: #06142a;
}
.footer-top{
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-left{
    margin-top: 15px;
    float: left;
}
.footer-right{
    float: right;
}
.footer-nav{
    margin-bottom: 35px;
}
.footer-nav li{
    float: left;
    margin-right: 40px;
}
.footer-nav li:last-child{
    margin-right: 0px;
}
.footer-nav li>a{
    color: #fff;
}
.footer-nav li>a:hover{
    text-decoration: underline;
}
.address{
    color: #fff;
}
.footer-contact{
    margin-right: 20px;
    color: #fff;
    line-height: 36px;
}
.wechat-code{
    text-align: center;
}
.wechat-code p{
    color: #fff;
    line-height: 18px;
    margin-top: 10px;
}
.footer-bom{
    padding: 25px 0;
    text-align: center;
    color: #fff;
}
.nation{
    text-align: center;
    margin-top: 20px;
}
.nation img{
    display: inline-block;
}
.nation p{
    display: inline-block;
}
@media(max-width: 991px){
    .consult{
        padding: 15px 0;
    }
    .consult-item{
        height: 60px;
    }
    .consult-item img{
        margin-right: 8px;
    }
    .consult-item .consult-text{
        font-size: 14px;
        line-height: 18px;
    }
    .footer{
        padding-top: 15px;
    }
    .footer-left{
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-right{
        float: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .footer-nav{
        margin-bottom: 20px;
        display: inline-block;
    }
    .footer-contact{
        line-height: 24px;
        margin-top: 20px;
    }
    .footer-bom p{
        line-height: 24px;
    }
    .footer-bom{
        padding: 10px 0;
    }
    .nation{
        margin-top: 6px;
    }
}
@media(max-width: 599px){
    .consult-item img{
        margin-left: 5px;
        width: 35px;
    }
    .consult-item{
        width: 48%;
    }
    .consult-item .consult-text{
        font-size: 12px;
    }
}
/* 关于我们 */
.public-header{
	background: #42424B;
    height: 89px;
    width: 100%;
}
.public-header .logo>h1{
    color: #333;
    font-size: 24px;
}
.public-header .nav{
    margin-top: 36px;
}
.public-header .nav>li>a{
    color: #ABCCFF;
}
.nav li.public-on a{
    color: #fff;
    border-bottom: 3px solid #CC0100;
}
.public-header .nav>li>a:hover{
    /* color: #CC0100; */
    /* border-bottom: 3px solid #CC0100; */
}
@media(max-width: 991px){
    .header{
        height: auto;
    }
	.public-header .container{
		width: 100%;
	}
	.public-header{
		height: 60px;
	}
	.public-header .nav{
		display: none;
	}
	.logo img{
		width: 50px;
	}
	.logo{
		margin: 8px 0px 0px 10px;
    }
    .public-header .logo>h1{
        font-size: 16px;
    }
}
@media(max-width: 599px){
	.logo{
        margin-left: 0px;
    }
    .logo img{
       width: 142px;
    }
    .logo h1{
        font-size: 16px;
        margin-left: 5px;
    }
}
.public-banner{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.cased-banner{
    position: relative;
    width: 100%;
}
.cased-banner .banner{
    width: 100%;
}
.public-banner img{
    width: 100%;
}
.about-us{
    position: relative;
    overflow: hidden;
    background: url(../img/about_bg.png) no-repeat center;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 40px 0;
}
.about-img{
    width: 35.1%;
    float: left;
}
.about-img img{
    width: 100%;
}
.about-info{
    width: calc(100% - 495px);
    margin-left: 80px;
    margin-top: 80px;
    color: #333;
    font-size: 16px;
    line-height: 26px;
    float: right;
}
@media(max-width: 991px){
    .about-us{
        padding: 15px 0;
    }
    .about-img{
        margin-top: 5px;
        float: none;
        width: 100%;
        text-align: center;
    }
    .about-img img{
        width: 70%;
    }
    .about-info{
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        line-height: 22px;
        margin-left: 0px;
        float: none;
    }
}
/* 联系方式 */
.contact-us{
    background: url(../img/contact_bg.png) no-repeat center;
    background-size: cover;
    background-position: center;
}
.contact-main{
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 18px;
    color: #333;
    line-height: 48px;
    text-align: center;
}
.contact-center{
    display: inline-block;
}
.contact-center p{
    text-align: left;
}
@media(max-width: 991px){
    .contact-main{
        padding-top: 10px;
        padding-bottom: 15px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 10px;
        font-size: 14px;
        line-height: 40px;
    }
}
.case-main .case li{
    margin-bottom: 38px;
}
.case-consult{
    padding-top: 20px;
}
@media(max-width: 991px){
    .case-main .case li{
        margin-bottom: 8px;
    }
    .case-consult{
        padding-top: 10px;
    }
}
.banner-main{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.banner-info{
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 44.9%;
    color: #fff;
}
.banner-info h2{
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
}
.banner-info p{
    font-size: 16px;
    line-height: 36px;
}
.cased{
    padding-top: 150px;
    text-align: center;
}
.cased img{
    width: 100%;
}
.cased-img{
    position: absolute;
    top: 31.77%;
    left: 10px;
    z-index: 999;
}
.case-cont{
    position: relative;
}
@media(max-width: 991px){
    .cased-img{
        display: none;
    }
    .cased{
        padding-top: 25px;
    }
    .banner-info{
        display: none;
    }
}
#map label{max-width:none;}
