@charset "UTF-8";
*{
    /* 移动端高亮 */
    -webkit-tap-highlight-color:transparent;
    /* 禁止选中文本 */
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    -o-user-select:none;
    user-select:none;
}
/* 思源黑体 */
/* @font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("../fonts/SourceHanSansCN-Light.woff2") format("woff2"),
       url("../fonts/SourceHanSansCN-Light.woff") format("woff"),
       url("../fonts/SourceHanSansCN-Light.ttf") format("truetype"),
       url("../fonts/SourceHanSansCN-Light.eot") format("embedded-opentype"),
       url("../fonts/SourceHanSansCN-Light.svg") format("svg");
  font-weight: normal;
  font-style: normal;
} */
html,body{
    position: relative;
    overflow-x: hidden;
    /* font-family: 'SourceHanSansCN-Light','MicrosoftJhengHei','Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', Arial, sans-serif; */
}
/* bootstrap modal闪动问题 */
body.modal-open { 
    padding-right: 0 !important;
    overflow-y: scroll;
}
/* 重置bootstrap的样式 */
[class^="col-"]{
    padding: 0;
}
.row{
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
ul, dl, li{
    list-style: none;
    padding: 0;
}
input,textarea{      
    -webkit-user-select:auto;
    -moz-user-select:auto;
    -ms-user-select:auto;
    -o-user-select:auto;
    user-select:auto;
}  
/* 清除浮动 */
.clearfix:after{
    display:block;
    overflow:hidden; 
    clear:both; 
    height:0; 
    visibility:hidden; 
    content:".";
}
.clearfix{
    *zoom:1;
}
img{
    display: block;
    max-width: 100%;
}
/* 图片放大 */
.scale-img img{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.scale-img:hover img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.i-scale{
    -webkit-animation: iScale alternate linear 5s infinite;
    -moz-animation: iScale alternate linear 5s infinite;
    -ms-animation: iScale alternate linear 5s infinite;
    -o-animation: iScale alternate linear 5s infinite;
    animation: iScale alternate linear 5s infinite;
}
@-webkit-keyframes iScale {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
@-moz-keyframes iScale {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
@-ms-keyframes iScale {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
@-o-keyframes iScale {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
@keyframes iScale {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
.h_line{
    position: relative;
}
.h_line::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.h_line:hover::after{
    width: 100%;
}
.more{
    display: block;
    width: 190px;
    height: 50px;
    margin: 6px auto 40px;
    font-weight: 700;
    font-size: 14px;
    line-height: 50px;
    color: #bb161d;
    text-align: center;
    background-color: transparent;
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    /* -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; */
    border: 1px solid #bb161d;
}
.more:hover{
    color: #fff;
    text-decoration: none;
    background-color: #bb161d;
}
.w1200{
    width: 1200px;
    margin: 0 auto;
}
/* 公共样式 */
@media (max-width: 1200px){
    .w1200{
        width: 100%;
        padding: 0 7px;
    }
}
@media (max-width: 768px){

}
.side80{
    position: relative;
}
.overflow{
    height: auto !important;
    overflow: hidden;
}
/* 头部样式 */
.header_sh .navbar-brand{
    -webkit-animation: smallH .5s ease-in-out;
    animation: smallH .5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.header_bh .navbar-brand{
    -webkit-animation: bigH .5s ease-in-out;
    animation: bigH .5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes smallH {
    from {padding: 30px 0 33px;}
    to {padding: 15px 0;}
}
@keyframes smallH {
    from {padding: 30px 0 33px;}
    to {padding: 15px 0;}
}
@-webkit-keyframes bigH {
    from {padding: 15px 0}
    to {padding: 30px 0 33px;}
}
@keyframes bigH {
    from {padding: 15px 0}
    to {padding: 30px 0 33px;}
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: rgba(0,0,0,.6);
}
.header .navbar-expand-xl{
    padding: 0;
    justify-content: space-between;
}
.header .navbar-brand{
    width: 11.82291666666667%;
    min-width: 160px;
    margin-right: 0;
    padding: 30px 0 33px;
    font-size: 0;
    text-align: center;
    background-color: #009b4d;
}
.header .navbar-brand img{
    display: inline-block;
    max-width: 80%;
    vertical-align: middle;
}
.header .navbar-toggler{
    position: absolute;
    top: 0;
    left: 10px;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 17px 10px;
    border: none;
    outline: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.menu-line{
    width: 30px;
    height: 30px;
    position: relative;
}
.mlitem{
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
}
.mlitem .rect {
    width: 30px;
    height: 1px;
    background: #999;
    position: absolute;
    left: 0;
    top: 14px;
}
.mlitem .rect.top {
    -webkit-transform: translate3d(0, -6px, 0);
    -moz-transform: translate3d(0, -6px, 0);
    -ms-transform: translate3d(0, -6px, 0);
    -o-transform: translate3d(0, -6px, 0);
    transform: translate3d(0, -6px, 0);
}
.mlitem .rect.bottom {
    -webkit-transform: translate3d(0, 6px, 0);
    -moz-transform: translate3d(0, 6px, 0);
    -ms-transform: translate3d(0, 6px, 0);
    -o-transform: translate3d(0, 6px, 0);
    transform: translate3d(0, 6px, 0);

}
.header .open{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header .open .top{
    -webkit-transform: translate3d(0, 0, 0) rotate(0);
    -moz-transform: translate3d(0, 0, 0) rotate(0);
    -ms-transform: translate3d(0, 0, 0) rotate(0);
    -o-transform: translate3d(0, 0, 0) rotate(0);
    transform: translate3d(0, 0, 0) rotate(0);
}
.header .open .bottom{
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
    -moz-transform: translate3d(0, 0, 0) rotate(-45deg);
    -ms-transform: translate3d(0, 0, 0) rotate(-45deg);
    -o-transform: translate3d(0, 0, 0) rotate(-45deg);
    transform: translate3d(0, 0, 0) rotate(-45deg);
}

.header .navbar-collapse{
    /* width: 81.25%; */
    height: 32px;
    flex-grow: inherit;
    overflow: hidden;
}
.header .navbar-nav{
    /* width: 89.35897435897436%;
    padding-right: 2.051282051282051%; */
    padding-right: 32px;
    justify-content: flex-end;
    /* margin: 0 0 0 auto !important; */
}
.header .navbar-nav .nav-link{
    height: 32px;
    padding: 0 32px;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header .navbar-nav .nav-link:focus, 
.header .navbar-nav .nav-link:hover {
    color: #009b4d !important;
}
.header .search{
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 1;
    width: 167px;
    height: 32px;
    /* width: 235px;
    height: 32px; */
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    border-left: 1px solid #545454;
}
.header .s-top{
    -webkit-animation: sTop .5s ease-in-out;
    animation: sTop .5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.header .b-top{
    -webkit-animation: bTop .5s ease-in-out;
    animation: bTop .5s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes sTop {
    from {top: 36px;}
    to {top: 16px;}
}
@keyframes sTop {
    from {top: 36px;}
    to {top: 16px;}
}
@-webkit-keyframes bTop {
    from {top: 16px}
    to {top: 36px;}
}
@keyframes bTop {
    from {top: 16px}
    to {top: 36px;}
}
.header .search .form-inline{
    position: relative;
    width: 145px;
    margin: 0 auto;
}
.header .search .form-control{
    width: 100%;
    height: 32px;
    padding: 0 32px 0 12px;
    border: 1px solid #6a6a6a;
    font-size: 14px;
    color: #bdc0c9;
    border-radius: 32px;
    background-color: transparent;
    outline: none;
}
.header .form-control:focus {
    color: #6a6a6a;
    background-color: transparent;
    border-color: #6a6a6a;
    outline: 0;
    box-shadow: none;
}
.header .search .submit-btn{
    position: absolute;
    right: 0;
    top: 0; 
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 14px;
    color: #6a6a6a;
    border: 0;
    background: none;
    outline: 0;
    cursor: pointer;
    overflow: hidden;
    
}
.header .submit-btn .iconfont{
    font-size: 20px;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header .search-w{
    width: 235px;
    opacity: 1;
    z-index: 2;
}
.header .default{
    position: relative;
    z-index: 2;
    width: 167px;
    height: 32px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header .default-btn{
    /* position: absolute;
    right: 0;
    top: 38px; 
    width: 10.64102564102564%; */
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 14px;
    color: #05bb5f;
    border: 0;
    background: none;
    outline: 0;
    cursor: pointer;
    overflow: hidden;
    border-left: 1px solid #545454;
}
.header .default-btn .iconfont{
    margin: 0 12px;
    font-size: 20px;
    cursor: pointer;
    vertical-align: middle;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.header .default-w{
    width: 235px;
    z-index: 1;
}
.header .default-w .default-btn{
    opacity: 0;
}
.menu-modal{
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1200px){
    .header .navbar-expand-xl{
        justify-content: center;
    }
    .header .navbar-brand{
        display: inline-block;
    }
    .header .navbar-collapse{
        position: fixed;
        left: 0%;
        top: 0;
        width: 80%;
        min-width: 140px;
        max-width: 440px;
        height: 100%;
        background-color: #f8f8f8;
        -webkit-box-shadow: -2px 0 15px #000;
        -moz-box-shadow: -2px 0 15px #000;
        -ms-box-shadow: -2px 0 15px #000;
        -o-box-shadow: -2px 0 15px #000;
        box-shadow: -2px 0 15px #000;
    }
    .header .search{
        position: relative;
        right: inherit;
        top: inherit;
        width: 100%;
        height: 48px;
        opacity: 1;
        border-left: none;
        border-bottom: 1px solid #000;
    }
    .header .s-top {
        -webkit-animation: inherit;
        animation: inherit;
        -webkit-animation-fill-mode: inherit;
        animation-fill-mode: inherit;
    }
    .header .search .form-inline {
        width: 100%;
        margin: 0 !important;
    }
    .header .search .form-control {
        height: 48px;
        padding: 0 48px 0 20px;
        border: none;
        font-size: 14px;
        color: #333;
        border-radius: 0;
    }
    .header .search .submit-btn {
        width: 48px;
        height: 48px;
        color: #666;
    }
    .header .default{
        display: none;
    }
    .header .navbar-nav {
        padding-right: 0;
    }
    .header .navbar-nav .nav-link {
        height: 48px;
        padding: 0 20px;
        line-height: 48px;
        color: #333 !important;
        border-bottom: 1px solid #000;
    }
}

@media (max-width: 768px){
    
}

/* 尾部样式 */
.footer{
    padding: 124px 0 20px 0;
    background: url(../images/footer_bg.jpg) no-repeat center bottom;
}
.footer-title-wrapper{
    margin-bottom: 64px;
}
.footer-wtitle{
    font-size: 36px;
    line-height: 60px;
    color: #05bb5f;
}
.footer-dec{
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #57453e;
    text-transform: uppercase;
}
.footer-cont{
    padding-bottom: 240px;
}
.footer-l{
    padding: 18px 0 0 0;
}
.footer-l .form-group{
    align-items: flex-end;
    margin-bottom: 21px;
}
.footer-l .label{
    width: 52px;
    height: 40px;
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.footer-l .input{
    position: relative;
    width: calc(100% - 52px);
}
.footer-l .code{
    width: calc(100% - 117px);
}
.footer-l .form-control{
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #6c5648;
    background-color: transparent;  
}
.footer-l .g-line{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #05bb5f;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer-l .form-control:focus {
    color: #495057;
    background-color: transparent;
    border-bottom: 1px solid #6c5648;
    outline: 0;
    box-shadow: none;
}
.footer-l .form-control:focus+.g-line{
    width: 100%;
}
.footer-l .yzm{
    display: inline-block;
    width: 50px;
    margin-left: 15px;
}
.footer-l .submit_btn{
    padding: 27px 0 0 8px;
}
.footer-l  .btn{
    width: 25%;
    font-size: 16px;
    line-height: 38px;
    color: #fff;
    text-align: center;
    background-color: transparent;
    border: 1px solid #05bb5f;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer-l  .btn:hover{
    background-color: #05bb5f;
}
.footer-r{

}
.footer-r dl{
    padding-left: 14%;
    margin: 0;
}
.footer-r dt{
    font-size: 30px;
    line-height: 80px;
    color: #fff;
}
.footer-r dd{
    height: 44px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 44px;
    color: #fff;
    overflow: hidden;
}
.footer-r .icon{
    display: inline-block;
    width: 18px;
    height: 20px;
    margin-right: 15px;
    background-image: url(../images/footer_r_icons.png);
    background-repeat: no-repeat;
    vertical-align: middle;
}
.footer-r .icon01{
    background-position: 0 0;
}
.footer-r .icon02{
    background-position: 0 -25px;
}
.footer-r .icon03{
    background-position: 0 -50px;
}
.footer-r .icon04{
    background-position: 0 -75px;
}
.footer-r .icon05{
    background-position: 0 -100px;
}
.footer-r .text{

}
.footer-b{
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}
.footer-b a{
    color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer-b a:hover{
    color: #05bb5f;
}
.footer-b-ga{
    display: block;
    margin: 0 auto;
}
@media (max-width: 992px){
    .footer-r dt {
        font-size: 28px;
    }
    .footer-cont {
        padding-bottom: 160px;
    }
}
@media (max-width: 768px){
    .footer{
        padding: 60px 0 20px 0;
        background-size: cover;
    }
    .footer-title-wrapper {
        margin-bottom: 30px;
    }
    .footer-dec {
        font-size: 36px;
        line-height: 40px;
    }
    .footer-wtitle{
        font-size: 24px;
        line-height: 40px;
    }
    .footer-cont {
        padding: 0 5%;
        padding-bottom: 40px;
    }
    .footer-l .btn {
        width: 40%;
    }
    .footer-r dl {
        padding-left: 0;
    }
    .footer-r dt {
        font-size: 20px;
        line-height: 50px;
    }
    .footer-r dd {
        height: 32px;
        line-height: 32px;
    }
    .footer-r .icon {
        margin-right: 10px;
    }
    .footer-b {
        padding: 0 5%;
    }
}

/* 尾部样式footer1 */
.footer1{
    padding: 50px 0 40px;
    background-color: #009b4d;
}
.footer1_t{
    padding-top: 8px;
    background: url(../images/footer_bg.png) no-repeat center center;
}
.footer1_title{
    height: 76px;
    font-size: 16px;
    line-height: 76px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #33af71;
}
.footer1_tl{
    float: left;
    width: 27.5%;
}
.footer1_tl_c{
    padding: 20px 0;
    font-size: 0;
}
.footer1_tl_c ul{
    display: inline-block;
    width: 37.64705882352941%;
    margin: 0;
    vertical-align: top;
}
.footer1_tl_c ul li a{
    font-size: 16px;
    line-height: 36px;
    color: #fff;
}
.footer1_tl_c .h_line::after{
    background-color: #fff;
}
.footer1_tr{
    float: right;
    width: 22.5%;
}
.footer1_tr ul{
    margin: 0;
    padding: 30px 0;
    font-size: 0;
}
.footer1_tr ul li{
    display: inline-block;
    width: 24.0625%;
    /* padding-right: 9.375%; */
}
.footer1_tr ul li a{
    position: relative;
    display: block;
    width: 47px;
    height: 47px;
    background-image: url(../images/footer_icons.png);
    background-repeat: no-repeat;
}
.footer1_tr ul li a.weixin{
    background-position: 0 0;
}
.footer1_tr ul li a.weibo{
    background-position: -67px 0;
}
.footer1_tr ul li a.qq{
    background-position: -134px 0;
}
.footer1_tr ul li a.link{
    background-position: -201px 0;
}
.footer1_tr ul li a.weixin:hover .ewm{
    display: block;
    opacity: 1;
}
.footer1_tr ul li a:hover{
    opacity: .8;
}
.footer1 .ewm{
    position: absolute;
    left: 50%;
    bottom: 55px;
    opacity: 0;
    display: none;
    width: 140px;
    padding: 8px 8px 0;
    margin-left: -70px;
    background-color: #7effbe;
    transition: 5s;
}
.footer1 .ewm:after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    display: block;
    width: 0;
    height: 0;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #af785b;
}
.footer1 .ewm i{
   display: block;
   font-size: 12px;
   font-style: normal;
   line-height: 28px;
   color: #fff;
   text-align: center;
}
/* .footer1_more{
    background-color: #6b261e;
} */
.footer1_b{
    padding-top: 24px;
    border-top: 1px solid #33af71;
}
.footer1_bt{
    font-size: 0;
    text-align: center;
}
.footer1_bt span{
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
}
.footer1_b p{
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    text-align: center;
}
.footer1_b p a{
    color: #fff;
}
.footer1_b img{
   margin: 0 auto;
}
@media (max-width: 992px){
    
}
@media (max-width: 768px){
    .footer1 {
        padding: 35px 0 20px;
    }
    .footer1_title {
        height: 40px;
        line-height: 40px;
    }
    .footer1_tl{
        float: none;
        width: 100%;
        text-align: center;
    }
    .footer1_tl_c {
        padding: 10px 0;
    }
    .footer1_tl_c ul {
        display: block;
        width: 100%;
        font-size: 0;
        text-align: center;
    }
    .footer1_tl_c ul li{
        display: inline-block;
        padding-right: 10px;
    }
    .footer1_tr {
        float: none;
        width: 100%;
        padding-bottom: 15px;
        text-align: center;
    }
    .footer1_tr ul {
        padding: 15px 0;
    }
    .footer1_tr ul li {
        width: 60px;
        padding: 0 7px 0 6px;
    }
    .footer1_more {
        display: inline-block;
    }
}