*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    text-decoration: none;
}
ul,ol{
    list-style-type: none;
    margin: 0;
}
em{
    font-style: normal;
    font-weight: 500;
}
html{
    font-size: 16px;
}
p{
    margin: 0;
}
/* 当屏幕宽度大于或等于1280px时 */  
@media (min-width: 1280px) {  
    html {  
        font-size: 100%; 
    } 
}
/* 当屏幕宽度在960px到1279px之间时 */  
@media (min-width: 960px) and (max-width: 1279px) {  
    html {  
        font-size: 75%;   
    }   
}
/* 当屏幕宽度小于960px时 */  
@media (max-width: 959px) {
     html {
        font-size: 50%;  
    } 
}
.header{
    width: 100%;
    background: #fff;
    color: #999999;
}
.header .header_top{
    position: relative;
    z-index: 3;
    padding: .9375rem 0;
    
}
.header_top>div{
    display: flex;
    justify-content: space-between;
}
.logo{
    display: block;
    display: flex;
}
.logo>img{
    width: auto;
    height: 5rem;
}
.logo>div{
    margin-top: .9375rem;
    margin-left: -1.875rem;
    padding-left: .9375rem;
    border-left: .0625rem solid #cacaca;
    font-size: .75rem;
}
.logo>div>span{
    margin-top: .25rem;
    font-size: 1.5rem;
    color: #078905;
    font-weight: bold;
}
.logo>div>p{
    margin-top: .25rem;
    font-size: 1.125rem;
    color: #000;
}
.ht_right{
    padding-top: 2.0625rem;
    display: flex;
}
.ht_right .tel{
    padding-right: 1.25rem;
    line-height: 2rem;
    font-size: .75rem;
    position: relative;
}
.ht_right .tel span{
    margin-left: .3125rem;
    font-size: 1.5rem;
    color: #078905;
    font-weight: bold;
}
.ht_right .search{
    margin-left: 1.5625rem;
    width: 9.0625rem;
    border: .0625rem solid #000;
    height: 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
}
.ht_right .search .search_input{
    width: 6.875rem;
    line-height: 1.5rem;
    padding: .1875rem .9375rem;
    height: 1.875rem;
    background: none;
    border: none;
    color: #333;
    font-size: .75rem;
    outline: none; 
}
.ht_right .search  .submit{
    width: 1.875rem;
    height: 1.875rem;
    background: url(../img/public/search_bt.png);
    cursor: pointer;
    border: 0;
}
.weixin{
    margin-left: 1.25rem;
    position: relative;
    cursor: pointer;
}
.weixin>div{
    display: none;
    position: absolute;
    left: 50%;
    margin-left: -3.75rem;
    top: 2.625rem;
    right: 0;
    width: 7.5rem;
}
.weixin>div img{
    width: 100%;
}
.header_bottom{
    border-top: .0625rem solid #ededed;
    background: #078905;
}
.header_bottom ul{
    display: flex;
    justify-content: center;
}
.header_bottom ul li{
    padding: .9375rem 3%;
    position: relative;
    border-right: .0625rem solid #067004;
    transition: all 0.3s;
}
.header_bottom ul li a{
    display: block;
    font-size: 1rem;
    line-height: 2.125rem;
    height: 2rem;
    color: #fff;
    text-align: center;
    position: relative;
}

.header_bottom ul li:hover{
    opacity: 0.9;
}
.header_bottom ul li:hover::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.header_bottom ul li.active{
    opacity: .9;
}
.header_bottom ul li.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    z-index: -1;
}
.footer{
    color: #fff;
    background-color: #000;
}
.footer_top_con{
    border-top: .0625rem solid rgba(83, 83, 83, .3);
    padding: 2.6875rem 0 2.5rem;
    display: flex;
}
.footer_top_con .ftc_left{
    width: 34%;
    max-width: 360px;
    font-size: 1.125rem;
}
.footer_top_con .ftc_left p{
    padding-left: 1.5625rem;
    letter-spacing: .125rem;
}
.footer_top_con .ftc_left p:nth-child(1){
    margin-top: 0;
    background: url(../img/public/ico_address.png) no-repeat left;
}
.footer_top_con .ftc_left p:nth-child(2){
    font-weight: bold;
    background: url(../img/public/ico_tel.png) no-repeat left;
}
.footer_top_con .ftc_left img{
    margin: 1.875rem 0 0;
    width: 5.625rem;
}
.footer_top_con .ftc_cen{
    width: 27%;
}
.footer_top_con .ftc_cen .ftc_cen_title span{
    display: block;
    opacity: .5;
    font-size: .875rem;
}
.footer_top_con .ftc_cen .ftc_cen_title p{
    margin-top: .3125rem;
}
.footer_top_con .ftc_cen ul li{
    float: left;
    width: 50%;
}
.footer_top_con .ftc_cen ul li a{
    display: block;
    line-height: 1.5rem;
    height: 1.5rem;
    font-size: .75rem;
    color: #bbbbbb;
}
.footer_top_con .ftc_cen ul li:hover a{
    color: #fff;
}
.footer_top_con .footer_form{
    float: right;
    width: 38%;
    max-width: 438px;
    font-size: .75rem;
}
.footer_top_con .footer_form div input{
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-top: .625rem;
    border: none;
    height: 2.25rem;
    padding: .375rem .9375rem;
    line-height: 1.5rem;
    background: #253447;
    color: #FFFFFF!important;
    letter-spacing: .125rem;
    outline: none;
}
.footer_top_con .footer_form div input:nth-child(2){
    float: right;
    margin-right: 0;
}
.footer_top_con .footer_form div input::placeholder{
    color: #fff;
}
.footer_top_con .footer_form textarea{
    margin-top: .625rem;
    height: 5.5rem;
    width: 100%;
    background: #253447;
    border: none;
    outline: none;
    padding: .9375rem;
    color: #FFFFFF!important;
    letter-spacing: .125rem;
}
.footer_top_con .footer_form textarea::placeholder{
    color: #fff;
}
.footer_top_con .footer_form .submits{
    padding: 0;
    width: 8.125rem;
    height: 2.25rem;
    line-height: 2.25rem;
    background: #078905;
    color: #FFFFFF;
    letter-spacing: .1875rem;
}
.w1200{
    width: 100%;
    margin: 0 auto;
    max-width: 1340px;
    min-width: 320px;
}
.container{
    margin: 0 auto;
    width: 100%;
}
.footer_bottom{
    padding: .625rem 0;
    width: 75rem;
    margin: 0 auto;
    color: #FFF;
}
.footer_bottom a{
    color: #FFF;
}