@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}


/*全局样式*/

html,
body {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}


/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: .18rem 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #1D6D40;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

@media (max-width:1199px) {
    .container {
        width: 100%;
        padding-left: .2rem;
        padding-right: .2rem;
    }
}

.pic:before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .6;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    color: #FFF;
    align-items: flex-end;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2rem;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.header .logo img {
    height: .7rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .top {
    color: #FFF;
    justify-content: flex-end;
    margin-top: .2rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.header .top>a {
    color: #FFF;
    font-size: .16rem;
    margin-right: .25rem;
    line-height: .24rem;
    padding-right: .25rem;
}

.header .top>a::after,
.header .top .quick::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: .14rem;
    background-color: #FFF;
}

.header .top .search-btn {
    width: .24rem;
    height: .24rem;
    background: url(../images/search.svg)no-repeat center;
    background-size: 100%;
    cursor: pointer;
}

.header .top .quick {
    padding-right: .45rem;
    font-size: .16rem;
    padding-left: .25rem;
    margin-right: .25rem;
    cursor: pointer;
}

.header .top .quick::before {
    content: '';
    position: absolute;
    right: .25rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    width: .08rem;
    height: .08rem;
    border-bottom: 1px #FFF solid;
    border-right: 1px #FFF solid;
}

.header .top .quick .sub {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #FFF;
    border-top: 2px #1D6D40 solid;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
}

.header .top .quick .sub>a {
    color: #333;
    line-height: 2.4;
    font-size: .16rem;
}

.header.fixed {
    background-image: linear-gradient(90deg, #44a785, #aae261);
}

.header.fixed .top {
    transform: translateY(-.3rem);
    -webkit-transform: translateY(-.3rem);
    -moz-transform: translateY(-.3rem);
    -ms-transform: translateY(-.3rem);
    -o-transform: translateY(-.3rem);
}

.header.fixed .logo img {
    height: .55rem;
}

.header.fixed::after {
    display: none;
}

.menu-btn {
    display: none;
    background: url(../images/menu.svg)no-repeat center;
    width: 30px;
    height: 30px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: .2rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.menu-btn.close {
    background-image: url(../images/close.svg);
}

.nav>li {
    padding-left: .25rem;
    padding-right: .25rem;
    line-height: .6rem;
}

.nav li:last-child {
    padding-right: 0;
}

.nav li>a {
    color: #FFF;
}

.nav li>a>span::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.05rem;
    width: 0;
    height: 1px;
    width: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    background-color: #FFF;
}

.nav li>a>span::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 1px;
    background-color: #FFF;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    height: 0;
    bottom: -.05rem;
}

.nav .drop {
    width: 100%;
    left: 0;
    top: .65rem;
    position: absolute;
    transition: transform 0.2s linear, opacity 0.2s linear;
    -webkit-transition: transform 0.2s linear, opacity 0.2s linear;
    -moz-transition: transform 0.2s linear, opacity 0.2s linear;
    -ms-transition: transform 0.2s linear, opacity 0.2s linear;
    -o-transition: transform 0.2s linear, opacity 0.2s linear;
    transform-origin: top;
    z-index: 9;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    background-color: #ffffff;
    line-height: 3;
    font-size: .16rem;
    border-top: 2px #1D6D40 solid;
    padding: .15rem 0 .2rem 0;
}

.search-content {
    background: rgba(29, 109, 64, .8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100001;
    display: none;
    width: 100%;
    height: 100%;
}

.search-content .close {
    position: absolute;
    right: .6rem;
    top: .6rem;
    width: .6rem;
    height: .6rem;
    background: url(../images/close.svg)no-repeat center;
    background-size: .4rem;
    cursor: pointer;
    z-index: 10;
}

.search-content .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 7rem;
    height: .7rem;
    border-bottom: 1px #FFF solid;
}

.search-content .content input[type='text'] {
    color: #FFF;
    font-size: .18rem;
    background: none;
    padding-left: .15rem;
}

.search-content .content input[type='text']::placeholder {
    color: #FFF;
}

.search-content .content input[type='submit'] {
    width: .6rem;
    background: url(../images/search.svg)no-repeat center;
    background-size: .3rem;
}

.footer {
    background-color: #FFF;
    padding-top: .4rem;
    font-size: .16rem;
}

.footer .backtop {
    position: absolute;
    right: .2rem;
    width: .8rem;
    z-index: 2;
    top: -.4rem;
}

.footer .backtop span {
    width: 100%;
    height: .8rem;
    background-image: linear-gradient(45deg, rgba(66, 166, 134, 1), rgba(193, 239, 89, 1));
    box-shadow: 0 .04rem .1rem rgba(0, 0, 0, 0.16);
}

.footer .backtop span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/top.svg)no-repeat center;
    background-size: .34rem;
}

.footer .backtop>div {
    color: rgba(202, 202, 202, 0.8);
    font-family: 'arial';
    line-height: 1;
    margin-top: .1rem;
    white-space: nowrap;
}

.footer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background-image: linear-gradient(90deg, #07594B, #36AC2F);
    z-index: 1;
}

.footer .logo {
    margin-right: 1.4rem;
}

.footer .logo img {
    height: 1.63rem;
}

.footer .erwma-con>div {
    margin-right: .2rem;
    width: .8rem;
    cursor: pointer;
}

.footer .erwma-con .wx span {
    width: 100%;
    height: .33rem;
    background: url(../images/f-wx.svg)no-repeat center;
    background-size: auto 100%;
    width: 100%;
}

.footer .erwma-con .wb span {
    width: 100%;
    height: .33rem;
    background: url(../images/f-wb.svg)no-repeat center;
    background-size: auto 100%;
    width: 100%;
}

.footer .erwma-con .erwma {
    position: absolute;
    left: 50%;
    top: .45rem;
    background-color: #FFF;
    width: .8rem;
    height: .8rem;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, 0.16);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: none;
}

.footer .erwma-con .erwma img {
    width: 100%;
}

.footer .erwma-con .erwma::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 6px transparent solid;
    border-right: 6px transparent solid;
    border-bottom: 6px #FFF solid;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.footer .tit {
    font-size: .22rem;
    font-weight: bold;
    line-height: 1.1;
}

.footer .link {
    width: 2.6rem;
    margin-right: .9rem;
}

.footer .link .con {
    margin-top: .1rem;
}

.footer .text-con {
    line-height: 1.6;
    margin-top: .25rem;
}

.footer .text-con>div {
    margin-top: .1rem;
    padding-left: .25rem;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: .17rem;
}

.footer .text-con .address {
    background-image: url(../images/address.svg);
}

.footer .text-con .tel {
    background-image: url(../images/tel.svg);
}

.footer .text-con .fax {
    background-image: url(../images/fax.svg);
}

.footer .text-con .email {
    background-image: url(../images/email.svg);
}

.copyright {
    border-top: 1px #CACACA solid;
    padding: .2rem;
    margin-top: .2rem;
}

.copyright>img {
    margin-right: .1rem;
}

@media (min-width:1025px) {
    .header .top .quick .sub>a:hover {
        color: #1D6D40;
        font-weight: bold;
    }
    .nav li:hover>a,
    .nav li:hover .drop a:hover {
        font-weight: bold;
    }
    .nav li:hover>a>span::after {
        width: 100%;
    }
    .nav li:hover>a>span::before {
        height: .2rem;
        bottom: -.25rem;
    }
    .nav li:hover .drop,
    .header .top .quick:hover .sub {
        opacity: 1;
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
    }
    .header.fixed {
        margin-top: -.5rem;
        padding-bottom: .1rem;
    }
    .header.fixed .logo img {
        height: .55rem;
    }
    .header.fixed {
        padding-top: .2rem;
    }
    .footer .erwma-con .wx:hover span {
        background-image: url(../images/f-wx-on.svg);
    }
    .footer .erwma-con .wb:hover span {
        background-image: url(../images/f-wb-on.svg);
    }
    .footer .erwma-con>div:hover .erwma {
        display: block;
    }
}

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
    .header {
        height: 1.1rem;
        align-items: center;
        z-index: 1001;
    }
    .header::after {
        height: 120%;
    }
    .header .top {
        margin-right: 40px;
        margin-top: 0;
        position: relative;
        z-index: 1001;
    }
    .header .top>a,
    .header .top .quick {
        display: none;
    }
    .header .top .search-btn {
        width: 30px;
        height: 30px;
    }
    .header .logo {
        position: relative;
        z-index: 1001;
    }
    .header .logo img {
        height: .6rem;
    }
    .header.fixed::after {
        display: none;
    }
    .header.on {
        background: none;
    }
    .header.on::after {
        display: none;
    }
    .header.fixed .top {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .menu-btn {
        display: block;
        z-index: 1001;
    }
    .nav {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        overflow-y: scroll!important;
        display: none;
        background: url(../images/fixbg1.png)no-repeat center;
        background-size: cover;
        z-index: 100;
        height: 100vh;
        padding: 1.1rem .3rem .2rem .3rem;
        margin-top: 0;
    }
    .nav li {
        padding-left: 0;
        padding-right: 60px;
    }
    .nav li>a {
        font-size: 16px;
        line-height: 60px;
    }
    .nav .arrow {
        position: absolute;
        right: 0;
        top: 0;
        height: 60px;
        width: 30px;
    }
    .nav .arrow::after {
        content: '';
        background: url(../images/arrow3.svg)no-repeat center;
        background-size: 14px;
        width: 30px;
        height: 30px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .nav .cur .arrow::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .nav .drop {
        position: static;
        left: auto;
        transform: translate(0, 0);
        opacity: 1;
        width: 100%;
        display: none;
        text-align: left;
        padding-top: 0;
        background: none;
        padding-bottom: 0;
        border-top: 0;
        font-size: 14px;
        padding-left: 20px;
    }
    .nav .drop a {
        color: #FFF;
    }
    .footer,
    .footer .link select,
    .search-content .content input[type='text'] {
        font-size: 14px;
    }
    .footer .erwma-con,
    .footer .backtop {
        display: none;
    }
    .footer .tit {
        font-size: 16px;
    }
    .footer .logo {
        margin-right: 1rem;
    }
    .footer .link {
        margin-right: .3rem;
    }
}

@media (max-width:950px) {
    .footer .logo {
        margin-right: .5rem;
    }
}

@media (max-width:767px) {
    .header {
        height: 65px;
    }
    .header .logo img {
        height: 40px !important;
    }
    .nav {
        padding-top: 70px;
    }
    .footer .logo,
    .footer .link {
        margin-right: 0;
        width: 100%;
    }
    .footer .logo {
        justify-content: center;
    }
    .footer .logo img {
        height: 80px;
    }
    .footer .link,
    .footer .info {
        margin-top: .3rem;
    }
    .footer .link .con {
        margin-top: 0;
    }
}

.banner {
    overflow: hidden;
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
    height: 20%;
}

.banner img {
    width: 100%;
    transition: all 5s;
    -webkit-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.banner .swiper-slide-active img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.banner .button {
    position: absolute;
    right: 0;
    bottom: .3rem;
    z-index: 9;
    padding-right: 1.6rem;
    padding-left: .9rem;
}

.banner .button::before {
    content: '';
    position: absolute;
    left: -.3rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .3rem;
    height: .3rem;
    background: url(../images/icon.svg)no-repeat center;
    background-size: 100%;
}

.banner .button::after {
    content: '';
    height: 1px;
    background-color: #D8D8D8;
    width: 100%;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.banner .swiper-pagination {
    position: initial;
    bottom: auto;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    position: initial;
    margin-top: auto;
    width: .46rem;
    height: .46rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: .12rem;
}

.banner .swiper-button-prev {
    margin-right: .5rem;
}

.banner .swiper-pagination-bullet {
    margin-right: .9rem;
    width: .24rem;
    height: .24rem;
    opacity: 1;
    background-color: #D8D8D8;
    position: relative;
}

.banner .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #FFF;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.banner .swiper-pagination-bullet-active {
    width: .3rem;
    height: .3rem;
    border: 1px #FFF dashed;
    background: none;
}

.banner .swiper-pagination-bullet-active::after {
    width: .22rem;
    height: .22rem;
}

@font-face {
    font-family: 'SourceHanSerifCN-Regular';
    src: url('../fonts/SourceHanSerifCN-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-SemiBold';
    src: url('../fonts/SourceHanSerifCN-SemiBold.otf');
}

@font-face {
    font-family: 'SourceHanSerifCN-Bold';
    src: url('../fonts/SourceHanSerifCN-Bold.otf');
}

@font-face {
    font-family: 'Arsenal-Bold';
    src: url('../fonts/Arsenal-Bold.otf');
}

.home-about {
    padding-top: 1.5rem;
    background: url(../images/bg1.png)no-repeat .4rem .4rem;
    background-size: 2.45rem;
}

.home-about .text-con {
    width: 66.666%;
    padding-right: .7rem;
}

.home-about .text-con .title {
    font-size: .2rem;
    color: #999;
    margin-top: -.65rem;
}

.home-about .text-con .title span {
    margin-right: .5rem;
    font-family: 'SourceHanSerifCN-SemiBold';
    cursor: pointer;
}

.home-about .text-con .title span.on {
    color: #1D6D40;
}

.home-about .text-con .content {
    margin-top: .4rem;
}

.home-about .text-con .content .tit {
    color: #1D6D40;
    font-size: .36rem;
    font-family: 'SourceHanSerifCN-Bold';
    line-height: 1;
}

.home-about .text-con .content .text {
    margin-top: .4rem;
    font-size: .16rem;
    line-height: 1.9;
}

.home-about .text-con .content .num-box {
    margin-top: .45rem;
    font-size: .16rem;
    line-height: 1.1;
}

.home-about .text-con .content .num-box .num {
    color: #666;
}

.home-about .text-con .content .num-box .num span {
    color: #1D6D40;
    font-size: .46rem;
    font-family: 'Arsenal-Bold';
    display: inline-block;
}

.home-about .text-con .content .card:nth-child(1) .num .counter {
    width: 1.2rem;
}

.home-about .text-con .content .card:nth-child(2) .num .counter {
    width: .3rem;
}

.home-about .text-con .content .card:nth-child(3) .num .counter {
    width: .5rem;
}

.home-about .text-con .content .num-box .txt {
    margin-top: .1rem;
}

.home-about .text-con .content .num-box .card::after {
    content: '';
    position: absolute;
    width: 1px;
    height: .4rem;
    right: -1.8rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #D8D8D8;
}

.home-about .text-con .content .num-box .card:last-child::after {
    display: none;
}

.home-about .item {
    width: 33.333%;
    height: 4.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    z-index: 20;
    overflow: hidden;
}

.home-about .item:hover>img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.home-about .item .icon {
    width: .8rem;
    height: .8rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-about .item .icon img {
    width: 100%;
}

.home-about .item .tit {
    font-weight: bold;
    line-height: 1.1;
    font-size: .36rem;
    margin-top: .3rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-about .item .en {
    font-size: .14rem;
    font-family: 'SourceHanSerifCN-Regular';
    line-height: 1.7;
}

.home-about .item .arrow {
    position: absolute;
    right: .6rem;
    bottom: .6rem;
    background: url(../images/arrow1.svg)no-repeat center;
    background-size: 100%;
    width: .38rem;
    height: .1rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-about .item .box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.home-two {
    margin-top: 1.25rem;
    background: url(../images/bg2.png)no-repeat center .7rem;
    background-repeat: 100%;
    padding-bottom: 2rem;
}

.home-title .title {
    line-height: 1.1;
    font-family: 'SourceHanSerifCN-Bold';
    color: #1D6D40;
    font-size: .42rem;
    z-index: 10;
}

.home-title .more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: url(../images/more.svg)right center no-repeat;
    background-size: .28rem;
    padding-right: .35rem;
    color: #666;
    font-size: .16rem;
    z-index: 11;
}

.home-dt {
    width: 9.4rem;
    margin-right: .8rem;
}

.home-dt .home-title .title {
    padding-left: .2rem;
}

.home-dt .home-title .title::after {
    content: '';
    width: 2.04rem;
    height: .94rem;
    position: absolute;
    left: 0;
    bottom: -.1rem;
    background: url(../images/t1.png)no-repeat left top;
    background-size: 100%;
    z-index: -1;
}

.home-dt .focus {
    margin-top: .75rem;
}

.home-dt .swiper-slide {
    overflow: hidden;
    padding-top: 60.64%;
}

.home-dt .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
}

.home-dt .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
    z-index: 1;
}

.home-dt .swiper-slide .text-con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #FFF;
    padding: 0 1rem .2rem .2rem;
    line-height: 1.1;
}

.home-dt .swiper-slide .date {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: .18rem;
}

.home-dt .swiper-slide .tit {
    font-size: .22rem;
    font-weight: bold;
    margin-top: .1rem;
}

.home-dt .swiper-button-prev,
.home-dt .swiper-button-next {
    right: 0;
    width: .58rem;
    height: .58rem;
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: .24rem;
    margin-top: auto;
}

.home-dt .swiper-button-next {
    bottom: .58rem;
    top: auto;
    background-color: #1D6D40;
}

.home-dt .swiper-button-prev {
    left: auto;
    bottom: 0;
    background-color: #F3D267;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.home-dt .con .item {
    margin-top: .3rem;
    width: 31%;
    margin-right: 3.5%;
    padding-bottom: .4rem;
}

.home-dt .con .item:last-child {
    margin-right: 0;
}

.home-dt .con .item .date {
    color: #1D6D40;
}

.home-dt .con .item .tit {
    line-height: 1.7;
    margin-top: .1rem;
}

.home-dt .con .item .arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: .62rem;
    height: .1rem;
    background: url(../images/arrow2.svg)no-repeat left bottom;
    background-size: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-notice .home-title .title {
    padding-left: .5rem;
}

.home-notice .home-title .title::after {
    content: '';
    width: 1.47rem;
    height: .78rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/t2.png)no-repeat left top;
    background-size: 100%;
    z-index: -1;
}

.home-notice .content {
    margin-top: .7rem;
}

.home-notice .content .item {
    height: 1.22rem;
    background: url(../images/tbg5.svg)no-repeat left top;
    background-size: 100% 100%;
    margin-bottom: .3rem;
    padding-left: .35rem;
    padding-right: .35rem;
}

.home-notice .content .item:last-child {
    margin-bottom: 0;
}

.home-notice .content .item .date {
    color: #999;
    font-size: .14rem;
    line-height: 1.1;
    margin-right: .5rem;
}

.home-notice .content .item .date span {
    color: #1D6D40;
    font-size: .3rem;
}

.home-notice .content .item .date::after {
    content: '';
    position: absolute;
    right: -.25rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: .44rem;
    background-color: #D8D8D8;
}

.home-notice .content .item .tit {
    line-height: 1.7;
}

.home-yanchu {
    margin-top: 1.2rem;
}

.home-yanchu .home-title .title {
    padding-left: .45rem;
}

.home-yanchu .home-title .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/t3.png)no-repeat left bottom;
    background-size: 100%;
    width: 1.2rem;
    height: .68rem;
}

.home-yanchu .content {
    margin-top: 1rem;
}

.home-yanchu .swiper-slide {
    overflow: hidden;
    height: 5.35rem;
}

.home-yanchu .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    height: 100%;
    z-index: 1;
}

.home-yanchu .swiper-slide .tit {
    position: absolute;
    right: .2rem;
    top: .4rem;
    font-size: .2rem;
    z-index: 10;
    writing-mode: vertical-rl;
    color: #FFF;
}

.home-yanchu .swiper-slide .text-con {
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 100%;
    color: #FFF;
    z-index: 10;
    padding-left: .2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    padding-bottom: .2rem;
}

.home-yanchu .swiper-slide .date {
    background: url(../images/date.svg)no-repeat left center;
    padding-left: .3rem;
    background-size: .16rem;
}

.home-yanchu .swiper-slide .name {
    background: url(../images/name.svg)no-repeat left center;
    padding-left: .3rem;
    background-size: .16rem;
    margin-top: .1rem;
}

.home-yanchu .swiper-button-black {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #333 solid;
    background-size: .16rem !important;
    width: .58rem;
    height: .58rem;
    z-index: 20;
}

.home-yanchu .swiper-button-prev {
    left: -.9rem;
}

.home-yanchu .swiper-button-next {
    right: -.9rem;
}

.home-sns {
    height: 10.37rem;
    background: url(../images/bg3.png)no-repeat center top;
    background-size: 100% 100%;
    z-index: 20;
    margin-top: -1.1rem;
    padding-top: 1.5rem;
}

.home-sns .home-title {
    margin-top: .1rem;
}

.home-sns .home-title .title {
    padding-left: .15rem;
}

.home-sns .home-title .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: .1rem;
    width: 1rem;
    height: .8rem;
    background: url(../images/t4.png)no-repeat left bottom;
    background-size: 100%;
    z-index: -1;
}

.home-sns .l-con {
    width: 7.95rem;
    margin-top: .25rem;
}

.home-sns .l-con .item {
    width: 100%;
    height: 5rem;
    margin-top: .95rem;
}

.home-sns .item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    z-index: 1;
    height: 30%;
}

.home-sns .l-con .item::before {
    content: '';
    position: absolute;
    left: -.2rem;
    top: -.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-top: 6px #9FCB9B solid;
    border-left: 6px #9FCB9B solid;
}

.home-sns .item .pic {
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.home-sns .item .icon {
    position: absolute;
    right: .1rem;
    top: .1rem;
    width: .57rem;
}

.home-sns .item .icon img {
    width: 100%;
}

.home-sns .text-con {
    position: absolute;
    left: 0;
    bottom: .25rem;
    width: 100%;
    z-index: 10;
    color: #FFF;
    padding-left: .2rem;
}

.home-sns .text-con .date {
    background: url(../images/date.svg)no-repeat left center;
    padding-left: .25rem;
    background-size: .16rem;
}

.home-sns .text-con .tit {
    line-height: 1;
    margin-top: .1rem;
    font-size: .16rem;
}

.home-sns .r-con {
    width: 7.7rem;
}

.home-sns .r-con .r1 {
    width: 3.85rem;
}

.home-sns .r-con .r1 .item {
    height: 4.54rem;
}

.home-sns .r-con .r1 .item:last-child {
    height: 2.66rem;
    margin-top: .2rem;
}

.home-sns .r-con .r2 {
    width: 3.7rem;
}

.home-sns .r-con .r2 .item {
    height: 5rem;
    margin-top: .7rem;
}

.home-sns .r-con .r2 .item::before {
    content: '';
    position: absolute;
    right: -.2rem;
    bottom: -.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom: 6px #9FCB9B solid;
    border-right: 6px #9FCB9B solid;
}

.home-sns .sns {
    margin-top: .6rem;
}

.home-sns .sns>div {
    margin-right: .2rem;
    cursor: pointer;
}

.home-sns .sns>div:last-child {
    margin-right: 0;
}

.home-sns .sns>div .ico {
    width: .63rem;
    height: .63rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.home-sns .sns .erwma {
    display: none;
    position: absolute;
    left: 50%;
    top: .95rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: .87rem;
}

.home-sns .sns .erwma::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -.22rem;
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotate(-45deg);
    width: .08rem;
    height: .08rem;
    border-left: 1px #4D8C41 solid;
    border-bottom: 1px #4D8C41 solid;
}

.home-sns .sns .erwma img {
    width: 100%;
}

.home-sns .sns .wx .ico {
    background-image: url(../images/wx1.svg);
}

.home-sns .sns .wb .ico {
    background-image: url(../images/wb1.svg);
}

.home-sns .sns .dou .ico {
    background-image: url(../images/dou1.svg);
}

.home-sch {
    background: url(../images/bg4.png)no-repeat left top;
    background-size: 5.8rem;
    padding-top: 1.25rem;
    margin-top: -.3rem;
    padding-bottom: 1.5rem;
}

.home-sch .home-title .title::after {
    content: '';
    position: absolute;
    width: 2.15rem;
    height: 1.41rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: url(../images/t5.png)no-repeat center;
    z-index: -1;
    background-size: 100% 100%;
}

.home-sch .content {
    padding-left: .35rem;
    overflow: hidden;
    margin-top: 1.2rem;
}

.home-sch .media1-cor {
    width: 27.5%;
    margin-right: .4rem;
}

.home-sch .d-media-swiper1-nav .slider {
    height: 6rem;
    overflow: hidden;
}

.home-sch .d-media-swiper1-nav .slider .swiper-slide {
    cursor: pointer;
}

.home-sch .media1-cor .picture-con {
    width: 1.1rem;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 1.1rem;
    margin-right: .5rem;
}

.home-sch .media1-cor .picture-con .picture {
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: .8rem;
    height: .8rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}


/* .home-sch .media1-cor .swiper-slide {
    cursor: pointer;
} */

.home-sch .media1-cor .line {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: .98rem;
    height: .13rem;
    background: url(../images/line.svg)no-repeat right center;
    background-size: 100%;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.home-sch .media1-cor .tit {
    font-size: .2rem;
}

.home-sch .media1-cor .swiper-slide-active .picture-con {
    background-image: linear-gradient(45deg, #42A686, #C1EF59);
}

.home-sch .media1-cor .swiper-slide-active .picture-con .picture {
    width: 1rem;
    height: 1rem;
}

.home-sch .media1-cor .swiper-slide-active .tit {
    font-size: .26rem;
    font-weight: bold;
    background-image: linear-gradient(45deg, #42A686, #C1EF59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* 文字颜色设置为透明 */
    display: inline-block;
    /* 确保背景可以裁剪 */
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .home-sch .media1-cor .swiper-slide-active .tit {
        background-image: none;
        -webkit-background-clip: text;
        background-clip: text;
        color: #1D6D40;
        /* 文字颜色设置为透明 */
        display: inline-block;
        /* 确保背景可以裁剪 */
    }
}

.home-sch .media1-cor .swiper-slide-active .line {
    opacity: 1;
}

.home-sch .media1-col {
    min-width: 0;
}

.home-sch .media1-col .text-content {
    width: 6.3rem;
    height: 6.3rem;
}

.home-sch .media1-col .text-content .text-con {
    width: 4.44rem;
    height: 4.44rem;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(../images/tbg7.png)no-repeat center;
    background-size: cover;
    padding-left: .7rem;
    padding-right: .7rem;
    color: #FFF;
}

.home-sch .media1-col .text-content::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/tbg8.png)no-repeat center;
    background-size: 100% 100%;
    animation: 10s linear infinite ani_turn2;
    -webkit-animation: 10s linear infinite ani_turn2;
}

.home-sch .media1-col .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-sch .media1-col .pic-con {
    width: 6.1rem;
    height: 6.1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(193, 239, 89, 0), rgba(66, 166, 134, 1));
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}

.home-sch .media1-col .pic-con .pic {
    overflow: hidden;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.home-sch .media1-col .tit {
    font-size: .26rem;
    font-weight: bold;
    line-height: 1.1;
}

.home-sch .media1-col .txt {
    line-height: 1.1;
    margin-top: .3rem;
}

.home-sch .media1-col .text {
    font-size: .16rem;
    line-height: 1.7;
    margin-top: .2rem;
}

@keyframes ani_turn2 {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

@media (min-width:1025px) {
    .home-about .item:hover .arrow {
        transform: translateX(.15rem);
        -webkit-transform: translateX(.15rem);
        -moz-transform: translateX(.15rem);
        -ms-transform: translateX(.15rem);
        -o-transform: translateX(.15rem);
    }
    .home-about .item:hover .tit {
        letter-spacing: 3px;
    }
    .home-about .item:hover .icon {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
    .home-title .more:hover {
        color: #1D6D40;
        text-decoration: underline;
    }
    .home-dt .swiper-slide:hover::before,
    .home-yanchu .swiper-slide:hover::before,
    .home-sns .r-con .r2 .item:hover .pic::before,
    .home-sns .r-con .r1 .item:hover .pic::before,
    .home-sns .l-con .item:hover .pic::before,
    .home-sch .media1-col .swiper-slide:hover .pic:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .home-dt .swiper-slide:hover img,
    .home-yanchu .swiper-slide:hover>img,
    .home-sns .l-con .item:hover .pic img,
    .home-sns .r-con .r1 .item:hover .pic img,
    .home-sns .r-con .r2 .item:hover .pic img,
    .home-sch .media1-col .swiper-slide:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .home-dt .con .item:hover .tit {
        font-weight: bold;
        color: #333;
    }
    .home-dt .con .item:hover .arrow {
        left: .15rem;
    }
    .home-notice .content .item:hover {
        background-image: url(../images/tbg6.svg);
    }
    .home-notice .content .item:hover .date {
        color: #1D6D40;
    }
    .home-notice .content .item:hover .tit {
        color: #333;
    }
    .home-sns .sns>div:hover .erwma {
        display: block;
    }
    .home-sns .sns>.wx:hover .ico {
        background-image: url(../images/wx2.svg);
    }
    .home-sns .sns>.wb:hover .ico {
        background-image: url(../images/wb2.svg);
    }
    .home-sns .sns>.dou:hover .ico {
        background-image: url(../images/dou2.svg);
    }
}

@media (max-width:1199px) {
    .banner .button {
        padding-right: .2rem;
        padding-left: .3rem;
    }
    .banner .button::before {
        width: 21px;
        height: 21px;
    }
    .banner .swiper-button-prev,
    .banner .swiper-button-next {
        width: 30px;
        height: 30px;
        background-size: 10px;
    }
    .banner .swiper-button-prev {
        margin-right: .2rem;
    }
    .banner .swiper-pagination-bullet {
        margin-right: .3rem;
    }
    .home-about .text-con .title,
    .home-sch .media1-col .tit {
        font-size: 16px;
    }
    .home-about .text-con .content .tit,
    .home-notice .content .item .date span {
        font-size: 20px;
    }
    .home-about .text-con .content .text,
    .home-about .text-con .content .num-box,
    .home-dt .swiper-slide .tit,
    .home-yanchu .swiper-slide .tit,
    .home-sch .media1-cor .tit {
        font-size: 14px;
    }
    .home-about .text-con .content .num-box .num span {
        font-size: 28px;
    }
    .home-about .item .en,
    .home-title .more,
    .home-dt .swiper-slide .date,
    .home-dt .con .item .date,
    .home-notice .content .item .date,
    .home-sch .media1-col .text {
        font-size: 12px;
    }
    .home-about .item .tit {
        font-size: 24px;
    }
    .home-about .text-con .content .text,
    .home-about .text-con .content .num-box {
        margin-top: .2rem;
    }
    .home-about .text-con .content .card:nth-child(1) .num .counter {
        width: 80px;
    }
    .home-about .text-con .content .card:nth-child(2) .num .counter {
        width: 18px;
    }
    .home-about .text-con .content .card:nth-child(3) .num .counter {
        width: 30px;
    }
    .home-dt {
        margin-right: .4rem;
    }
    .home-dt .home-title .title {
        font-size: 28px;
    }
    .home-title .title {
        font-size: 32px;
    }
    .home-yanchu .swiper-button-prev {
        left: .2rem;
    }
    .home-yanchu .swiper-button-next {
        right: .2rem;
    }
    .home-sns .l-con {
        width: 50%;
    }
    .home-sns .r-con,
    .home-sns .r-con .r1,
    .home-sns .r-con .r2 {
        width: 48%;
    }
    .home-yanchu .swiper-slide {
        height: auto;
        padding-top: 50%;
    }
    .home-yanchu .swiper-slide img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-sch {
        padding-top: .7rem;
    }
    .home-sch .content {
        padding-left: 0;
    }
    .home-sch .media1-cor .line {
        display: none;
    }
    .home-sch .media1-cor .picture-con {
        margin-right: .2rem;
    }
    .home-sch .media1-cor {
        width: 230px;
    }
    .home-sch .media1-cor .picture-con {
        width: 74px;
        height: 74px;
    }
    .home-sch .media1-cor .picture-con .picture {
        width: 54px;
        height: 54px;
    }
    .home-sch .media1-cor .swiper-slide-active .picture-con .picture {
        width: 64px;
        height: 64px;
    }
    .home-sch .media1-cor .swiper-slide-active .tit {
        font-size: 18px;
    }
}

@media (max-width:950px) {
    .home-about .text-con {
        width: 100%;
        padding-right: 0;
        margin-bottom: .3rem;
    }
    .home-about .item {
        width: 50%;
        padding-top: 45%;
        overflow: hidden;
        height: auto;
    }
    .home-about .item>img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .home-about .item .box {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .home-about .item .arrow {
        right: .3rem;
        bottom: .3rem;
    }
    .home-dt {
        width: 100%;
        margin-right: 0;
    }
    .home-notice {
        margin-top: .5rem;
    }
    .home-notice .item {
        border: 1px #FFA200 dashed;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .home-yanchu .swiper-slide {
        padding-top: 75%;
    }
    .home-sch .media1-cor {
        width: 210px;
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .home-about .item .tit {
        margin-top: .2rem;
    }
    .home-title .title {
        font-size: 24px;
    }
    .home-yanchu .content {
        margin-top: .5rem;
    }
    .home-about .text-con .content .num-box .card::after {
        display: none;
    }
    .home-two {
        padding-bottom: 1.2rem;
    }
    .home-sns {
        background-position: center;
        background-size: cover;
        padding-top: 1rem;
        height: auto;
        padding-bottom: 1rem;
    }
    .home-sns .l-con,
    .home-sns .r-con {
        width: 100%;
    }
    .home-sns .l-con .item {
        margin-top: .5rem;
    }
    .home-sns .r-con {
        margin-top: .3rem;
    }
    .home-sch .content {
        margin-top: .6rem;
    }
    .home-sch .media1-col .pic-con {
        display: none;
    }
    .home-sch .media1-col .text-content {
        width: 5rem;
        height: 5rem;
    }
    .home-sch .d-media-swiper1-nav .slider .swiper-slide>div {
        flex-direction: column;
        text-align: center;
    }
    .home-sch .media1-cor .picture-con {
        margin-right: 0;
    }
}

@media (max-width:540px) {
    .home-about .item {
        width: 100%;
        padding-top: 70%;
    }
    .home-dt .con .item {
        width: 100%;
        margin-right: 0;
    }
    .home-yanchu .swiper-slide {
        padding-top: 130%;
    }
    .home-sch .media1-cor {
        width: 100%;
    }
    .home-sch .media1-col .text-content {
        margin-left: auto;
        margin-right: auto;
    }
    .home-sch .media1-col .text-content {
        width: 6.3rem;
        height: 6.3rem;
    }
    .home-sch .media1-cor {
        order: 2;
    }
    .home-sch .d-media-swiper1-nav .slider {
        height: auto;
    }
    .home-sch .media1-col {
        min-width: 100%;
        order: 1;
    }
}

.wrap {
    padding-left: 2.6rem;
    padding-right: 2.6rem;
}

.n-banner img {
    width: 100%;
}

.n-banner .title {
    font-weight: bold;
    color: #FFF;
    font-size: .6rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-shadow: 0 0 .1rem rgba(51, 51, 51, 0.5);
}

.n-banner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .4));
}

.n-banner .con {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-left: 2.6rem;
    z-index: 10;
    align-items: flex-end;
}

.n-banner .con .l-con {
    margin-right: .6rem;
}

.n-banner .tit {
    font-weight: bold;
    color: #FFF;
    font-size: .3rem;
}

.sub-menu {
    height: .6rem;
    background-color: #FFF;
    line-height: .6rem;
    padding-left: 1.1rem;
    padding-right: 0.6rem;
    min-width: 0;
}

.sub-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: -.3rem;
    width: .3rem;
    height: 100%;
    background: url(../images/tbg6.png)no-repeat left center;
    background-size: auto 100%;
}

.sub-menu a {
    margin-right: .29rem;
    font-size: .2rem;
}

.sub-menu a:last-child {
    margin-right: 0;
}

.sub-menu a.on {
    font-weight: bold;
}

.sub-menu a.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1D6D40;
    box-shadow: 0 .05rem .1rem rgba(0, 0, 0, 0.3);
}

.job-nav .swiper-button-next,
.job-nav .swiper-button-prev {
    background-size: .12rem;
}

.job-nav .swiper-button-next {
    right: -.1rem;
}

.job-nav .swiper-button-prev {
    left: -.8rem;
}

.job-nav {
    width: 100%;
    padding-right: .4rem;
}

.job-nav .swiper-slide {
    margin-right: auto;
}

.crumbs {
    color: #FFF;
    font-size: .16rem;
    background: url(../images/home.svg)no-repeat left center;
    padding-left: .25rem;
    background-size: .16rem;
    line-height: .2rem;
    margin-top: .2rem;
    margin-bottom: .4rem;
}

.crumbs a {
    color: #FFF;
}

.pub-bg {
    background: url(../images/bg5.png)no-repeat center bottom;
    padding-bottom: 1.5rem;
    background-size: 100%;
}

.about {
    margin-top: .85rem;
}

.about .pic {
    float: right;
    width: 6.2rem;
    z-index: 10;
    margin-left: .7rem;
    margin-bottom: .5rem;
}

.about .pic::after {
    content: '';
    position: absolute;
    left: -.1rem;
    top: .1rem;
    width: 100%;
    height: 100%;
    background-color: #1D6D40;
    z-index: -1;
}

.about .pic img {
    width: 100%;
}

.about .pic .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: .46rem;
    height: .46rem;
    background: url(../images/play.svg)no-repeat center;
    background-size: 100%;
    z-index: 9;
    cursor: pointer;
}

.about .text-con {
    font-size: .2rem;
    line-height: 2.1;
    padding-top: .25rem;
}

.about .text-con p {
    text-indent: .4rem;
    margin-top: .25rem;
}

.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 65%;
    height: 75%;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
    position: absolute;
    right: 0;
    top: -30px;
    background: url(../images/close.svg)no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    cursor: pointer;
}

@media (min-width:1025px) {
    .about .pic:hover:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
}

@media (max-width:1199px) {
    .wrap {
        padding-left: .2rem;
        padding-right: .2rem;
    }
    .n-banner .title {
        font-size: 32px;
    }
    .videoShow {
        width: 90%;
        height: 60%;
    }
    .n-banner .con {
        display: none;
    }
    .about .text-con {
        font-size: 14px;
    }
}

@media (max-width:767px) {
    .about {
        margin-top: .4rem;
    }
    .about .pic {
        margin-left: 0;
        float: none;
        width: 100%;
    }
    .about .pic .play {
        width: 34px;
        height: 34px;
    }
}

@media (max-width:540px) {
    .n-banner img {
        width: auto;
        height: 200px;
    }
}

.jingshen {
    margin-top: .6rem;
    background: url(../images/bg5.png)no-repeat .6rem .8rem;
    background-size: 5.66rem;
}

.jingshen .title {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: .3rem;
    line-height: 3;
}

.jingshen .title span {
    border-bottom: 1px #1D6D40 solid;
    padding: 0 1rem;
}

.jingshen .title .t1 {
    background: url(../images/t6.png)no-repeat .1rem center;
    background-size: .56rem;
}

.jingshen .text {
    font-size: .2rem;
    line-height: 2.1;
    margin-top: .4rem;
}

.jingshen .con1 {
    margin-top: .45rem;
}

.jingshen .con1 .text {
    margin-right: 1rem;
}

.jingshen .con1 .pic {
    width: 2.28rem;
    overflow: hidden;
    margin-top: .4rem;
}

.jingshen .con1 .pic img {
    width: 100%;
}

.jingshen .pic1 {
    margin-top: .8rem;
    z-index: 9;
}

.jingshen .pic1::after {
    content: '';
    position: absolute;
    left: -.1rem;
    top: .1rem;
    width: 100%;
    height: 100%;
    background-color: #1D6D40;
    z-index: -1;
}

.jingshen .pic1 img {
    width: 100%;
}

.jingshen .text-con {
    width: 2.8rem;
    margin-top: .5rem;
}

.jingshen .text-con .title span {
    padding: 0;
}

@media (max-width:1199px) {
    .jingshen .title {
        font-size: 24px;
    }
    .jingshen .text {
        font-size: 14px;
    }
    .jingshen .text-con {
        width: 25%;
    }
}

@media (max-width:540px) {
    .jingshen .con1 .text {
        margin-right: 0;
    }
    .jingshen .con1 .pic {
        width: 100%;
        margin-top: .4rem;
        display: flex;
        justify-content: center;
    }
    .jingshen .con1 .pic img {
        width: 2.3rem;
    }
    .jingshen .text-con {
        width: 100%;
        margin-top: .4rem;
    }
}

.jingguan {
    margin-top: .4rem;
}

.jingguan .item {
    width: 48%;
    margin-top: .45rem;
}

.jingguan .item .pic {
    width: 100%;
    overflow: hidden;
    padding-top: 61.79%;
}

.jingguan .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.jingguan .item .text-con {
    height: 1.65rem;
    padding-left: .3rem;
    z-index: 10;
}

.jingguan .item .tit {
    background-color: #FFF;
    box-shadow: 0 .05rem .1rem rgba(0, 0, 0, .05);
    line-height: 1.2rem;
    padding-left: .5rem;
    font-size: .24rem;
}

.jingguan .item .text-con::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 95%;
    height: 100%;
    background-color: #FFF;
    -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.page {
    margin-top: .7rem;
    line-height: .3rem;
    font-size: .16rem;
}

.page a {
    border: 1px #DCDCDC solid;
    width: .3rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    height: .3rem;
    margin: 0 .05rem;
}

.page .idx,
.page .last {
    width: .48rem;
}

.page .prev,
.page .next {
    background: url(../images/arrow.svg)no-repeat center;
    background-size: .1rem;
}

.page .prev {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.page .on {
    background-color: #1D6D40;
    color: #FFF;
    border-color: #1D6D40;
}

@media (min-width:1025px) {
    .jingguan .item:hover .pic::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .jingguan .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .jingguan .item:hover .text-con::after {
        background-color: #1D6D40;
    }
    .jingguan .item:hover .text-con .tit {
        background-image: url(../images/t7.png);
        background-position: 95% center;
        background-repeat: no-repeat;
        background-size: 1.2rem;
    }
}

@media (max-width:1199px) {
    .jingguan .item .text-con {
        height: auto;
        padding-left: 0;
    }
    .jingguan .item .tit {
        font-size: 14px;
        line-height: 48px;
    }
    .page {
        font-size: 12px;
        line-height: 30px;
    }
    .page a {
        width: 30px;
        height: 30px;
    }
    .page .idx,
    .page .last {
        width: 42px;
    }
    .page .prev,
    .page .next {
        background-size: 10px;
    }
}

@media (max-width:540px) {
    .jingguan .item {
        width: 100%;
    }
}

.jigou {
    margin-top: .85rem;
}

.jigou .title {
    width: 3rem;
    line-height: .7rem;
    background-color: #1D6D40;
    color: #FFF;
    font-size: .22rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
}

.jigou .title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -.5rem;
    width: 1px;
    height: .5rem;
    background-color: #1D6D40;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.jigou .box {
    margin-top: .5rem;
}

.jigou .box::after {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    background-color: #1D6D40;
    left: .35rem;
    right: .35rem;
}

.jigou .box span {
    cursor: pointer;
    background-color: #1D6D40;
    width: .7rem;
    height: 2.4rem;
    writing-mode: vertical-rl;
    color: #FFF;
    padding-top: .3rem;
    letter-spacing: 3px;
    margin-top: .5rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px #1D6D40 solid;
}

.jigou .box span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -.5rem;
    width: 1px;
    height: .5rem;
    background-color: #1D6D40;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.jigou .box span.on {
    background-color: #FFF;
    color: #1D6D40;
}

.jigou .content {
    margin-top: .7rem;
}

.jigou .content .tit {
    line-height: 1.1;
    font-weight: bold;
    font-size: .22rem;
    color: #1D6D40;
}

.jigou .content .text {
    line-height: 1.7;
    margin-top: .2rem;
}

@media (max-width:1199px) {
    .jigou .title {
        font-size: 20px;
        line-height: 48px;
        width: 240px;
    }
    .jigou .content .tit {
        font-size: 18px;
    }
}

.img-list {
    margin-top: .35rem;
}

.img-list .item {
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.img-list .item .pic {
    width: 3.6rem;
    overflow: hidden;
    padding-top: 18%;
    margin-right: .4rem;
}

.img-list .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
}

.img-list .item .tit {
    font-size: .2rem;
    line-height: 1;
    margin-top: .15rem;
}

.img-list .item .date {
    color: #1D6D40;
    background: url(../images/date1.svg)no-repeat left center;
    padding-left: .2rem;
    font-size: .14rem;
    background-size: .16rem;
    margin-top: .2rem;
}

.img-list .item .des {
    font-size: .16rem;
    color: #666;
    line-height: 1.7;
    margin-top: .2rem;
}

.text-list {
    margin-top: .4rem;
}

.text-list .item {
    height: 1.12rem;
    border-bottom: 1px #E5E5E5 solid;
    line-height: 1.12rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.text-list .item::before {
    content: '';
    width: .1rem;
    height: 100%;
    background: url(../images/arrow.svg)no-repeat center;
    background-size: 100%;
    margin-right: .2rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.text-list .item .tit {
    font-size: .22rem;
}

.text-list .item .date {
    font-size: .14rem;
    padding-left: .2rem;
    background: url(../images/date1.svg)no-repeat left center;
    background-size: .16rem;
    color: #1D6D40;
}

.news-details {
    margin-top: .9rem;
}

.news-details h1 {
    color: #1D6D40;
    font-size: .24rem;
}

.news-details .info {
    font-size: .14rem;
    color: #8D8D8D;
    border-bottom: 1px #E8E8E8 solid;
    line-height: 3;
    margin-top: .1rem;
}

.news-details .info span {
    margin-right: .4rem;
}

.news-details .info span:last-child {
    margin-right: 0;
}

.news-details .body {
    font-size: .16rem;
    line-height: 2;
    margin-top: .2rem;
}

.news-details .body img {
    max-width: 100%;
}

.news-details .prev-next {
    margin-top: .4rem;
    line-height: 2;
}

.news-details .prev-next span {
    color: #1D6D40;
}

@media (min-width:1025px) {
    .img-list .item:hover .pic::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .img-list .item:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .img-list .item:hover .tit {
        font-weight: bold;
    }
    .text-list .item:hover {
        padding-left: .4rem;
        background-color: #1D6D40;
        padding-right: .2rem;
    }
    .text-list .item:hover::before {
        background-image: url(../images/arrow3.svg);
    }
    .text-list .item:hover .tit,
    .text-list .item:hover .date {
        color: #FFF;
    }
    .text-list .item:hover .tit {
        font-weight: bold;
    }
    .text-list .item:hover .date {
        background-image: url(../images/date2.svg);
    }
}

@media (max-width:1199px) {
    .img-list .item .pic {
        width: 30%;
    }
    .img-list .item .tit {
        font-size: 15px;
    }
    .img-list .item .date,
    .img-list .item .des,
    .text-list .item .date,
    .news-details .info {
        font-size: 12px;
    }
    .text-list .item .tit,
    .news-details .body {
        font-size: 14px;
    }
    .news-details h1 {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .img-list .item .pic {
        width: 45%;
    }
}

@media (max-width:540px) {
    .img-list .item .pic {
        width: 100%;
        padding-top: 65%;
        margin-right: 0;
    }
    .img-list .item .text-con {
        margin-top: .3rem;
    }
}

.leader {
    margin-top: .4rem;
}

.leader .item {
    border-bottom: 1px #DEDEDE solid;
    height: 1.05rem;
    width: 48%;
}

.leader .item .text {
    color: #1D6D40;
    font-weight: bold;
    font-size: .22rem;
    width: 1.6rem;
}

.leader .item span {
    margin-right: .4rem;
}

.leader .item span:last-child {
    margin-right: 0;
}

.leader .item.text-con {
    width: 100%;
}

@media (max-width:1199px) {
    .leader .item .text {
        font-size: 16px;
        width: 90px;
    }
}

.sizheng {
    padding-top: .95rem;
}

.sizheng .title-con .title {
    font-size: .32rem;
    line-height: 1.1;
}

.sizheng .title-con .more {
    font-size: .16rem;
    color: #666;
    background: url(../images/more.svg)no-repeat right center;
    background-size: .28rem;
    padding-right: .35rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .pinpai .content {
    margin-top: .5rem;
}

.sizheng .pinpai .focus {
    width: 6.7rem;
    margin-right: .6rem;
}

.sizheng .pinpai .focus .pic {
    overflow: hidden;
    width: 100%;
    padding-top: 64.3%;
}

.sizheng .pinpai .focus .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.sizheng .pinpai .focus .tit {
    font-weight: bold;
    font-size: .22rem;
    line-height: 1.1;
    margin-top: .2rem;
}

.sizheng .pinpai .focus .date {
    position: absolute;
    left: 0;
    top: 0;
    width: .88rem;
    height: .88rem;
    background-color: #1D6D40;
    z-index: 10;
    color: #FFF;
    font-size: .2rem;
    line-height: 1.1;
}

.sizheng .pinpai .focus .date span {
    font-size: .3rem;
    line-height: 1;
}

.sizheng .pinpai .focus .date .line {
    margin: .08rem .1rem;
}

.sizheng .pinpai .focus .date .line::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #92D3B0 solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .pinpai .focus .button {
    padding-left: .5rem;
    margin-top: .18rem;
}

.sizheng .pinpai .focus .button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: .3rem;
    background-color: #1D6D40;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .pinpai .focus .button::after {
    content: '';
    position: absolute;
    left: .3rem;
    top: 50%;
    height: 5px;
    width: 5px;
    background-color: #1D6D40;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.sizheng .pinpai .focus .swiper-pagination {
    position: inherit;
    left: auto;
    bottom: auto;
    margin-right: .2rem;
}

.sizheng .pinpai .focus .swiper-pagination-bullet {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    opacity: 1;
    color: #92D3B0;
    font-size: .16rem;
    background: none;
    width: auto;
    height: auto;
    margin: 0 .08rem !important;
}

.sizheng .pinpai .focus .swiper-pagination-bullet-active {
    font-size: .36rem;
    opacity: 1;
    color: #1D6D40;
}

.sizheng .pinpai .focus .line,
.sizheng .pinpai .focus .line1 {
    height: 1px;
    background-color: #92D3B0;
}

.sizheng .pinpai .focus .line {
    margin-right: .1rem;
}

.sizheng .pinpai .focus .line::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #92D3B0 solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .pinpai .focus .swiper-button-prev,
.sizheng .pinpai .focus .swiper-button-next {
    position: inherit;
    margin-top: 0;
    left: auto;
    top: auto;
    right: auto;
    width: .45rem;
    height: .45rem;
    background: #1D6D40 url(../images/prev.svg)no-repeat center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-size: .2rem;
}

.sizheng .pinpai .focus .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    margin-left: .2rem;
    margin-right: .1rem;
}

.sizheng .pinpai .focus .line1 {
    width: .55rem;
    margin-right: .15rem;
}

.sizheng .pinpai .focus .line1::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px rgba(255, 255, 255, 0.3) solid;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .list .item {
    border-bottom: 1px #C9EEDA solid;
    line-height: .8rem;
}

.sizheng .list .item::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    background-color: #FFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 5px;
    height: 5px;
    border: 1px #C9EEDA solid;
}

.sizheng .list .item .date {
    color: #1D6D40;
    font-size: .22rem;
    margin-right: .25rem;
}

.sizheng .list .item .date::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 100%;
    background-color: #1D6D40;
}

.sizheng .pinpai .list {
    margin-top: -.3rem;
}

.sizheng .box {
    margin-top: .2rem;
}

.sizheng .box .con {
    width: 48%;
    margin-top: .6rem;
}

.sizheng .box .list {
    margin-top: .2rem;
}

.sizheng .huodong {
    margin-top: .5rem;
}

.sizheng .huodong .content {
    margin-top: .5rem;
}

.sizheng .huodong .pic {
    overflow: hidden;
    width: 100%;
    padding-top: 64.5%;
}

.sizheng .huodong .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.sizheng .huodong .swiper-container {
    padding-bottom: .1rem;
}

.sizheng .huodong .tit {
    margin-right: .6rem;
    line-height: .5rem;
    background-color: #FFF;
    border-radius: 0 .25rem .25rem 0;
    -webkit-border-radius: 0 .25rem .25rem 0;
    -moz-border-radius: 0 .25rem .25rem 0;
    -ms-border-radius: 0 .25rem .25rem 0;
    -o-border-radius: 0 .25rem .25rem 0;
    margin-top: -.25rem;
    z-index: 2;
    box-shadow: .05rem .05rem .05rem rgba(0, 0, 0, 0.12);
    padding-left: .25rem;
    padding-right: .5rem;
    font-size: .16rem;
}

.sizheng .huodong .swiper-button-prev,
.sizheng .huodong .swiper-button-next {
    margin-top: auto;
    width: .45rem;
    height: .45rem;
    background: #1D6D40 url(../images/prev.svg)no-repeat center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-size: .2rem;
    top: 40%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.sizheng .huodong .swiper-button-prev {
    left: -.225rem;
}

.sizheng .huodong .swiper-button-next {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    right: -.225rem;
}

.sizheng .subnav {
    margin-bottom: .4rem;
}

.sizheng .subnav a {
    font-size: 0.22rem;
    border: 1px #1D6D40 solid;
    height: .6rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    line-height: .58rem;
    padding: 0 .5rem;
    z-index: 10;
}

@media (min-width:1025px) {
    .sizheng .subnav a:hover {
        color: #FFF;
        font-weight: bold;
    }
    .sizheng .subnav a:hover::after {
        content: '';
        position: absolute;
        left: 3px;
        top: 3px;
        right: 3px;
        bottom: 3px;
        background-color: #1D6D40;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        z-index: -1;
    }
    .sizheng .title-con .more:hover {
        color: #1D6D40;
    }
    .sizheng .pinpai .focus .swiper-button-prev:hover,
    .sizheng .pinpai .focus .swiper-button-next:hover,
    .sizheng .huodong .swiper-button-prev:hover,
    .sizheng .huodong .swiper-button-next:hover {
        background-color: #FF9933;
    }
    .sizheng .huodong .swiper-slide:hover .pic::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .sizheng .huodong .swiper-slide:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
    .sizheng .huodong .swiper-slide:hover .tit {
        background-color: #1D6D40;
        color: #FFF;
    }
}

@media (max-width:1199px) {
    .sizheng .title-con .more {
        font-size: 12px;
    }
    .sizheng .title-con .title {
        font-size: 24px;
    }
    .sizheng .pinpai .focus .date {
        font-size: 12px;
        width: 58px;
        height: 58px;
    }
    .sizheng .pinpai .focus .date .line {
        margin-left: 10px;
        margin-right: 10px;
    }
    .sizheng .pinpai .focus .date span,
    .sizheng .pinpai .focus .swiper-pagination-bullet-active {
        font-size: 18px !important;
    }
    .sizheng .pinpai .focus .tit,
    .sizheng .subnav a {
        font-size: 14px;
    }
    .sizheng .pinpai .focus .swiper-pagination-bullet {
        font-size: 12px;
    }
    .sizheng .pinpai .focus .swiper-button-prev,
    .sizheng .pinpai .focus .swiper-button-next {
        width: 28px;
        height: 28px;
        background-size: 15px;
    }
    .sizheng .list .item .date {
        font-size: 16px;
    }
    .sizheng .huodong .tit {
        font-size: 14px;
        line-height: 40px;
        border-radius: 0 20px 20px 0;
        -webkit-border-radius: 0 20px 20px 0;
        -moz-border-radius: 0 20px 20px 0;
        -ms-border-radius: 0 20px 20px 0;
        -o-border-radius: 0 20px 20px 0;
        margin-top: -20px;
    }
    .sizheng .huodong .swiper-button-prev,
    .sizheng .huodong .swiper-button-next {
        width: 34px;
        height: 34px;
        background-size: 14px;
    }
    .sizheng .huodong .swiper-button-prev {
        left: .2rem;
    }
    .sizheng .huodong .swiper-button-next {
        right: .2rem;
    }
    .job {
        padding-top: .2rem;
    }
    .sizheng .subnav a {
        height: 40px;
        line-height: 38px;
    }
}

@media (max-width:767px) {
    .sizheng .pinpai .focus,
    .sizheng .box .con {
        width: 100%;
        margin-right: 0;
    }
    .sizheng .pinpai .list {
        margin-top: .3rem;
    }
    .sizheng .box {
        margin-top: 0;
    }
    .sizheng .box .con {
        margin-top: .4rem;
    }
    .sizheng .subnav a {
        width: 32%;
        margin-top: .3rem;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.ser {
    margin-top: .8rem;
    overflow: hidden;
    padding-bottom: 3rem;
}

.ser .item {
    line-height: .84rem;
    border: 1px #1D6D40 solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: .35rem;
    padding-left: .45rem;
    font-size: .22rem;
    z-index: 10;
}

.ser .item:nth-of-type(4n) {
    margin-right: 0;
}

.ser .item::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px #1D6D40 solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: -1;
}

.ser .item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: .25rem;
    width: .15rem;
    height: .15rem;
    background: url(../images/arrow.svg)no-repeat center;
    background-size: 100%;
}

@media (min-width:1025px) {
    .ser .item:hover::after {
        background-color: #1D6D40;
    }
    .ser .item:hover {
        color: #FFF;
        font-weight: bold;
    }
    .ser .item:hover::before {
        background-image: url(../images/arrow3.svg);
    }
}

@media (max-width:1199px) {
    .ser .item {
        font-size: 14px;
        line-height: 60px;
    }
}

@media (max-width:950px) {
    .ser .item {
        width: 32%;
    }
    .ser .item:nth-of-type(4n) {
        margin-right: 2%;
    }
    .ser .item:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media (max-width:767px) {
    .ser {
        padding-bottom: 1rem;
    }
    .ser .item {
        width: 48%;
    }
    .ser .item:nth-of-type(3n) {
        margin-right: 2%;
    }
    .ser .item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.single {
    margin-top: .95rem;
}

.single .xueyuan .title {
    font-size: .32rem;
    line-height: 1.1;
}

.single .xueyuan .content {
    margin-top: .45rem;
}

.single .xueyuan .pic {
    width: 7.16rem;
    overflow: hidden;
    margin-right: .55rem;
}

.single .xueyuan .pic img {
    width: 100%;
}

.single .xueyuan .text-con {
    background: url(../images/bg7.png)no-repeat right bottom;
    background-size: 4.2rem;
}

.single .xueyuan .text {
    line-height: 1.9;
    color: #666;
}

.single .xueyuan .text p {
    text-indent: .36rem;
    margin-bottom: .35rem;
}

.single .xueyuan .con {
    margin-top: .4rem;
}

.single .sizheng {
    padding-top: .25rem;
}

.single .sizheng .title-con .title {
    font-family: 'SourceHanSerifCN-Bold';
    font-size: .22rem;
}

.single .zhuanye {
    margin-top: .9rem;
}

.single .zhuanye .content {
    margin-top: .4rem;
}

.single .zhuanye .pic {
    width: 8.1rem;
    overflow: hidden;
    padding-top: 42%;
}

.single .zhuanye .pic img {
    position: absolute;
    left: 0;
    top: 0;
}

.single .zhuanye .text-con {
    background: url(../images/tbg9.png)no-repeat center;
    background-size: 100% 100%;
    color: #FFF;
    padding-left: .6rem;
    padding-right: .7rem;
    padding-top: .75rem;
}

.single .zhuanye .text-con .tit {
    font-size: .24rem;
    font-weight: bold;
    line-height: 1.1;
}

.single .zhuanye .text-con .info {
    line-height: 1.1;
    margin-top: .2rem;
}

.single .zhuanye .text-con .info::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.24rem;
    height: 1px;
    width: 1.3rem;
    background-color: #FFF;
}

.single .zhuanye .text-con .des {
    margin-top: .5rem;
    font-size: .16rem;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.single .zhuanye .button {
    position: absolute;
    width: 4.6rem;
    bottom: 1.1rem;
    right: .6rem;
}

.single .zhuanye .button .swiper-pagination {
    position: initial;
}

.single .zhuanye .button .swiper-pagination-bullet {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    width: auto;
    height: auto;
    color: #FFF;
    font-size: .2rem;
    background: none;
    margin-right: .25rem !important;
    position: relative;
}

.single .zhuanye .button .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.05rem;
    width: 100%;
    height: 2px;
    background-color: #FFF;
}

.single .zhuanye .swiper-button-next,
.single .zhuanye .swiper-button-prev {
    width: .38rem;
    height: .38rem;
    background: #FFF url(../images/arrow.svg)no-repeat center;
    background-size: .14rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: -.19rem;
}

.single .zhuanye .swiper-button-next {
    right: 0;
}

.single .zhuanye .swiper-button-prev {
    left: auto;
    right: .5rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.single .chengguo {
    margin-top: .6rem;
}

.single .chengguo .content {
    margin-top: .4rem;
}

.single .chengguo table {
    border-top: 1px #D8D8D8 solid;
}

.single .chengguo th {
    padding: 0 .4rem;
    font-size: .22rem;
    height: .8rem;
    border-bottom: 1px #D8D8D8 solid;
    border-right: 1px #D8D8D8 solid;
}

.single .chengguo th:last-child,
.single .chengguo td:last-child {
    border-right: 0;
    width: 1.8rem;
}

.single .chengguo td {
    border-bottom: 1px #D8D8D8 solid;
    border-right: 1px #D8D8D8 solid;
    height: .6rem;
}

.single .chengguo .page {
    margin-top: .5rem;
}

.single .xiaoyou {
    margin-top: .6rem;
}

.single .xiaoyou .content {
    margin-top: .3rem;
}

.single .xiaoyou .swiper-slide>div {
    padding-top: .2rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.single .xiaoyou .swiper-slide .pic {
    overflow: hidden;
    height: 2.9rem;
}

.single .xiaoyou .swiper-slide .name {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #FFF;
    background-color: rgba(29, 109, 64, .9);
    width: 1.3rem;
    line-height: .38rem;
}

.single .xiaoyou .swiper-slide .des {
    font-size: .16rem;
    line-height: 1.7;
    margin: .2rem;
    margin-top: .3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.single .xiaoyou .swiper-slide-active {
    background-color: #1D6D40;
}

.single .xiaoyou .swiper-slide-active>div {
    padding: .3rem .2rem;
    padding-bottom: .15rem;
}

.single .xiaoyou .swiper-slide-active .pic {
    height: 2.6rem;
}

.single .xiaoyou .swiper-slide-active .name {
    background-color: rgba(227, 187, 91, 0.9);
}

.single .xiaoyou .swiper-slide-active .des {
    color: #FFF;
    font-weight: bold;
    -webkit-line-clamp: 5;
    margin: .1rem;
    margin-top: .4rem;
    height: 1.6rem;
}

.single .xiaoyou .swiper-container {
    padding-bottom: .8rem;
}

.single .xiaoyou .swiper-pagination-bullet {
    width: .12rem;
    height: .12rem;
    border: 1px #1D6D40 solid;
    background: none;
}

.single .xiaoyou .swiper-pagination-bullet-active {
    background-color: #1D6D40;
    width: .4rem;
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
}

@media (min-width:1025px) {
    .single .xiaoyou .swiper-slide:hover .pic::before,
    .single .xueyuan .pic:hover::before,
    .sizheng .pinpai .focus .swiper-slide:hover .pic::before,
    .single .zhuanye .swiper-slide:hover .pic:before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }
    .single .xiaoyou .swiper-slide:hover .pic img,
    .sizheng .pinpai .focus .swiper-slide:hover .pic img,
    .single .zhuanye .swiper-slide:hover .pic img {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

@media (max-width:1199px) {
    .single .xueyuan .title {
        font-size: 24px;
    }
    .single .sizheng .title-con .title {
        font-size: 20px;
    }
    .single .zhuanye .text-con .tit {
        font-size: 18px;
    }
    .single .zhuanye .text-con .des,
    .single .xiaoyou .swiper-slide .des {
        font-size: 12px;
    }
    .single .zhuanye .button {
        width: 5.4rem;
    }
    .single .zhuanye .button .swiper-pagination-bullet {
        font-size: 14px;
    }
    .single .zhuanye .swiper-button-next,
    .single .zhuanye .swiper-button-prev {
        width: 28px;
        height: 28px;
        background-size: 12px;
    }
    .single .zhuanye .swiper-button-prev {
        right: 40px;
    }
    .single .chengguo th {
        font-size: 15px;
        padding: 0 20px;
    }
    .single .chengguo th:last-child,
    .single .chengguo td:last-child {
        width: 100px;
    }
    .single .xiaoyou .swiper-slide .name {
        line-height: 34px;
        width: 90px;
    }
    .single .xiaoyou .swiper-slide-active .des {
        height: 110px;
    }
}

@media (max-width:950px) {
    .single .zhuanye .button {
        bottom: .5rem;
    }
    .single .chengguo td {
        padding: .2rem 20px;
    }
    .single .xiaoyou .swiper-slide .pic {
        height: 4rem;
    }
    .single .xiaoyou .swiper-slide-active .pic {
        height: 3.6rem;
    }
}

@media (max-width:767px) {
    .single .xueyuan .pic {
        width: 100%;
        margin-right: 0;
    }
    .single .xueyuan .text-con {
        margin-top: .3rem;
    }
    .single .xueyuan .con {
        margin-top: 0;
    }
    .single .xueyuan .text p {
        margin-bottom: .25rem;
    }
    .single .zhuanye .pic {
        width: 100%;
        padding-top: 65%;
    }
    .single .zhuanye .text-con {
        padding-top: .4rem;
        padding-bottom: 1rem;
        padding-left: .3rem;
        padding-right: .3rem;
    }
    .single .zhuanye .button {
        bottom: .4rem;
        left: .3rem;
        right: .3rem;
        width: auto;
    }
}

@media (max-width:540px) {
    .single .chengguo th {
        padding: 0 0px;
    }
    .single .chengguo td {
        padding: .2rem 10px;
    }
    .single .xiaoyou .swiper-slide-active .pic {
        height: 4rem;
    }
}

.select-wrapper {
    width: 100%;
    position: relative;
    cursor: pointer;
    display: inline-block;
    background: #fff;
    margin-top: .2rem;
    z-index: 9;
}

.select-wrapper:last-child {
    z-index: 11 !important;
}

.select-button {
    width: 100%;
    height: .45rem;
    border: 0;
    background: #fff;
    cursor: pointer;
    padding: 0 .2rem 0 .2rem;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: 1px rgba(202, 202, 202, 0.8) solid;
    font-size: .16rem;
}

.select-down {
    position: absolute;
    top: 50%;
    right: .2rem;
    height: 0;
    width: 0;
    overflow: hidden;
    font-size: 0;
    border-color: #333 transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 3px #ddd;
    border-radius: 3px;
    display: none;
    position: absolute;
    left: -1px;
    bottom: .45rem;
    overflow: hidden;
    z-index: 10;
}

.select-list ul {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 2.4;
    max-height: 2.4rem;
}

.select-list ul li {
    width: auto;
    padding-left: .2rem;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: .16rem;
}

.select-list ul li.selected,
.select-list ul li:hover {
    color: #fff;
    background-image: linear-gradient(90deg, #07594B, #36AC2F);
}

.select-list ul li:nth-child(1) {
    display: none;
}

@media (max-width:1199px) {
    .select-button {
        height: 40px;
        font-size: 14px;
    }
    .select-list {
        bottom: 40px;
    }
    .select-list ul li {
        font-size: 14px;
    }
}