@charset "utf-8";



  /* 仅适用于webkit的浏览器 */
    /* 定义滚动条和滚动条轨道的宽度 */
    ::-webkit-scrollbar {
      width: 5px;
      /* height: 100px;
         这里就不用定义滚动条的高度了
         因为高度的话，是根据内容自适应的 */
    }

    /*定义滚动条 内阴影+圆角*/
    ::-webkit-scrollbar-thumb {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
      background-color: #006a39;
    }

    /*定义滚动条滑动轨道 内阴影+圆角*/
    ::-webkit-scrollbar-track {
      border-radius: 4px;
      background-color: #fff;
    }

    /* 鼠标放上去效果 */
    ::-webkit-scrollbar-thumb:hover {
      background: #006a39;
    }





* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: "Arial", "Microsoft Yahei", sans-serif;
    ;
}

@font-face {
    font-family: "sisong";
    src: url(../font/SOURCEHANSERIFCN-BOLD.OTF);
    font-weight: normal;
    font-style: normal;
}

html,
body {
    color: #333;
    font-size: 0.16rem;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
    overflow-x: hidden;

}

html {
    font-size: 5.2083333vw;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p,
b {
    padding: 0;
    margin: 0;
    font-weight: normal;
}

i,
em,
b {
    font-style: normal;
}

ol,
ul {
    list-style: none;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus,
div:focus {
    border: none;
    outline: none;
}

img,
input {
    border: 0;
}

input,
button {
    border: none;
    outline: none;
    color: inherit;
    background-color: transparent;
}

.f0 {
    font-size: 0;
}

input[type='text']:focus-visible {
    outline: none;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.wl {
    position: relative;
    z-index: 6;
}

.imged {
    position: relative;
    padding-bottom: 65%;
    width: 100%;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    background-size: cover !important;
    background-position: center center !important;
}

.imged img {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    object-fit: cover;
    display: none;
}

.imged video {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    object-fit: cover;
}

video {
    max-width: 100%;
}

.scale {
    overflow: hidden;
}

a:hover .imged {
    transform: scale(1.1);
}

.pic {
    /*padding-top: 75%;*/
    position: relative;
    overflow: hidden;
}

.icon img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    transition: all 0.3s ease-in;
}

.pic .a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in;
}

.bg-mask:hover .pic .a {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pic img:hover,
.bg-mask:hover .cover_img .a {
    transform: scale(1.05);
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.noflex {
    display: block !important;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.flex-left {
    display: flex;
    flex-wrap: wrap
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.flex-v-center {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.flex-v {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-v-bottom {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: left;
}

.l1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.l2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.l3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.l4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.pore {
    position: relative
}

.aline_r {
    position: relative;
    background-image: linear-gradient(#F36320, #F36320);
    background-position: 0 100%;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size .5s;
}

.alin_r:hover .aline_r {
    background-size: 100% 1px;
    color: #F36320
}

html::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #E2E2E2;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333;
}

.zi3 {
    position: relative;
    z-index: 4;
}

.wp {
    width: 16rem;
    margin: 0 auto;
    max-width: 96%;
}

.none {
    display: none;
}

/*=============================公共 开始===================================*/

.head .wp {

    position: relative;

    z-index: 3;

    height: 1.1rem;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: space-between;
}

.logo img {
    display: block;
    height: .76rem;
}

.list_box0 {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

.list_box0 .li {
    position: relative;
    font-size: .14rem;
    line-height: 1;
    color: #fff;


    z-index: 9;
}

.list_box0 .li:first-child a,
.list_box0 .li:last-child a {
    border-left: none;
}

.list_box0 .li:last-child a {
    padding-right: 0;
}

.list_box0 .li a {
    display: flex;
    padding: 0 .12rem;
    align-items: center;
    border-left: 2px solid #b9c1e5;
    transition: .5s;
}

.list_box0 .li a img {
    padding-right: .1rem;
    height: .15rem;
}

.list_box0 .li:hover a {
    color: #F36320;
}

.search {
    width: 180px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
}

.search input[type="text"] {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    line-height: 30px;
    width: 87%;
    padding: 0 15px;
}

.search input[type="image"] {
    display: inline-block;
    vertical-align: middle;
}

#nav {
    margin-top: .15rem;
}

#nav li {
    position: relative;
    margin-left: .6rem;
}

#nav li h2 {
    font-size: .16rem;
    color: #fff;
    line-height: .33rem;

}

#nav li h2 a {
    display: block;
}

#nav ul li h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: .6s;
    width: 0;
    height: 2px;
    background: #F36320;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
}

#nav ul li.on h2:after,
#nav ul li:hover h2:after {
    opacity: 1;
    visibility: visible;
    width: .30rem;
    margin-left: -.15rem;
}

/*#nav ul li.on h2, #nav ul li:hover h2{
    color: #0771A3;
}*/
#nav ul li .sub {
    position: absolute;
    top: 100%;
    /* padding-top: .2rem; */
    min-width: 1.4rem;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%) translateY(.3rem);
    visibility: hidden;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transition: .25s;
    transform-origin: top;
    max-height: 600px;
    overflow-y: scroll;
}

#nav ul li .sub .box {
    padding: 0;
    background: #f9f9f9;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

#nav ul li .sub a {
    padding: .12rem .1rem;
    line-height: 1.375;
    transition: .6s;
    font-size: .14rem;
    color: #666666;
    text-align: center;
    white-space: nowrap;
    display: block;
    width: 100%;
    border-bottom: rgba(0, 0, 0, .02) 1px solid;
}

#nav ul li .sub a:hover {
    color: #fff;
    background: #006a39;
}

#nav ul li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header_right {
    display: flex;
    align-items: center;
    /* padding-right: 1.2rem; */
}

.hdr-r {
    margin-left: .3rem;
    cursor: pointer;
}

.hdr-r img {
    height: .29rem;
}

.head {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    z-index: 9999;
    transition: all .6s;
}

.head.xg1 {
    background: #006a39;
}

/*miso-nav*/
.miso_navs {
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
    top: 0;
    z-index: 100000;
    height: .9rem;
    transform: translateY(-101%);
    transition: .5s;
    visibility: hidden;
    opacity: 0;
}

.miso_navs #nav {
    height: 100%
}

.miso_navs #nav .wp {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.miso_navs #nav .logos img {
    display: block;
    max-height: .7rem;
}

.miso_navs #nav ul {
    width: calc(100% - 3.5rem);
    justify-content: flex-end;
}

.miso_navs #nav ul li {
    margin-left: .5rem;
}

.miso_navs #nav li h2 {
    font-size: .2rem;
    line-height: .9rem;
}

.miso_navs #nav li h2:after {
    bottom: 0;
}

.miso_navs #nav li .sub {
    padding-top: 0;
}

.miso_navs.xg1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.foot-t {
    padding: .7rem 0 .3rem;
    border-bottom: 1px solid rgba(216, 216, 216, .3);
}

.foot-t .wp {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.foot-t .ft-l {}

.foot-t .ft-l a {

    display: block;
}

.foot-t .ft-l a img {
    height: .76rem;
}


.ft-r {
    display: flex;
    align-items: center;
}

.ft-r ul {
    display: flex;
    align-items: center;
}

.ft-r ul li {
    margin-left: .45rem;
}

.ft-r ul li a {
    font-size: .16rem;
    color: #fff;
}

.foot-b {
    padding: .25rem 0;
}

.foot-b .wp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.foot-b .wp .fb-l p {
    line-height: .4rem;
    font-size: .18rem;
    color: #fff;
}

.foot-b .wp .fb-m p {
    line-height: .4rem;
    font-size: .18rem;
    color: #fff;
}

.fb-r .ul-iconsb1 {
    background: transparent;
}

.fb-r .ul-iconsb1 {
    background: transparent;
}

.fb-r .ul-iconsb1 .icon {
    background: rgba(255, 255, 255, .2);
}

.bq {
    background: rgba(0, 0, 0, .2);
}

.bq p {
    padding: .15rem 0;
    line-height: .2rem;
    text-align: center;
}

.bq p a {
    font-size: .16rem;
    color: rgba(255, 255, 255, .4);
}

.footer {
    position: relative;
    margin-top: -.7rem;
    background: url(../images/foot-bg.png) no-repeat center top/100% 100%;
    z-index: 6;
}

.footer .totop {
    position: absolute;
    right: 7%;
    top: 0.2rem;
    width: .5rem;
    height: .5rem;
    line-height: .5rem;
    text-align: center;
    font-size: .18rem;
    color: #fff;
    background: #bf9b61;
    border-radius: 50%;
    cursor: pointer;
}

/*search*/

/*search*/



.ar_wap {
    display: none
}

/*=================================响应开始========================================*/
/*wap*/

.wap-head {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    padding-right: 15px;
    padding-left: 15px;
    background: #006a39;
    height: .75rem;
}

.big-nav {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -105vw;
    top: 0;
    padding: .9rem 20px 30px;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #0d7545;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

body.navShow .big-nav {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
}

.big-nav .list_box0 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.big-nav .list_box0 .li {
    font-size: 14px;
    color: #e8e8e8;
    display: inline-block;
    transition: .6s;
    margin-right: 0.2rem;
    margin-left: 0;
    position: relative;
    line-height: .5rem;
}

.big-nav .list_box0 .li a {
    color: #fff;
    border-left: none;
    padding: 0;
}

.big-nav .list_box0 .li:hover a {
    color: #bf9b61;
}

.big-nav .scroll {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 1.04rem;
    bottom: 0;
    overflow-y: auto;
}

.list_box_nav_mobile {
    width: 100%;
    height: 100%;
    padding: 0 0 10px;
    overflow: hidden;
    overflow-y: auto;
    margin: 0;
    flex: 1;
}

.list_box_nav_mobile>li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
}

.list_box_nav_mobile>li .con {
    position: relative
}

.list_box_nav_mobile>li .a {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    line-height: .64rem;
    color: rgba(255, 255, 255, .8);
    padding: 0;
    font-size: .2rem;
    display: flex;
    position: relative;
    transition: .5s;
}

.list_box_nav_mobile>li i {
    opacity: 1;
    filter: alpha(opacity=100);
    width: .64rem;
    height: .64rem;
    background: url('../images/s2-more1.png') center no-repeat;
    background-size: .1rem auto !important;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
}

.list_box_nav_mobile>li.on1 i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

.list_box_nav_mobile>li.on .a {
    color: rgba(255, 255, 255, 1);
}

/*三级导航 开始*/
.list_box_nav_mobile>li .list {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none
}

.list_box_nav_mobile>li .list a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 2.5;
}

.nav_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}


.wap_search {
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    overflow: hidden;
    width: 100%;
    height: 60px;
    display: block;
}

.wap_search .header-search {
    height: 40px;
    border-radius: 0;
    background: rgb(255 255 255);
    position: relative;
    width: 100%;
    margin: 10px auto;
}

.wap_search .input {
    font-size: 14px;
    color: #646464;
    height: 40px;
    line-height: 40px;
    padding: 0 .24rem;
    box-shadow: none;
    -webkit-appearance: none;
    float: left;
    border-right: 0;
    background: none;
    width: calc(100% - 40px);
}

.wap_search .btn_blue {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    background: url(../images/search.png) center no-repeat #bf9b61;
    background-size: .2rem;
    border-radius: 0;
}

.wap_search .btn_blue.fr {
    background: #e9edef;
    color: #4e4f53;
}

.ar_wap {
    display: none
}

.ul-iconsb1 {
    align-items: center;
    background: #f1f2f3;
    padding: .3rem 0;
    justify-content: center;
}

.ul-iconsb1 li {
    padding: 0 .15rem;
}

.ul-iconsb1 .con {
    position: relative;
    cursor: pointer;
}

.ul-iconsb1 .icon {
    width: 0.45rem;
    height: .45rem;
    border: 1px solid #117446;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ul-iconsb1 li:hover .icon {
    background: #006a39;
}

.ul-iconsb1 .icon img {
    max-width: 0.28rem;
    max-height: 0.25rem;
}

.ul-iconsb1 .icon .h5_ico1h {
    display: none;
}

.ul-iconsb1 li:hover .icon .h5_ico1h {
    display: block;
}

.ul-iconsb1 li:hover .icon .h5_ico1 {
    display: none;
}

.ul-iconsb1 .qrbox {
    bottom: 100%;
    transform: translateY(-30%) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    margin: 0 0 .15rem;
    transition: 0.5s;
    position: absolute;
    width: 1.2rem;
    z-index: 10;
    height: auto;
    z-index: 100;
    left: 50%;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.ul-iconsb1 .qrbox .qr {
    padding: .05rem;
    background: #fff;
    text-align: center;
    border-radius: .1rem;
}

.ul-iconsb1 .qrbox::before {
    content: "";
    border-left: .08rem solid transparent;
    border-right: .08rem solid transparent;
    border-bottom: .1rem solid #fff;
    bottom: -0.08rem;
    transform: translateX(-50%) rotateX(180deg);
    position: absolute;
    left: 50%;
}

.ul-iconsb1 li:last-child .qrbox {
    left: auto;
    right: 0;
    transform: translateY(-30%);
}

.ul-iconsb1 li:last-child .qrbox::before {
    right: .15rem;
    left: auto;
    transform: translateX(0%) rotateX(180deg);
}

.ul-iconsb1 .qrbox .qr img {
    width: 100%;
}

.ul-iconsb1 .con:hover .qrbox {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%) translateX(-50%);
}

.ul-iconsb1 li:last-child .con:hover .qrbox {
    transform: translateY(0%) translateX(0%);
}

.foot-b h2 {
    color: #fff;
    /* font-size: .20rem; */
    line-height: 30px;
    font-weight: bold;
    margin-bottom: .1rem;
}

@media (max-width: 1024px) {
    .banner {
        padding-top: .6rem;
    }

    html {
        font-size: 85px !important;
        ;
    }

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    .ar_web {
        display: none
    }

    .ar_wap {
        display: block
    }

    .wp {
        width: 100%;
        padding: 0 15px;
        max-width: 100%;
    }

    .wap-head {
        display: flex;
        z-index: 11111;
    }

    .wap-head .logo img {
        height: 0.58rem;
    }

    .wap-head .navbtnm {
        width: .86rem;
        height: .75rem;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 5;
        color: #fff;
        text-align: center;
    }

    .wap-head .navbtnm i {
        display: block;
        width: 100%;
        height: 0.75rem;
        background: url("../images/menu.png") no-repeat 50%;
        background-size: 0.32rem 0.32rem;
        transition: all .3s;
        position: relative;
        z-index: 3;
    }

    .wap-head .navbtnm:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #bf9b61;
    }

    .wap-head .navbtnm:after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: -6px;
        border-right: #bf9b61 7px solid;
        border-bottom: transparent 0.75rem solid;
    }

    .navShow .navbtnm i {
        background-image: url("../images/close-menu.png");
    }

    .list_box0 .li {
        border: none;
    }

    .ftlink .a_box {
        width: calc(100% - 1rem);
    }
}

@media screen and (min-width: 1024px) {
    .ft-r ul li:hover a {
        color: #bf9b61;
    }
}



@media screen and (max-width: 1024px) {
    .footer {
        margin-top: 0;
        background: #1e6735;
    }

    .footer .totop {
        top: -.2rem;
    }

    .foot-t {
        padding: .2rem 0;
    }

    .foot-t .ft-l {
        width: 100%;
        margin-bottom: .15rem;
    }

    .ft-r {
        width: 100%;
        justify-content: center;
    }

    .ft-r ul {
        flex-wrap: wrap;
    }

    .ft-r ul li {
        margin: 0 .2rem;
        margin-bottom: .15rem;
    }

    .fb-l {
        width: 100%;
    }

    .fb-m {
        width: 100%;
    }

    .fb-r {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .foot-b {
        padding: .1rem 0;
    }

    .foot-b .wp .fb-l p,
    .foot-b .wp .fb-m p {
        line-height: .3rem;
        font-size: .16rem;
    }

    .fb-r .ul-iconsb1 {
        padding: .1rem 0;
    }
}
