@charset "utf-8";
@media (min-width: 1200px){
    .container {
        width: 1200px !important;
    }
}
*{
    margin:0;
    padding:0;
}
body{    
    color:#2b2b2b;
    margin: 0px auto;
    font-size: 14px;
    font-family: Verdana;
    line-height: 1.5;
    background:#e2e2e2;
}
@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:#002a91;
}
a:focus{
    text-decoration:none !important;
}


/* 头部 */
.header{
    background-color: #fff;
}
header .head-top{
    padding:10px 0;
}
header .top-right{
    margin-top:25px;
}
header .top-right ul li{
    display: inline-block;
    padding-left:8px;
    position: relative;
}
header .top-right ul li .tc-wx{
    position: absolute;
    left:-40px;
    background:#fff;
    z-index:99;
    padding:5px;
    display: none;
}
header .top-right ul li:hover .tc-wx{
    display: block;
}
header  .top-right ul li .tc-wx p{
    font-size: 13px;
    text-align: center;
    margin:0;
}
header .top-right ul li>img{
    display: inline-block;
    margin-right:5px;
}
header .head-nav {
    padding:5px 0 15px 0;
}
header .nav{   
    background: #16aa54;
}
header .nav ul{
	margin-bottom: 0px;
}
header .nav>ul>li{
    display: inline-block;     
    position: relative;
    background: url(../img/bg-02.gif) no-repeat scroll 100% 0%;
}
header .nav>ul>li>a{
    font-size: 14px;
    line-height: 60px; 
    text-align: center;
    padding: 0px 24px;
    display: block;
    color: #fff;
}
header .nav>ul>li>a.active,header .nav>ul>li>a:hover{
    color: #FFF;
    background: #9e0210;
}
/* 二级导航 */
.er-nav{
    position: absolute;
    background:#fff;
    z-index:999;
    min-width:190px;
    margin-left:-85px;
    left:50%;
    font-size: 14px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;   
}
.er-nav li{
    line-height: 14px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    margin: 0px 15px;
    border-bottom: 1px solid #efefef;
}
header .nav>ul>li:hover .er-nav{
    visibility: visible;
    opacity: 1;
}
header .nav>ul>li:hover .er-nav li{
    padding:10px 15px;
}
header .nav>ul>li:hover .er-nav li:hover{
    color: #FFF;
    background: #9e0210;
}
header .nav>ul>li:hover .er-nav li:hover a{
    color: #FFF;  
}
.nav .search{
    height:30px;
    width:230px;
    margin-top:15px;
}
.nav .search form{
    width:100%;
    height:100%;
}
.nav .search .search-box{
    height:100%;
    width:100%;
    border-radius: 30px;
    background:#efefef;
    position: relative;
}
.nav .search .search-box input{
    width:180px;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    background:none;
    border:none;
    padding:0 0 0 10px;
}
.nav .search .search-box input:-moz-placeholder {
    font-size: 13px;
    color:#999;
}
.nav .search .search-box input:-ms-input-placeholder{
    font-size: 13px;
    color:#999;
}
.nav .search .search-box input::-webkit-input-placeholder{
    font-size: 13px;
    color:#999;
}
.nav .search .search-box input:focus{
    outline: none;
}
.nav .search .search-box button{
    width:50px;
    height:100%;
    border:none;
    background:none;
    text-align: center;
    position: absolute;
    top:0;
    right:0;
}
.nav .search .search-box button:focus{
    outline: none;
}
.nav .search .search-box button img{
    position: absolute;
    top:8px;
}

@media(max-width:992px){
    .keyword .key-box{
        display: none;
    }
    .keyword .search{
        margin:15px 50px 0 0;
    }
}

.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;
}

@media (max-width:992px){
    header .top-right{
        display: none;
    }
    .m-btn{
        display: block;
    }
    header .logo img{
        height:35px;
    }
    header .header{
        height:60px;
        line-height: 60px;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:60px;
        width:70%;
        height:calc(100vh - 110px);       
        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 .nav li{
        width:100%;
        background: transparent;
    }
    header .nav ul li.active a{
        border:none;
    }
    header .nav.show{
        left:-15px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block !important;
        line-height: 40px !important;
        padding:0 20px;
        background:transparent; 
    }
}

/* 底部 */
footer{
    background:#16aa54;
    padding:0px 0 30px 0;
    color:#fff;
}
footer a{
    color:#fff;
}
footer .foot-nav {
    float: left;
    margin-top: 45px;
    width:33.3%;
}
footer .foot-nav1{
    width:20%;
}
footer .foot-nav p{
    font-size: 16px;
    font-weight: bold;
}
footer .foot-nav b{
    display: block;
    width:19px;
    height:0px;
    background:#fff;
}
footer .foot-nav ul{
    margin:5px 0 0 0;
}
footer .foot-nav ul li{
    font-size: 14px; 
}
footer .foot-contact{
    float: left;
    padding-left:30px;
}
footer .foot-contact p{
    font-size: 17px;
    font-weight: bold;
}
footer .foot-contact b{
    display: block;
    width:20px;
    height:2px;
    background:#fff;
}
footer .foot-contact ul{
    margin:15px 0 0 0;
}
footer .foot-contact ul li{
    font-size: 14px;
    padding:5px 0;
}
footer .foot-er{    
    text-align: center;
    padding: 40px;
    background-color: #00311d;
}
footer .foot-er-box{
    display: inline-block;
    background:#fff;
    padding:5px;
    text-align: center;
}
footer .foot-er-box img{
    max-width: 100%;
}
footer .foot-er-box p{
    color:#2b2b2b;
    font-size: 14px;
    margin:5px 0;
}
footer .foot-bottom{
    margin-top:20px;
    text-align: center;
    background: url(../img/bg-19.gif) repeat-x scroll 0% 0%;
}
footer .foot-bottom p{
    font-size: 14px;
}
@media(max-width:992px){
    footer{
        padding:20px 0;
    }
    footer .foot-contact{
        padding-left:0;
    }
    footer .foot-er{
        float: left;
    }
}
.emenu {
    text-align: center;
    line-height: 26px;
    padding-top: 18px;
    color: #999;
}
.emenu a {
    color: #FFF;
    padding: 0 3px 0 0;
}
/* 页码 */
.page-box{
    margin:30px 0;
    text-align: center;
}
.page-box .pagination{
    overflow: hidden;
}
.page-box .pagination a{
    display: block;
    float: left;
    padding:6px 15px;
    background:#F5F5F5;
    border-radius: 3px;
    text-align: center;
    margin:8px 3px;
}
.page-box .pagination .page-num{
    background:#eee;
}
.page-box .pagination .page-item{
    background:#eee;
}
.page-box .pagination .page-num-current{
    background:#002a91 !important;
    color:#fff;
}
.page-num-current:hover{
    color:#fff;
}
span.page-num{
    display: none;
}

/* 手机底部 */
.m-footer{
    position: fixed;
    left:0;
    bottom:0;
    width:100%;
    display: none;
}
.m-footer ul{
    overflow: hidden;
    margin:0;
}
.m-footer ul li{
    float: left;
    width:25%;
    height:50px;
    text-align: center;
    line-height: 50px;
    background:#002a91;
    border-left:1px solid rgba(255,255,255,0.3);
    color:#fff;
}
.m-footer ul li a{
    color:#fff;
}
.m-footer ul li:first-child{
    border-left:none;
}
@media(max-width:992px){
    .m-footer{
        display: block;
    }
    footer{
        margin-bottom:50px;
    }
}