@charset "UTF-8";
/* css初始化 */
*{
    margin:0;
    padding:0;
}
body{
    font:16px "microsoft yahei",Arial,Helvetica,sans-serif;
    color:#2b2b2b;
}
@media (min-width: 1400px){
    .container-fluid{
        width:1400px;
    }
}
@media (max-width: 1399px){
    .container-fluid{
        width:100%;
    }
}

@media (max-width: 767px){
    body{
        font-size:14px;
    }
}
p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd{
    list-style:none;
}
a{
    color: #2b2b2b;
    text-decoration:none;
}
a:hover{
    text-decoration:none;
    color:#006226;
}
a:focus{
    text-decoration:none !important;
}
.clear{clear:both}

/* 头部导航 */
/* logo */
header .header {
    width:100%;
    position: fixed;
    top:35px;
    left:0;
    z-index:50;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
header .logo {
    position: relative;
    width:20%;
}
header .logo .img2{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

/* 导航 */
header .nav {
    width:60%;
}
header .nav ul{
    height:65px;
}
header .nav ul li{
    float: left;
    padding:30px 0 20px 0;
    padding-right:3.5%;
    display: inline-block;
}
header .nav ul li a{
    color:#fff;
    font-size: 18px;
}
header .header .nav .line{
    height:1px;
    width:95%;
    background:#ddd;
    transition: all 0.5s;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
}

/* 导航电话 */
header .head-tel{
    padding:30px 0 20px 0;
    text-align: right;
    padding-left:30px;
    position: relative;
}
header .head-tel img{
    position: absolute;
    top:32px;
    left:0;
}
header .head-tel span{
    color:#fff;
    font-size: 18px;
}
header .head-tel .tel2{
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}


header .header.on{
    background-color:#fff;
    box-shadow: 0 0 10px #eee;
    top: 0;
}
header .header.on .logo .img1{
    display: none;
}
header .header.on .head-tel .tel1{
    display: none;
}
header .header.on .logo .img2{
    opacity: 1;
}
header .header.on .head-tel .tel2{
   opacity: 1;
}
header .header.on .nav ul li a{
    color:#2b2b2b !important;
}
header .header.on .nav ul li .t:hover{
    color:#006226 !important;
}
header .header.on .head-tel span{
    color: #2b2b2b !important;
}
header .header.on:hover{
    box-shadow: none !important;
}

header .pc-hbg{
    background-color: #fff;
    width: 100%;
    height: 170px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
    display: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1)
}


header .header.cur .logo .img1{
    display: none;
}
header .header.cur .head-tel .tel1{
    display: none;
}
header .header.cur .logo .img2{
    opacity: 1;
}
header .header.cur .head-tel .tel2{
   opacity: 1;
}
header .header.cur .nav ul li a{
    color:#2b2b2b !important;
}
header .header.cur .head-tel span{
    color: #2b2b2b !important;
}
header .header.cur .nav .line{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
}
header .header.cur .nav ul li .t:hover{
    color:#006226 !important;
}

/* 二级导航 */
header .header .nav .one{
    position: relative;
}
header .header .nav .one .two{
    position: absolute;
    left:-170px;
    padding:20px 0 0 0;
    top: 70px;
    display: none;
    min-width:800px;
}
header .header .nav .one .two a{
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    padding: 5px 9px;
}
header .header .nav .one .two .tt:hover{
    color:#006226 !important;
}

header .nav ul li:nth-child(2) .two{
    left:-70px !important;
}


header .nav ul li>a:hover{
    color:#fff;
    font-weight: bold;
}


@media (max-width: 1360px){
    header .nav ul li{
        padding-right:3%;
    }
}
@media (max-width: 1200px){
    header .nav ul li a{
        font-size: 16px;
    }
}

/* 手机端头部 */
.m-header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;
    background:#fff;
    z-index:99;
    display: none;
}
.m-header .m-logo{
    width:200px;
    line-height: 60px;
    margin-left:10px;
}
.m-header .m-logo img{
    width:100%;
}
.m-header .m-nav{
    position: absolute;
    left:-100vw;
    top:60px;
    width:70%;
    height:calc(100vh - 80px);
    background:#fff;
    box-shadow: 0 0 10px #eee;
    z-index:999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding:20px;
    overflow-y: auto;
}
.m-header .m-nav.show{
    left:0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.m-header .m-nav ul.m-one>li{
    font-size: 16px;
    border-bottom:1px solid #ddd;
    padding:10px 0;
    position: relative;
}
.m-header .m-nav ul.m-one>li i{
    position: absolute;
    top:15px;
    right:0;
    font-size: 14px;
    color:#006226;
}
.m-header .m-nav ul li.m-er ul.m-er-list{
    margin:10px 0 0 0;
    display: none;
}
.m-header .m-nav ul li.m-er ul li{
    font-size: 14px;
    padding:4px 0;
}


.m-header .m-btn{
    position: absolute;
	top: 15px;
	right: 10px;
	width: 44px;
	height: 44px;
	cursor: pointer;
}
.m-header .m-btn span {
	width: 25px;
	height: 3px;
	background: #006226;
	display: block;
    margin: 20px 0 0 13px;
    border-radius: 3px;
	position: relative;
	-webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}

.m-header .m-btn span:before,
.m-header .m-btn span:after {
	content: '';
	width: 25px;
    height: 3px;
    border-radius: 3px;
	background: #006226;
	position: absolute;
	left: 0;
	-webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}

.m-header .m-btn span:before {
	top: -8px;
}

.m-header .m-btn span:after {
	bottom: -8px;
}
.m-header .m-btn.active span {
	background: transparent;
	margin-left: 10px;
	color:#fff;
}

.m-header .m-btn.active span:before {
	transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
	background:#006226;
}

.m-header .m-btn.active span:after {
	transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
	background:#006226;
}


@media (max-width: 992px){
    header{
        display: none;
    }
    .banner{
        margin-top:60px;
    }
    .m-header{
        display: block;
    }
}

/* 底部 */
footer{
    background:url(../img/foot-bg.jpg) no-repeat;
    background-size: 100% 100%;
    padding:90px 0 50px 0;
}
footer .footer .foot-menu{
    width:20%;
    float:left;
}
footer .footer .foot-menu .foot-box h1{
    font-size: 18px;
    font-weight: bold;
    color:#fff;
    margin:0 0 20px 0;
}
footer .footer .foot-menu .foot-box ul{
    width:40%;
    float:left
}
footer .footer .foot-menu .foot-box ul li{
    padding:3px 0;
}
footer .footer .foot-menu .foot-box ul li a{
    font-size: 14px;
    color:#fff;
}
footer .footer .foot-contact{
    width:40%;
    text-align: right;
    color:#fff;
}
footer .footer .foot-contact .foot-tel {
    margin-top:10px;
}
footer .footer .foot-contact .foot-tel img{
    position: relative;
    top:-10px;
    right:5px;
}
footer .footer .foot-contact .foot-tel strong{
    font-size: 40px;
}
footer .footer .foot-contact .foot-add{
    font-size: 14px;
}
footer .footer .foot-contact .er{
    margin-top:20px;
}
footer .foot-bottom{
    margin-top:20px;
    color:#fff;
}
footer .foot-bottom a{
    color:#fff;
}
footer .foot-bottom p{
    padding:30px 0 0 0;
    border-top:1px solid rgba(66,66,66,0.5);
}
@media (max-width: 992px){
    footer{
        padding:30px 0;
    }
    footer .footer .foot-contact{
        width:100%;
        text-align: center;
    }
}

.m-foot{
    display: none;
    width:100%;
    background:#006226;
    position: fixed;
    bottom:0;
    left:0;
    z-index:999;
}
.m-foot ul{
    overflow: hidden;
    margin:0;
}
.m-foot ul li{
    float: left;
    width:25%;
    height:50px;
    line-height: 50px;
    text-align: center;
    border-right:1px solid rgba(255,255,255,0.5);
}
.m-foot ul li:last-child{
    border-right:none;
}
.m-foot ul li a{
    color:#fff;
}
/* 手机底部 */
@media (max-width: 992px){
    footer{
        margin-bottom:30px;
    }
    .m-foot{
        display: block;
    }
}

/* 分页 */
.page-box{
    margin:50px 0;
    text-align: center;
}
.page-box .pagination{
    overflow: hidden;
}
.page-box .pagination a{
    display: block;
    float: left;
    padding:8px 20px;
    background:#F5F5F5;
    border-radius: 3px;
    text-align: center;
    margin:0 3px 0 0;
}
.page-num-current{
    background:#006226 !important;
    color:#fff;
}
.page-num-current:hover{
    color:#fff;
}
span.page-num{
    display: none;
}
@media (max-width: 992px){
    .page-box .pagination a{
        padding:2px 7px;
    }
}