@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
i,
em {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img,
input {
    border: 0;
    outline: none;
}

.m-index {
    display: none;
}


.top>img.wap {
    display: none;
}

body .clear {
    float: none !important;
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.w14 {
    max-width: 14rem;
    margin: 0 auto;
}

.w16 {
    max-width: 16rem;
    margin: 0 auto;
    width: 100%;
}

.w18 {
    max-width: 17.2rem;
    margin: 0 auto;
    width: 100%;
}

/* pic：padding-top */
.pic {
    padding-top: 70%;
    position: relative;
    overflow: hidden;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}

a:hover .pic>img {
    transform: scale(1.05);
}


/* 文字下划线动效 */
.titline i {
    display: inline;
    font-style: normal;
    position: relative;
    background-image: linear-gradient(#fff, #fff);
    background-position: right bottom;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size .5s;
}

a:hover .titline {
    color: #fff;
}

a:hover .titline i {
    background-position: left bottom;
    background-size: 100% 1px;
    font-weight: inherit;
    color: inherit;
}

/* 文字下划线动效2 */
.titline2 i {
    display: inline;
    font-style: normal;
    position: relative;
    background-image: linear-gradient(#0A8343, #0A8343);
    background-position: right bottom;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size .5s;
}

a:hover .titline2 {
    color: #0A8343;
}

a:hover .titline2 i {
    background-position: left bottom;
    background-size: 100% 1px;
    font-weight: inherit;
    color: inherit;
}

/* icon摇晃 */
@keyframes icon-yh {
    0% {
        transform: rotateZ(0);
    }

    10% {
        transform: rotateZ(10deg);
    }

    20% {
        transform: rotateZ(0);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(0);
    }

    50% {
        transform: rotateZ(10deg);
    }

    60% {
        transform: rotateZ(0);
    }

    70% {
        transform: rotateZ(-10deg);
    }

    80% {
        transform: rotateZ(0);
    }

    90% {
        transform: rotateZ(10deg);
    }

    100% {
        transform: rotateZ(0);
    }
}




/* 头部导航 */
.nav {
    position: relative;
    font-size: 0;
}

.nav>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.nav>ul>li {
    position: relative;
    vertical-align: middle;
    margin-left: .4rem;
}

.nav>ul>li:first-child {
    margin-left: 0;
}

.nav>ul>li>a {
    display: block;
    font-size: .2rem;
    text-align: center;
    position: relative;
    color: #fff;
    line-height: .52rem;
}

.nav>ul>li.has-ej:hover:after {
    transform: translateY(-50%) rotate(90deg);
}

.nav>ul>li>div {

    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 99;
    overflow: hidden;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .2);
    padding: .1rem 0;
    border-radius: 0 0 .1rem .1rem;
    border-top: .03rem solid #009144;
    visibility: hidden;
    opacity: 0;

}

.nav>ul>li:hover>div {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.nav>ul>li>div>ul {
    overflow: hidden;

}

.nav>ul>li>div>ul>li {
    width: 100%;
}

.nav>ul>li>div>ul>li a {
    display: block;
    font-size: .17rem;
    color: #333333;
    line-height: .4rem;
    white-space: nowrap;
    padding: 0 .1rem;
}

.nav>ul>li>div>ul>li:hover a {
    color: #fff;
}

.nav>ul>li>div>ul>li:hover {
    background: #009144;
}

.nav>ul>li:hover>a {
    opacity: 0.7;
}


/* head */


.search_btn {
    width: .31rem;
    height: .31rem;
    border-radius: .06rem;
    border: .01rem solid #FFFFFF;
    background: url(/images/ser.png) no-repeat center center;
    background-size: .16rem;
    margin-left: .3rem;
    transition: all 0.5s;
    cursor: pointer;
}

.search_btn:hover {
    border-radius: .1rem;
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 1.48rem;
    z-index: 10;
}



.head {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    padding-top: .15rem;
}

.head::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #009144;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}

.head.on::before {
    height: 100%;
}

.head.on .h-lk {
    display: none;
}

.head.on .logo a img {
    width: 3rem;
}

.head.on .logo {
    margin-bottom: .08rem;
}




.head .w18 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.h-lk {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.h-lk a {
    color: #ffffff;
    font-size: .16rem;
    margin-left: .21rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.h-lk a:hover {
    opacity: 0.7;
}

.h-lk a img {
    width: .16rem;
    margin-right: .1rem;
}

.logo a img {
    width: 3.62rem;
    transition: all 0.5s;
}

.logo {
    margin-bottom: .15rem;
}



/* foot */
.foot a {
    display: block;
}

.go-top {
    position: fixed;
    right: .1rem;
    bottom: 4rem;
    width: 1rem;
    height: 1rem;
    background: url(/images/go-top.png) no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
    transition: all 0.5s;
    display: none;
}

.go-top:hover {
    transform: scale(1.1);
}

.foot {
    background: url(/images/f-bg.png) no-repeat center top;
    background-size: 100% 100%;
    margin-top: -2rem;
    position: relative;
    z-index: 9;
}

.f-t1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: .5rem;
    padding-bottom: .56rem;
}

.f-mt p {
    font-size: .24rem;
    color: rgba(255, 255, 255, 0.8);
}

.f-mt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.f-mt>div {
    margin: 0 .14rem;
    cursor: pointer;
    position: relative;
}

.f-code {
    position: absolute;
    left: 50%;
    bottom: 180%;
    transform: translateX(-50%);
    padding: .05rem;
    border-radius: .05rem;
    background: #ffffff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.f-mt>div>img {
    width: .4rem;
    height: .4rem;
}

.f-mt>div:hover .f-code {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

.f-mt>div:hover>img {
    transform: scale(1.1);
}

.f-code::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    border-top: .1rem solid #fff;
    border-right: .1rem solid transparent;
    border-bottom: .1rem solid transparent;
    border-left: .1rem solid transparent;
}

.f-code img {
    width: 100%;
    height: 100%;
    display: block;
}
.f-lg {
    transform: translateX(-1.1rem);
}
.f-lg a img {
    width: 3.72rem;
    display: block;
}

.f-codebox {
    width: .9rem;
    height: .9rem;
    display: block;
}

.f-codebox img {
    width: 100%;
    height: 100%;
    display: block;
}

.f-gz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.f-gz p img {
    width: 1.22rem;
}


.f-t2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.f-lk {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.f-lk>div {
    width: 2.27rem;
    position: relative;
    margin: 0 .15rem;
    cursor: pointer;
}


.f-lk>div p {
    background: rgba(4, 141, 71, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);

    font-size: .16rem;
    line-height: .46rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 .2rem;
    background: url(/images/f-jt.png) no-repeat right .2rem center;
    background-size: .08rem;
}

.f-ej {
    position: absolute;
    left: 0;
    bottom: 120%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 .1rem 0 rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    padding: .1rem 0;
    /* max-height: 2.6rem; */
    overflow-y: auto;
}

.f-ej a {
    line-height: .35rem;
    padding: 0 .2rem;
    font-size: .16rem;
}

.f-ej a:hover {
    background-color: #009144;
    color: #ffffff;
}

.f-lk>div:hover .f-ej {
    bottom: 100%;
    visibility: visible;
    opacity: 1;
}

.f-lx p {
    font-size: .16rem;
    line-height: .36rem;
    color: rgba(255, 255, 255, 0.8);
}

.f-bot {
    margin-top: .5rem;
    border-top: .01rem solid rgba(216, 216, 216, 0.2);
    text-align: center;
    padding: .25rem 0;
}

.f-bot a {
    display: inline-block;
    font-size: .14rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.6);
}










@media screen and (max-width:1620px) {
    .w16 {
        padding-left: .15rem;
        padding-right: .15rem;
    }
}



@media screen and (max-width:1420px) {
    .w14 {
        padding-left: .15rem;
        padding-right: .15rem;
    }
}

@media screen and (max-width:1200px) {
    .f-lg{
        transform:none;
    }
    .f-t1 {
        padding: .3rem 0;
    }

    .foot {
        background: url(/images/f-bg2.png) no-repeat;
        background-size: cover;
    }

    .f-lk {
        justify-content: center;
        text-align: left !important;
    }

    .f-bot {
        margin-top: .2rem;
    }

    .f-lk>div {
        margin-bottom: 20px;

    }

    .f-t2>div,
    .f-t1>div {
        width: 100%;
        text-align: center;
    }

    .f-t1>div,
    .f-t1 {
        justify-content: center;
    }

    .f-lg a img {
        max-width: 85%;
        display: block;
        margin: 0 auto;
    }

    .go-top {
        display: none !important;
    }

    body {
        padding-top: .65rem;
    }

    /* 移动端导航 */
    .pc {
        display: none;
    }

    .m-index {
        display: block;
    }

    #m_nav * {
        transition: all 0s ease 0s;
    }

    .m_header_box {
        transition: all 0.6s ease 0s;
        position: relative;
        z-index: 100000;
    }

    .m_header_box header {
        padding: 0px 0px 0px 15px;
        height: 0.7rem;
        background: #009144;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 5px;
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .m_header_box header #logo img {
        height: auto;
        max-height: 0.5rem;
    }

    .m_header_box header #logo {
        padding: 0px;
        width: calc(100% - 80px);
    }

    #nav_btn_box.on {
        background: none;
    }

    #nav_btn_box {
        position: relative;
        width: 0.7rem;
        height: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    #nav_btn_box::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background: rgb(255, 255, 255);
    }

    #nav_btn_box::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0px;
        left: -.15rem;
        border-right: .15rem solid rgb(255, 255, 255);
        border-top: 0.7rem solid transparent;
        display: none;
    }

    #nav_btn {
        cursor: pointer;
        text-align: center;
        z-index: 99999;
        transition: all 0.5s ease 0s;
        outline: none;
        box-shadow: none;
    }

    #nav_btn .point {
        display: inline-block;
        width: 0.4rem;
        height: 22px;
        position: relative;
        outline: none;
    }

    #nav_btn .point:hover .navbtn,
    #nav_btn .point:hover .navbtn::after,
    #nav_btn .point:hover .navbtn::before {
        width: 0.28rem;
    }

    #nav_btn .navbtn {
        position: absolute;
        top: 12px;
        left: 0px;
        display: inline-block;
        width: 18px;
        height: 2px;
        transition: all 0.3s ease-out 0s;
        background: #009144;
    }

    #nav_btn .navbtn::after,
    #nav_btn .navbtn::before {
        position: absolute;
        left: 0px;
        display: inline-block;
        width: 24px;
        height: 2px;
        content: "";
        transition: all 0.3s ease-out 0s;
        background: #009144;
    }

    #nav_btn .navbtn::after {
        top: -8px;
    }

    #nav_btn .navbtn::before {
        top: 8px;
    }

    #nav_btn .point.on .navbtn {
        background: transparent;
    }

    #nav_btn .point.on .navbtn::after {
        transform: rotate(45deg);
        top: 0px;
    }

    #nav_btn .point.on .navbtn::before {
        transform: rotate(-45deg);
        top: 0px;
    }

    .m_nav_list {
        flex-direction: column;
        width: 100%;
        height: 100%;
        overflow: auto;
        align-items: center;
        display: flex;
        background: rgba(255, 255, 255, 0.1);
    }

    .m_nav_list::-webkit-scrollbar {
        display: none;
    }

    #m_nav {
        z-index: 99999;
        position: fixed;
        width: 100%;
        height: 100vh;
        right: -105vw;
        top: 0px;
        padding: 70px 20px 30px;
        overflow: hidden;
        pointer-events: none;
        transition: all 0.3s ease-out 0s;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background: 0% 0% / cover rgb(247, 247, 247);
        opacity: 0;
        visibility: hidden;
    }

    #m_nav .close {
        position: absolute;
        top: 7px;
        right: 15px;
        left: 15px;
        font-size: 30px;
        color: rgb(51, 51, 51);
        z-index: 10000;
        width: auto;
        height: 35px;
        border-radius: 0px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0px;
    }

    #m_nav.act {
        pointer-events: auto;
        right: 0px;
        opacity: 1;
        visibility: visible;
    }

    #m_nav .search_box input.submit {
        background: url("/images/submit.svg") center center / 0.28rem no-repeat rgb(6, 86, 183);
    }

    #m_nav .list_box0 {
        width: 90%;
        margin: 0.32rem auto 0px;
        flex-wrap: wrap;
    }

    #m_nav .list_box0 .li {
        text-align: center;
        color: #009144;
        margin: 0px 0rem 0.15rem;
        font-size: 14px;
    }

    #m_nav .list_box0 .li a {
        background: none;
        padding: 0 0.2rem 0 0;
    }

    #m_nav .old_rukou {
        margin: 0.24rem 0px 0px;
        width: 100%;
    }

    .list_box_nav_mobile {
        width: 100%;
        /* height: calc(100% - 3rem); */
        padding: 0px 0px 10px;
        overflow: auto;
        margin: 0px;
        /* flex: 1 1 0%; */
    }

    .list_box_nav_mobile>li {
        width: 90%;
        overflow: hidden;
        padding: 0px;
        position: relative;
        margin: 0px auto;
    }

    .list_box_nav_mobile>li .con {
        position: relative;
    }

    .list_box_nav_mobile>li .a {
        width: 100%;
        border-bottom: 1px solid rgb(226, 226, 226);
        line-height: 0.64rem;
        color: rgb(51, 51, 51);
        padding: 0px;
        font-size: 16px;
        display: flex;
        position: relative;
        transition: all 0.5s ease 0s;
    }

    .list_box_nav_mobile>li i {
        opacity: 1;
        width: 0.64rem;
        height: 0.64rem;
        background-image: url("/images/arrow_down.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: initial;
        background-origin: initial;
        background-clip: initial;
        background-color: initial;
        position: absolute;
        display: block;
        right: 0px;
        top: 2px;
        background-size: 15px 15px !important;
    }

    .list_box_nav_mobile>li.on1 i {
        transform: rotate(-90deg);
    }

    .list_box_nav_mobile>li.on .a {
        border-bottom: 1px solid rgb(226, 226, 226);
    }

    .list_box_nav_mobile>li .list {
        padding: 10px 0px;
        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: rgb(102, 102, 102);
        line-height: 2.5;
    }

    .nav_mask {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 888;
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
    }

    /* 手机搜索 */
    .wap_search {
        font-size: 0.16rem;
        border-radius: 5px;
        color: rgb(255, 255, 255);
        width: 100%;
        height: 0.6rem;
        display: block;
        margin-bottom: .1rem;
    }

    .wap_search form {
        height: 100%;
        border-radius: 0.2rem;
        background: rgb(255, 255, 255);
        position: relative;
        width: 3.68rem;
        margin: 0rem auto;
    }

    .wap_search .input {
        font-size: 0.2rem;
        color: #333;
        height: 0.6rem;
        line-height: 0.5rem;
        padding: 0px 0.24rem;
        box-shadow: none;
        appearance: none;
        float: left;
        border-right: 0px;
        background: none;
        width: calc(100% - 40px);
    }

    .wap_search .btn_blue {
        position: absolute;
        cursor: pointer;
        top: 0px;
        right: 0px;
        width: 0.6rem;
        height: 0.6rem;
        line-height: 0.6rem;
        border: 0px;
        background: url("/images/submit.svg") center center no-repeat #009144;
        border-radius: 50%;
    }

    .wap_search .btn_blue.fr {
        background: rgb(233, 237, 239);
        color: rgb(78, 79, 83);
    }

    .wap_search input::-webkit-input-placeholder {
        color: rgb(153, 153, 153);
    }

    .wap_search input:focus::-webkit-input-placeholder {
        color: transparent;
    }

    /* 移动端导航end */
}

@media screen and (max-width:768px) {}


@media screen and (max-width:480px) {
    .m_header_box header #logo img {
        height: 0.4rem;
    }
}