.banner {
    width: 100%;
    position: relative;
}

.banlist {
    position: relative;
}

.banlist .swiper-slide img {
    width: 100%;
}

.banlist .swiper-prev,
.banlist .swiper-next {
    position: absolute;
    left: 0;
    top: calc((100% - 58px) / 2);
    cursor: pointer;
    z-index: 99;
}

.banlist .swiper-next {
    left: auto;
    right: 0;
}


.header {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 9999;
    box-sizing: border-box;
    padding: 0 60px;
    transition: all 0.5s ease-in-out;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
}

.header .head {
    height: 90px;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 25px;
}

.header .head h1 img {
    height: 45px;
}

.navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 45%;
}

.navigation .search {
    width: 45px;
    height: 45px;
    border-radius: 10000px;
    background: #008A56;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}

.navigation::before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(../images/nav-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: -45px;
    top: 16px;
}

.nav {
    flex: 1;
    height: 60px;
    line-height: 60px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.nav a {
    color: #262626;
}

.nav .nLi {
    flex: 1;
    height: 60px;
    float: left;
    display: inline;
    text-align: center;
    position: relative;
    padding: 0 18px;
}


.nav .nLi h3 {
    height: 60px;
}

.nav .nLi h3 a {
    display: inline-block;
    font-size: 18px;
    text-align: center;
}

.nav .nLi:hover .sub {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.nav .sub {
    width: 100%;
    min-width: 120px;
    top: 100%;
    position: absolute;
    left: 0;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.17);
    border-radius: 0px 0px 15px 15px;
    /* padding: 20px 0; */
    z-index: 999;
}

.nav .sub li {
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    zoom: 1;
    position: relative;
    width: auto;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px;
}

.nav .li3 .sub {
    width: 160%;
    left: -30%;
}

.nav .li5 .sub {
    width: 120%;
    left: -10%;
}

.nav .sub a {
    display: block;
    color: #6C6C6C;
    font-size: 16px;
}

.nav .sub li:hover a {
    border-bottom: 1px solid #008754;
}

.nav .sub a:hover {
    color: #008754;
}


.nav .on h3 a,
.nav .nLi:hover h3 a {
    font-weight: bold;
    color: #008A56;
}

.nav .sub li .three-nav {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    width: 125px;
    background: rgba(0, 0, 0, .4);
}

.nav .sub li:hover .three-nav {
    display: block;
}

.nav .sub2 {
    width: 120%;
    top: 0px;
    position: absolute;
    background: rgba(0, 0, 0, .4);
    line-height: 60px;
    left: 100%;
    transition: all 0.5s ease-in-out;
    display: none;
}

.nav .sub li:hover .sub2 {
    display: block;
}

/* ---------------------- */

.content1 {
    width: 100%;
    padding: 100px 0;
    background: url(../images/content1Bg.png) center no-repeat;
    background-size: cover;
}

.content1 .about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aboutImg {
    width: 340px;
}

.aboutImg img {
    width: 100%;
}

.aboutText {
    flex: 1;
    box-sizing: border-box;
    padding-right: 108px;
    position: relative;
}

.aboutText .name {
    font-size: 36px;
    font-weight: bold;
    color: #008A56;
}

.aboutText .desc {
    font-size: 16px;
    line-height: 40px;
    height: 200px;
    text-align: justify;
    color: #757575;
    margin: 30px 0 100px 0;
}

.aboutBtn {
    /* width: 62.5%; */
    width: 82%;
    height: 148px;
    background: #46A14B;
    position: absolute;
    bottom: 57px;
    right: -60px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutBtn .xian {
    width: 0;
    height: 81px;
    display: block;
    opacity: 0.2;
    border-left: 1px solid #fff;
    margin: 0 9%;
}

.aboutBtn .box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutBtn .box p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

.aboutBtn .box .ico img {
    transition: transform 0.5s;
}

.aboutBtn .box:hover .ico img {
    animation: jello 1s linear;
}

.number {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.number .xian {
    width: 0;
    height: 95px;
    opacity: .5;
    display: block;
    border-right: 1px solid #D3D3D3;
}

.number .box .p1 {
    font-size: 16px;
    color: #2A2A2A;
}

.number .box .p1 span {
    font-size: 55px;
}

.number .box .p2 {
    font-size: 16px;
    color: #999;
}

/* ------------------------ */

.foot {
    width: 100%;
    background: #008A56;
    padding: 58px 0 48px 0;
}

.foot .fttop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ftnav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.ftnav a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.ftlogo {
    /* width: 28%; */
}

.ftlogo img {
    width: 100%;
}

.fttop .left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fttop .contact {
    margin-left: 45px;
}

.fttop .contact .box {
    font-size: 16px;
    color: #fff;
    line-height: 35px;
    display: flex;
    align-items: center;
}

.fttop .contact .box .ico {
    width: 30px;
    text-align: left;
    display: inline-block;
}


.banq {
    width: 100%;
    background: #46A14B;
    padding: 23px 0;
}

.banq p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    text-align: center;
}

.banq p a {
    color: rgba(255, 255, 255, .8);
}

.banq p br {
    display: none;
}

.yqlj .box {
    width: 248px;
    height: 45px;
    box-sizing: border-box;
    border: 1px solid rgba(216, 216, 216, .3);
    position: relative;
    cursor: pointer;
}

.yqlj .box h3 {
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    padding: 0 18px;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.yqlj .box h3::after {
    content: '';
    width: 16px;
    height: 8px;
    display: inline-block;
    background: url(../images/jt.png) no-repeat;
    position: absolute;
    right: 18px;
    top: 18px;
}

.yqlj .box ul {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 10px;
}

.yqlj .box ul li {
    width: 100%;
    line-height: 35px;
    text-align: center;
}

.yqlj .box ul li a {
    font-size: 16px;
    color: #757575;
}

.yqlj .box ul li:hover a {
    color: #008A56;
}

.yqlj .box:hover ul {
    display: block;
}

.foot .right {
    display: flex;
    align-items: center;
}

.code {
    margin-left: 60px;
    position: relative;
}

.code .ico {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.code .ico::before {
    content: '';
    width: 23px;
    height: 20px;
    display: inline-block;
    background: url(../images/sjx-ico.png) center no-repeat;
    position: absolute;
    top: -16px;
    left: 16px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.code .img {
    background: #fff;
    padding: 7px;
    position: absolute;
    bottom: calc(100% + 20px);
    left: -30px;
    display: none;
}

.code .img img {
    width: 102px;
    height: 102px;
}

.code:hover .img {
    display: block;
}

.code:hover .ico::before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

/* ------------------- */

.content3 {
    width: 100%;
    background: url(../images/content3Bg.png) center no-repeat;
    background-size: cover;
    padding: 100px 0 363px 0;
}

.content3 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newLeft {
    width: 161px;
}

.tabCount1 {
    width: calc(100% - 161px - 22px);
}

.tabCount1 .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    display: none;
}

.tabCount1 .item.active {
    display: flex;
}

.newSlide {
    width: 57%;
    position: relative;
    background: #fff;
}

.newSlide .swiper-slide .img {
    overflow: hidden;
}

.newSlide .swiper-slide .img img {
    width: 100%;
    aspect-ratio: 16/9;
    /* height: 395px; */
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.newSlide .swiper-slide .tt {
    width: 100%;
    height: 125px;
    box-sizing: border-box;
    padding: 0 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newSlide .swiper-slide .title {
    font-weight: bold;
    color: #2A2A2A;
    line-height: 30px;
    height: 30px;
    margin-bottom: 20px;
}

.newSlide .swiper-slide .dete {
    width: 104px;
    height: 28px;
    color: #9E9E9E;
    background: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newSlide .swiper-slide .dete img {
    margin-right: 2px;
}

.newSlide .swiper-slide:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.newSlide .swiper-slide:hover .title {
    color: #008A56;
}

.newSlide .swiper-pagination {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 9;
}

.newSlide .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    opacity: 0.2;
    background: #008A56;
    margin: 0 4px;
}

.newSlide .swiper-pagination-bullet-active {
    width: 35px;
    height: 17px;
    display: inline-block;
    background: url(../images/bullet-active.png) center no-repeat;
    background-size: cover;
    opacity: 1;
}

.infolist {
    width: calc(43% - 40px);
    background: #fff;
    box-sizing: border-box;
    padding: 28px 10px 28px 28px;
}

.infolist ul {
    width: 100%;
    max-height: 460px;
    overflow-y: scroll;
    box-sizing: border-box;
    padding-right: 34px;
}

.infolist li {
    border-bottom: 1px dashed #008A56;
    padding-bottom: 13px;
    margin-bottom: 30px;
    position: relative;
}

.infolist li::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 1px solid #008A56;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: all 0.5s ease-in-out;
}

.infolist li .title {
    width: 100%;
    color: #333;
    line-height: 25px;
    height: 25px;
    margin-bottom: 10px;
}

.infolist li .title::before {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    display: inline-block;
    border: 0.7px solid #008A56;
    border-radius: 50%;
    margin-right: 8px;
}

.infolist li .dete {
    color: #999;
    display: flex;
    align-items: center;
}

.infolist li .dete::before {
    content: '';
    display: inline-block;
    width: 13.4px;
    height: 13.4px;
    background: url(../images/dete-ico.png) center no-repeat;
    margin-right: 5px;
    margin-top: 2px;
}

.infolist li:hover .title {
    color: #008A56;
}

.infolist li:hover .title::before {
    width: 27px;
    height: 13px;
    background: url(../images/bullet-active.png) no-repeat;
    border: none;
    background-size: 100% 100%;
    border-radius: 0;
}

.infolist li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.column .title .name {
    font-size: 36px;
    font-weight: 900;
    color: #2A2A2A;
}

.column .title .en {
    font-size: 16px;
    color: #2A2A2A;
    opacity: .5;
}

.tabHead1 .more a {
    display: none;
    width: 135px;
    height: 55px;
    line-height: 55px;
    border-radius: 0px 5000px 5000px 0px;
    background: #C9EAD7;
    font-size: 16px;
    color: #2A2A2A;
    box-sizing: border-box;
    padding-left: 18px;
    margin-top: 32px;
}

.tabHead1 .more a.active {
    display: block;
}

.tabHead1 .title .name {
    width: 135px;
    height: 55px;
    line-height: 55px;
    border-radius: 0px 5000px 5000px 0px;
    background: #C9EAD7;
    font-size: 16px;
    color: #2A2A2A;
    box-sizing: border-box;
    padding-left: 18px;
    margin-top: 32px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.tabHead1 .title .name.active {
    width: 161px;
    background: #008A56;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.tabHead1 .title .name.active::before {
    content: '';
    width: 31px;
    height: 31px;
    display: inline-block;
    background: url(../images/name-active-ico.png) no-repeat;
    position: absolute;
    right: 9px;
    top: 12px;
}

.content2 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ywlyBg {
    width: 100%;
    position: relative;
}

.ywlyBg::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    background: url(../images/content2Bg.png) center no-repeat;
    background-size: 100% 100%;

    position: absolute;
    left: 0;
    top: 0;
}

.ywlyBg .img {
    min-height: 858px;
    display: none;
}

.ywlyBg .img.on {
    display: block;
}

.ywlyBg .img img {
    /* width: 100%; */
    height: auto;
    opacity: 0;
}

.ywlyBox {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    box-sizing: border-box;
    padding-top: 110px;
}

.ywlyBox .container {
    position: relative;
}

.tabHead2 {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin-top: 70px;
}

.tabHead2 .box {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: #FFFFFF;
    margin-right: 52px;
    box-shadow: 0px 0px 30px 0px rgba(55, 123, 59, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 63px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.tabHead2 .box .ico .img1 {
    display: block;
}

.tabHead2 .box .ico .img2 {
    display: none;
}

.tabHead2 .box p {
    font-size: 22px;
    color: #2A2A2A;
    margin-top: 10px;
}

.tabHead2 .box2 {
    margin-right: 36%;
}

.tabHead2 .box.on {
    background: #46A14B;
    box-sizing: border-box;
    border: 2px solid #FFFFFF;
    box-shadow: inset 0px 0px 30px 0px rgba(0, 43, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.tabHead2 .box.on p {
    color: #fff;
}

.tabHead2 .box.on .ico .img1 {
    display: none;
}

.tabHead2 .box.on .ico .img2 {
    display: block;
}

.ywly_more {
    width: 45%;
    text-align: center;
}

.ywly_more a {
    display: none;
    opacity: .5;
}

.ywly_more a.on {
    display: inline-block;
}

.ywly_more a:hover {
    opacity: 1;
}

.tabCount2 {
    width: 330px;
    position: absolute;
    right: 12%;
    top: 0;
}

.tabCount2 .box {
    width: 100%;
    display: none;
}

.tabCount2 .box.on {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.tabCount2 .box .name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.tabCount2 .box .xian {
    width: 85px;
    height: 0;
    border-bottom: 3px solid #fff;
    display: block;
    margin: 8px 0 15px 0;
}


.tabCount2 .box .desc {
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    height: 150px;
    color: #FFFFFF;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 30px;
}

.nydt img {
    width: 100%;
}

.nheader {
    width: 100%;
    padding-top: 90px;
}

.nheader .header {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    top: 0;
    bottom: auto;
}

.textlist .box {
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.textlist .box::before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 1px solid #008A56;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.textlist .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.textlist .box a {
    display: flex;
    align-items: center;
}

.textlist .box .dete {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(216, 216, 216, .5);
}

.textlist .box .d {
    font-size: 24px;
    color: #008A56;
}

.textlist .box .y {
    opacity: 0.5;
    color: #008A56;
}

.textlist .box .tt {
    flex: 1;
}

.textlist .box .title {
    color: #353535;
    line-height: 25px;
    height: 25px;
}

.textlist .box .desc {
    color: #494949;
    opacity: 0.5;
    color: #494949;
    margin-top: 10px;
    -webkit-line-clamp: 1;
    line-height: 20px;
    height: 20px;
}

.list-more {
    width: 39px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(216, 216, 216, .5);
}

.list-more .ico {
    width: 39px;
    height: 39px;
    background: url(../images/list-more-ico.png) center no-repeat;
}

.piclist .list-more {
    height: 70%;
    display: flex;
    align-items: center;
}


.textlist .box:hover .title {
    color: #008A56;
    font-weight: bold;
}

.textlist .box:hover .y {
    opacity: 1;
}

.textlist .box:hover .list-more .ico {
    background: url(../images/list-more-ico2.png) center no-repeat;
}


.crumbs {
    width: 100%;
    display: flex;
    margin-bottom: 50px;
}

.crumbs .name {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 0 45px;
    border: 2px solid #FFFFFF;
    background: #46A14B;
    box-shadow: inset 0px 0px 30px 0px rgba(0, 43, 0, 0.5);
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: -88px;
    position: relative;
    z-index: 99;
}

.crumbs .list {
    flex: 1;
    box-sizing: border-box;
    padding-left: 12px;
}

.crumbs .weizhi {
    width: 100%;
    line-height: 40px;
    border-bottom: 0.8px solid rgba(38, 38, 38, .2);
    color: #999;
    text-align: right;
    position: relative;
}

.crumbs .weizhi::before {
    content: '';
    width: 11px;
    height: 11px;
    box-sizing: border-box;
    border: 0.8px solid rgba(38, 38, 38, .2);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -11px;
    bottom: -6px;
}

.crumbs .weizhi a {
    color: #999;
}

.subNav {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-left: 30px;
}

.subNav .box {
    height: 46px;
    line-height: 46px;
    padding: 0 18px;
    border-radius: 0px 0px 10px 10px;
    margin-right: 20px;
}

.subNav .box.on,
.subNav .box:hover {
    background: #008A56;
}

.subNav .box a {
    color: #262626;
    font-size: 18px;
}

.subNav .box.on a,
.subNav .box:hover a {
    color: #fff;
    font-weight: bold;
}

.piclist .box {
    width: 100%;
    background: #FFFFFF;
    margin-bottom: 30px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.piclist .box::before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 1px solid #008A56;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.piclist .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.piclist .box a {
    display: flex;
    flex-wrap: wrap;
}

.piclist .box .img {
    width: 33.15%;
    overflow: hidden;
}

.piclist .box .img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.piclist .box .tt {
    flex: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 30px;
    position: relative;
}

.piclist .box .tt::before {
    content: '';
    width: 174px;
    height: 34px;
    display: inline-block;
    background: url(../images/logo-ico.png) center no-repeat;
    position: absolute;
    right: 120px;
    bottom: 44px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.piclist .box .tt .text {
    flex: 1;
}

.piclist .box .title {
    color: #353535;
    line-height: 25px;
    height: 25px;
}

.piclist .box .tt .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #A4A4A4;
    margin: 10px 0 50px 0;
}

.piclist .box .tt .dete {
    color: #A4A4A4;
}

.piclist .box .tt .dete::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../images/dete-ico.png) center no-repeat;
    margin-right: 5px;
    margin-top: 2px;
}

.piclist .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.piclist .box:hover .title {
    color: #008A56;
    font-weight: bold;
}

.piclist .box:hover .list-more .ico {
    background: url(../images/list-more-ico2.png) center no-repeat;
}

.piclist .box:hover .tt::before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.picture .info {
    display: flex;
    flex-wrap: wrap;
}

.picture .box {
    width: calc((100% - 66px) / 3);
    margin-right: 32px;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 25px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.picture .box:nth-child(3n) {
    margin-right: 0;
}

.picture .box .img {
    overflow: hidden;
}

.picture .box .img img {
    width: 100%;
    aspect-ratio: 16/9;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture .box .tt {
    box-sizing: border-box;
    padding-top: 10px;
}

.picture .box .title {
    color: #373737;
    line-height: 30px;
    text-align: justify;
}

.picture .box:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.picture .box:hover .title {
    color: #008A56;
    font-weight: bold;
}

.detail {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 54px 142px;
    margin-bottom: 70px;
}

.detail .name {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #373737;
}

.detail .timer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    padding: 20px 0 15px 0;
    border-bottom: 1px solid rgba(216, 216, 216, .5);
}

.detail .timer>div {
    margin: 0 38px;
}

.detail .dtl {
    box-sizing: border-box;
    padding: 20px 0;
}

.detail .dtl p,
.detail .dtl p span {
    line-height: 40px;
    font-size: 18px;
    color: #0A0A0A;
    text-align: justify;
}

.detail .dtl p {
    margin: 15px 0;
}

.detail-page {
    padding-top: 20px;
}

.detail-page .box {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 0 20px;
}

.detail-page .box1 {
    margin-bottom: 27px;
}

.detail-page .box a {
    font-size: 16px;
    color: #9E9E9E;
}

.detail-page .box:hover {
    background: #008A56;
}

.detail-page .box:hover a {
    color: #FFFFFF;
}

/* ------------------ */

.sch-form {
    display: block;
    background: #fff;
    position: relative;
    box-shadow: 0 0 10px #ccc;
}

.padding-20 {
    padding: 20px;
}

.sch-form .sch-input {
    border: none;
    background: #fff;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #aaa;
    outline: unset;
}

.sch-form .sch-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    border: none;
    line-height: 30px;
    cursor: pointer;
    color: #aaa;
    font-weight: bold;
}

.sch-form .sch-btn .layui-icon {
    font-size: 18px;
}

.searchlist {
    margin-bottom: 40px;
}

.searchlist .box {
    width: 100%;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 0px;
    margin-bottom: 30px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    padding: 20px;
}

.searchlist .box .title {
    color: rgb(53, 53, 53);
    line-height: 25px;
    height: 25px;
}

.searchlist .box .dete {
    opacity: 0.5;
    color: rgb(73, 73, 73);
    margin-top: 10px;
}

.toPage {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    box-sizing: border-box;
    border: 1.5px solid #D8D8D8;
    position: absolute;
    left: calc((100% - 55px) / 2);
    bottom: 24%;
    z-index: 99;
    cursor: pointer;
}

.toPage a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.toPage img {
    position: absolute;
    left: 18px;
    animation: downico 1.5s ease-out infinite;
}

@keyframes downico {
    0% {
        top: 0;
        opacity: 1;
    }

    35% {
        top: 50%;
        opacity: 0;
    }

    65% {
        top: -50%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.landing-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.landing-box .box {
    width: calc((100% - 40px) / 3);
    background: rgba(138, 87, 66, 0.09);
    height: 200px;
    box-sizing: border-box;
    border: 1px solid #D8D8D8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 20px;
}

.landing-box .box .d {
    color: #353535;
    text-align: center;
    margin: 15px 0 10px 0;
}

.landing-box .box .n {
    color: #767676;
    text-align: center;
}

.landing-map img {
    width: 100%;
}

/* ---------- */
.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.mbheader .header-con {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbheader .header-con h1 a {
    display: inline-block;
}

.mbheader .header-con .logo {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    width: 100%;
    max-height: 45px;
}

.sp_header {
    height: 50px;
    background: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 50px;
    width: 70%;
}

.sp_logo img {
    margin: auto;
    width: 100%;
    height: 100%;
}

.sp_nav {
    width: 30px;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 10px;
    flex: none;
}

.sp_nav span {
    display: block;
    background: #008A56;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: absolute;
    z-index: 9999;
    background: #eee;
    width: 100%;
    height: auto !important;
    padding-bottom: 60px;
    font-size: 14px;
    line-height: 40px;
    top: -1000%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 80px
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px)
}

.sjj_nav>ul>li:first-child .language {
    float: right;
    width: 70px;
    overflow: hidden;
    line-height: 30px;
    margin-top: 5px
}

.sjj_nav>ul>li:first-child .language a {
    width: 35px;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 30px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 40px;
    font-size: 14px
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    /* width: 80% */
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #008A56
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}