@charset "UTF-8";

/**************** main ****************/
.container{
    width: 85%;
    margin: auto;
}
@media (max-width: 1024px){
    .container{
        width: 92%;
    }
}
@media (max-width: 768px){
    .container{
        width: 94%;
    }
}
/**************** 头部 ****************/
.header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,1);
    z-index: 100;
    overflow: visible;
    min-height: inherit;
}
.header-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 102px;
    line-height: 102px;
}
.header-logo{
    width: 22%;
    height: 100%;
    position: relative;
    min-height: inherit;
}
.header-logo a{
    position: static;
    width: 100%;
    height: 100%;
}
.header-logo img{
    width: 100%;
    vertical-align: middle;
}
.header-nav-btn{
    display: none;
    width: 20%;
    height: 100%;
    text-align: right;
}
.header-nav-btn div{
    display: inline-block;
    vertical-align: middle;
}
.header-nav-btn em{
    display: block;
    width: 35px;
    height: 3px;
    margin-bottom: 4px;
    background-color: #272727;
}
.header-nav-btn em:last-child{
    margin-bottom: 0;
}
.header-nav{
    width: 60%;
}
.header-nav ul{
    display: flex;
}
.header-nav ul li{
    width: calc(100%/6);
}
.header-nav ul li a{
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #414141;
    text-align: center;
    z-index: 20;
}
.header-nav ul li:hover a{
    color: #fff!important;
    background-color: #b43300;
}
.header-nav-active{
    background-color: #b43300;
    color: #fff!important;
}
.mobile-nav{
    position: fixed;
    width: 70%;
    height: 100%;
    top: 0;
    right: -100%;
    background-color: #fff;
    z-index: 9999;
    transition: all .6s;
}
.close{
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.close img{
    display: block;
    width: 25px;
    margin: auto;
}
.mobile-list{
    width: 100%;
}
.mobile-list>div{
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mobile-list>div>a{
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    text-align: center;
}
.navv{
    right: 0;
}
.menuBox{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 888;
}
@media (max-width: 1024px){
    .header-box{
        height: 70px;
        line-height: 70px;
    }
    .header-logo{
        width: 50%;
    }
    .header-nav-btn{
        display: block;
    }
    .header-nav{
        display: none;
    }
}
@media (max-width:768px){
    .header{
        height: 66px;
    }
    .logo{
        width: 260px;
        padding: 10px 0;
    }
    .header-nav-btn em{
        width: 20px;
        height: 2px;
        margin-bottom: 3px;
    }
}
/**************** 底部 ****************/
.footer{
	background-color: #3c3c3c;
}
.footer-box{
	padding: 68px 0 52px;
}
.footer-logo{
	float: left;
	width: 30%;
	margin-right: 15%;
}
.footer-logo img{
	display: block;
	width: 100%;
	margin-bottom: 28px;
}
.footer-logo p{
	color: #dfdfdf;
	font-size: 16px;
}
.footer-contact{
	float: left;
	width: 25%;
}
.footer-contact-li{
	width: 100%;
	margin-bottom: 16px;
}
.footer-contact-li:last-child{
	margin-bottom: 0;
}
.footer-contact img{
	float: left;
	display: block;
	width: 38px;
}
.footer-contact p{
	float: right;
	width: calc(100% - 46px);
	font-size: 16px;
	line-height: 32px;
	color: #dfdfdf;
}
.footer-nav{
	float: left;
	width: 22%;
}
.footer-nav-li{
	float: left;
	width: 49%;
	margin-right: 2%;
}
.footer-nav-li:last-child{
	margin-right: 0;
}
.footer-nav-li p{
	color: #dfdfdf;
	font-size: 16px;
	line-height: 40px;
}
.footer-nav-li a{
	display: block;
	color: #dfdfdf;
	line-height: 30px;
}
.footer-qr{
	float: left;
	width: 8%;
}
.footer-qr img{
	display: block;
	width: 100%;
}
.footer-copyright{
	border-top: 1px solid #7d7d7d;
}
.footer-copyright-box{
	padding: 16px 0;
	line-height: 24px;
	color: #dfdfdf;
}
.footer-copyright-box a{
	color: #dfdfdf;
}
@media (max-width: 1024px){
	.footer-logo{
		width: 50%;
		margin-right: 5%;
	}
	.footer-logo img{
		width: 100%;
		margin-bottom: 28px;
	}
	.footer-logo p{
		font-size: 14px;
	}
	.footer-contact{
		width: 45%;
	}
	.footer-nav{
		width: 50%;
		margin: 20px 5% 0 0;
	}
	.footer-qr{
		width: 20%;
		margin-top: 20px;
	}
}
@media (max-width: 768px){
	.footer-box{
		padding: 44px 0 36px;
	}
	.footer-logo{
		width: 100%;
		margin-right: 0%;
	}
	.footer-logo img{
		margin-bottom: 12px;
	}
	.footer-logo p{
		font-size: 14px;
	}
	.footer-contact{
		width: 100%;
		margin-top: 20px;
	}
	.footer-contact-li{
		margin-bottom: 8px;
	}
	.footer-contact img{
		float: left;
		display: block;
		width: 24px;
	}
	.footer-contact p{
		width: calc(100% - 32px);
		font-size: 14px;
		line-height: 24px;
	}
	.footer-nav{
		display: none;
	}
	.footer-qr{
		display: none;
	}
	.footer-copyright-box{
		padding: 10px 0;
		line-height: 20px;
		text-align: center;
	}
}