@charset "utf-8";
@media (min-width: 1200px){
    .container {
        width: 1200px !important;
    }
}
*{
    margin:0;
    padding:0;
}
body{
    font:16px "microsoft yahei",Arial,Helvetica,sans-serif;
    color:#2b2b2b;
}
@media (max-width: 767px){
    body{
        font-size:14px;
    }
}
p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd{
    list-style:none;
}
a{
    text-decoration:none;
    color:#2b2b2b;
}
a:hover{
    text-decoration:none;
    color:#009944;
}
a:focus{
    text-decoration:none !important;
}


/* 头部 */
header .header{
    width:100%;
    height:80px;
    line-height: 80px;
    position: fixed;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
}
header .header .nav>ul{
    margin-left:15px;
}
header .header .nav>ul>li{
    float: left;
    padding:0 10px;
    position: relative;
}
header .header .nav>ul>li>a{
    display: inline;
    padding:0 0 15px 0;
    font-size: 18px;
}
header .header .nav>ul>li.active>a{
    border-bottom:3px solid #009944;
    color:#009944;
    font-weight: bold;
}
header .header .head-icon ul{
    margin:0;
}
header .header .head-icon ul li{
    float: left;
    padding:0 5px;
    color:#575757;
    position: relative;
}
header .header .head-icon ul li .hover-box{
    position: absolute;
    top:100px;
    left:-40px;
    z-index:99;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
header .header .head-icon ul li:hover .hover-box{
    opacity: 1;
    visibility:visible;
    top:80px;
}
header .header .head-icon ul li .hover-er{
    background:#fff;
    padding:5px;
}
header .header .head-icon ul li .hover-search{
    background:#fff;
    height:100px;
    width:350px;
}
header .header .head-icon ul li .hover-search .input-box{
    height:40px;
    width:250px;
    margin:25px auto;
    line-height: 40px;
    border-bottom:1px solid #ddd;
}
header .header .head-icon ul li .hover-search .input-box input{
    width:220px;
    float: left;
    height:39px;
    border:none;
}
header .header .head-icon ul li .hover-search .input-box input:-moz-placeholder {
    font-size: 14px;
    color:#999;
}
header .header .head-icon ul li .hover-search .input-box input:-ms-input-placeholder{
    font-size: 14px;
    color:#999;
}
header .header .head-icon ul li .hover-search .input-box input::-webkit-input-placeholder{
    font-size: 14px;
    color:#999;
}
header .header .head-icon ul li .hover-search .input-box button{
    width:30px;
    float: left;
    background:none;
    border:none;
    height:40px;
}
header .header .head-icon ul li .hover-er img{
    width:100px;
}
header .header .head-icon ul li .hover-er p{
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    margin:0;
}
header .header .head-icon ul li span{
    color:#009944;
}
header .header .head-icon ul li strong{
    color:#ef2020;
}

.m-btn{
    display: none;
    position: absolute;
    cursor: pointer;
    right:20px;
    top:34px;
}
.m-btn span{
    display: block;
    width:20px;
    height:2px;
    background:#3b3b3b;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span::before, .m-btn span::after{
    content:'';
    display: block;
    height:2px;
    width:20px;
    background:#3b3b3b;
    position: absolute;
	left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span:before {
	top: -8px;
}
.m-btn span:after {
	bottom: -8px;
}
.m-btn.active span {
	background: transparent;
	margin-left: 10px;
}
.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
}
.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
}
.mb-2{
    margin-bottom: 20px;
}
.pb-4{
    padding-bottom: 40px;
}
@media (max-width:1200px){
    header .header .nav>ul>li{
        padding:0 2px;
    }
    header .header .nav>ul>li>a{
        font-size: 16px;
    }
    header .header .head-icon ul li{
        font-size: 14px;
        padding:0 1px;
    }
}

@media (max-width:992px){
    .head-icon{
        display: none;
    }
    .m-btn{
        display: block;
    }
    header .logo img{
        height:35px;
    }
    header .header{
        height:70px;
        line-height: 70px;
    }
    header .header .nav{
        position: absolute;
        left:-100vw;
        top:70px;
        width:70%;
        height:calc(100vh - 70px);
        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-top:20px;
        overflow: auto;
    }
    header .header .nav li{
        width:100%;
    }
    header .header .nav ul li.active a{
        border:none;
    }
    header .header .nav.show{
        left:-15px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .header .nav ul li{
        display: block !important;
        line-height: 40px !important;
        padding:0 20px;
    }
}

/* 二级导航 */
header .header .nav ul li.one .er-nav{
    position: absolute;
    left:0;
    top:80px;
    background:#fff;
    text-align: center;
    min-width:130px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    line-height: 30px;
    text-align: left;
    border-bottom:2px solid #009944;
}
header .header .nav ul li.one .er-nav li{
    padding:0 20px;
    font-size: 14px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
header .header .nav ul li.one:nth-child(3) .er-nav{
    width:200px;
}
header .header .nav ul li.one:hover .er-nav{
    opacity: 1;
    visibility: visible;
}
header .header .nav ul li.one:hover .er-nav li{
    padding:8px 20px;
}

/* 底部 */
.index-footer{
    /*padding:20px 0;
     background:#009944; */
}
.footer{
    padding:40px 0px 20px 0px;
    background:#009944;
    overflow: hidden;
}
.footer .foot-part1 .foot-nav{
    float: left;
    width:15%;
    color:#fff;
}
.footer .foot-part1 .foot-nav:nth-child(2){
    width:19%;
}
.footer .foot-part1 .foot-nav h2{
    font-size: 20px;
    font-weight: bold;
}
.footer .foot-part1 .foot-nav ul{
    margin-top:15px;
}
.footer .foot-part1 .foot-nav ul li a{
    font-size: 14px;
    color:#fff;
    display: block;
    padding:5px 0;
}
.footer .foot-part1 .foot-contact{
    color:#fff;
    margin-top:6px;
    padding-left:0;
}
.footer .foot-part1 .foot-contact ul li{
    font-size: 14px;
    padding:5px 0;
}
.footer .foot-part1 .foot-contact ul li strong{
    font-size: 20px;
    font-weight: bold;
}
.footer .foot-part1 .foot-contact ul li>img{
    display: inline-block;
    margin-right:8px;
}
.footer .foot-part1 .foot-contact ul li span{
    font-size: 30px;
}
.footer .foot-part1 .foot-contact ul li .foot-er{
    display: inline-block;
    background:#fff;
    max-width:100px;
    padding:5px;
}
.footer .foot-part1 .foot-contact ul li .foot-er img{
    width:90px;
}
.footer .foot-part1 .foot-contact ul li p{
    font-size: 12px;
    color:#999;
    text-align: center;
}
.footer .foot-part2{
    color:#fff;
    padding:0 0 8px 0;
    margin-top:-10px;
    border-bottom:1px solid #028b3e;
}
.footer .foot-part2 h4{
    font-size: 16px;
    font-weight: bold;
    margin-top:0;
}
.footer .foot-part2 b{
    display: block;
    width:20px;
    height:2px;
    background:#fff;
}
.footer .foot-part2 ul{
    margin:0;
}
.footer .foot-part2 ul li{
    display: inline-block;
    font-size: 14px;
    margin-top:10px;
}
.footer .foot-part2 ul li a{
    color:#fff;
    font-size: 13px;
}
.footer .foot-part2 ul li:last-child span{
    display: none;
}
.footer .foot-part3 {
    padding:20px 0;
}
.footer .foot-part3 p{
    color:#fff;
    font-size: 14px;
    margin-bottom:5px;
}
.footer .foot-part3 a{
    color:#fff;
}

@media(max-width:992px){
    .index-footer{
        padding:10px 0;
    }
    .footer{
        padding:0;
    }
    .footer .foot-part2{
        padding:8px 0;
    }
    .footer .foot-part1 .foot-contact{
        padding-left:7px;
    }
    .footer .foot-part1 .foot-contact ul li strong{
        font-size: 18px;
    }
    .footer .foot-part1 .foot-contact ul li span{
        font-size: 20px;
    }
    .footer .foot-part3 p{
        font-size: 12px;
    }
}

/* 手机底部 */
.m-foot{
    display: none;
    position: fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:999;
}
.m-foot ul{
    overflow: hidden;
    margin:0;
}
.m-foot ul li{
    float: left;
    width:25%;
    border-right:1px solid rgba(255,255,255,0.5);
    height:50px;
    line-height: 50px;
    text-align: center;
    background:#009944;
}
.m-foot ul li a{
    color:#fff;
}
@media(max-width:992px){
    .m-foot{
        display:block;
    }
    .footer{
        margin-bottom:60px;
    }
    .footer .foot-part1 .foot-contact{
        margin-top:0;
    }
    .footer .foot-part3{
        padding-bottom:60px;
    }
}

/* 页码 */
.page-box{
    text-align: center;
}
.page-box .pagination{
    overflow: hidden;
}
.page-box .pagination a{
    display: inline-block;
    padding:8px 20px;
    background:#F5F5F5;
    border-radius: 3px;
    text-align: center;
    margin:0 3px 0 0;
}
.page-num{
    display: inline-block;
    padding:8px 20px;
    background:#F5F5F5;
    border-radius: 3px;
    text-align: center;
    margin:0 3px 0 0;
}
.page-num-current{
    background:#009944 !important;
    color:#fff;
}
.page-num-current:hover{
    color:#fff;
}
@media (max-width: 992px){
    .page-box .pagination a{
        padding:5px;
    }
}

/* 搜索页面 */
.ny-search .ny-search-box {
    margin-bottom:30px;
}
.ny-search .ny-search-box .search-list img{
    width:100%;
    max-height:240px;
}
.ny-search .ny-search-box p{
    padding:8px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span{
    background:#fff !important;
}