@charset "utf-8";

/* CSS Document */

@media only screen and (min-width: 800px) {
    /* ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: #000;
    } */
    /*定义滚动条轨道 内阴影+圆角*/
    /* ::-webkit-scrollbar-track {
        border-radius: 0px;
        background: #000;
    } */
    /*定义滑块 内阴影+圆角*/
    /* ::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: #009944;
    } */
}

@font-face {
    font-family: 'ziti';
    src: url('../fonts/Inter-ExtraLight-6.ttf');
    src: local('☺'), url('../fonts/Inter-ExtraLight-6.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ziti1';
    src: url('../fonts/Inter-Light-7.ttf');
    src: local('☺'), url('../fonts/Inter-Light-7.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 100px;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

body.body-100vh {
    height: 100vh;
    overflow: hidden;
}



@media only screen and (min-width:1921px) {
    html {
        font-size: 150px;
    }

    body {
        line-height: 1.6;
    }
}

@media only screen and (max-width:1600px) {
    html {
        font-size: 80px;
    }
}

@media only screen and (max-width:1400px) {
    html {
        font-size: 70px;
    }
}

@media only screen and (max-width:1200px) {
    html {
        font-size: 60px;
    }
}

.flex-web {
    display: flex;
}

.flex-mob {
    display: none;
}

.web {
    display: block;
}

.mob {
    display: none;
}

@media only screen and (max-width:1024px) {
    html {
        font-size: 55px;
    }

    .flex-web {
        display: none;
    }

    .flex-mob {
        display: flex;
    }

    .web {
        display: none;
    }

    .mob {
        display: block;
    }
}

@media only screen and (max-width:768px) {
    html {
        font-size: 40px;
    }
}

@media only screen and (max-width:480px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
}


/*=========
  基本默认值
  ==========*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-word-break: normal !important;
    word-break: normal !important;
    word-wrap: break-word !important;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    color: #000;
    font-family: sans-serif;
    overflow-x: hidden;
}

li {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    object-fit: cover;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: #000;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

::after,
::before {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

table {
    border-collapse: collapse;
}

input,
textarea,
select {
    font-family: sans-serif;
    font-size: 14px;
    outline: none;
}


/*94%的内容*/

.container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1660px;
    position: relative;
}

.container1 {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1760px;
    position: relative;
}

.container2 {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    position: relative;
}

.container3 {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
}


/* =========
  工具样式
  ========== */

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.all {
    max-width: 100%;
    overflow: hidden;
}


/*图片通用样式*/

.img-common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
}

.img-position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-background-size: contain;
}


/*清除浮动*/

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}


/*Flex居中样式*/

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/*动画*/

.donghua {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}


/*文字溢出*/

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

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

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

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

.seo-box {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 50%;
    max-height: 10vh;
    overflow-y: auto;
    transform: translate(-50%, -50%);
}

.out-bg {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.bai {
    background-color: #ffffff;
}

.nothing {
    font-size: 20px;
    color: #666666;
    text-align: center;
}

.padding-top100 {
    padding-top: 100px;
}

.height100 {
    height: 1rem;
}

.heightpx100 {
    height: 100px;
}

.mr10 {
    margin-right: 0.1rem;
}

.ml10 {
    margin-left: 0.1rem;
}

.incom-line {
    width: 0.58rem;
    height: 2px;
    background-color: #80bd01;
}

.incom-line.center {
    margin: 0 auto;
}

.center {
    text-align: center;
}

.incom-title .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}


/* 通用箭头 */

.incom-arrow {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
    vertical-align: middle;
    transition: all .5s;
}

.incom-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #878888;
}

.incom-arrow::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #878888 #878888 transparent transparent;
    transform: rotate(45deg);
    margin-top: -3.5px;
}

.incom-arrow.mm {
    width: 13px;
    height: 10px;
}

.incom-arrow.mm::before {
    background-color: #d0d0d0;
}

.incom-arrow.mm::after {
    width: 6px;
    height: 6px;
    margin-top: -2.5px;
    border-color: #d0d0d0 #d0d0d0 transparent transparent;
}

.incom-arrow.ll::after {
    border-color: transparent transparent#878888 #878888;
    right: auto;
    left: 1px;
}


/* 通用下拉 */

.incommon-select {
    position: relative;
    width: 286px;
}

.incommon-select .checktit {
    font-size: 18px;
    color: #2d2d2d;
    padding: 0.2rem 0.38rem 0.2rem 0;
    display: inline-block;
    border-bottom: 1px solid #4e4e4e;
    position: relative;
    width: 100%;
}

.incommon-select .checktit::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent transparent #2d2d2d #2d2d2d;
    transform: rotate(-45deg);
    margin-top: -10px;
    transition: all .75s;
}

.incommon-select.active .checktit::after {
    transform: rotate(-225deg);
}

.incommon-select .check-ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 11;
    /* opacity: 0;
    visibility: hidden; */
}

.incommon-select .check-ul .item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    border-top: 1px solid #343634;
    background-color: #4e4e4e;
    padding: 0 0.2rem;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform-origin: left;
    transform: translateX(-20%);
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1);
    visibility: hidden;
}

.incommon-select .check-ul .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
    z-index: 0;
    background-color: #f5f5f5;
}

.incommon-select .check-ul .item .tt {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    transition: all .5s;
}

.incommon-select .check-ul .item .incom-arrow {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.incommon-select.active .check-ul .item {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
    visibility: visible;
}

.incommon-select .check-ul .item:nth-child(2) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.2s;
}

.incommon-select .check-ul .item:nth-child(3) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.3s;
}

.incommon-select .check-ul .item:nth-child(4) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.4s;
}

.incommon-select .check-ul .item:nth-child(5) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.5s;
}

.incommon-select .check-ul .item:nth-child(6) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.6s;
}

.incommon-select .check-ul .item:nth-child(7) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.7s;
}

.incommon-select .check-ul .item:nth-child(8) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.8s;
}

.incommon-select .check-ul .item:nth-child(9) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.9s;
}

.incommon-select .check-ul .item:hover .tt {
    color: #4e4e4e;
}

.incommon-select .check-ul .item:hover::before {
    transform: translateX(0%);
}

.incommon-select .check-ul .item:hover .incom-arrow::before {
    background-color: #7b7b7b;
}

.incommon-select .check-ul .item:hover .incom-arrow::after {
    border-color: #7b7b7b #7b7b7b transparent transparent;
}


/*
.incommon-select.active .check-ul {
    opacity: 1;
    visibility: visible;
} */


/* --------------------------欢迎页-------------------------- */

#welcome {
    width: 100%;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

#welcome .bg-img-container>.bg-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url() no-repeat center center;
    background-size: cover;
}

#welcome .bg-img-container>.bg-img.for-phone {
    display: none;
}

@media only screen and (max-width:768px) {
    #welcome .bg-img-container>.bg-img.for-phone {
        display: block;
    }
}

#welcome .content {
    width: 100%;
    max-width: 1660px;
    margin: 0 auto;
    text-align: center;
    min-height: 100vh;
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#welcome .logo {
    padding: 10px;
}

#welcome .title-area {
    margin-top: 230px;
    font-size: 72px;
}

#welcome .title-area .title.cn {
    font-size: 36px;
    margin-top: 20px;
}

#welcome .lang-change-area {
    margin-top: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#welcome .plate-change-swiper {
    overflow: visible;
    margin-left: 1px;
}

#welcome .plate-change-swiper .swiper-wrapper {
    display: inline-flex;
    width: auto;
}

#welcome .plate-change-swiper .swiper-slide {
    width: auto;
}

#welcome .lang-change-item {
    background: rgba(128, 189, 1, 0.9);
    padding: 16px 0;
    width: 110px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    border: 1px solid #fff;
}

#welcome .lang-change-item+.lang-change-item {
    border-left: none;
}

#welcome .lang-change-item:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

#welcome .lang-change-item:last-child {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

#welcome .plate-item {
    position: relative;
    min-width: 200px;
}

#welcome .plate-item>.button {
    position: relative;
    display: block;
    font-size: 20px;
    padding: 30px 35px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border: 1px solid #a19b95;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#welcome .swiper-slide+.swiper-slide {
    margin-left: -1px;
}

#welcome .plate-item>.button:hover {
    z-index: 2;
    border-color: #fff;
    background: rgba(128, 189, 1, 0.75);
}

#welcome .plate-item .iconfont {
    position: absolute;
    right: 15px;
}

#welcome .plate-item .figure {
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: 100%;
    width: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

#welcome .plate-item svg path {
    transform-origin: center center;
}

#welcome .plate-item .petal {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transform: scale(0) translateY(100%);
    -webkit-transform: scale(0) translateY(100%);
    -moz-transform: scale(0) translateY(100%);
    -ms-transform: scale(0) translateY(100%);
    -o-transform: scale(0) translateY(100%);
    transform-origin: 50% 100%;
}

#welcome .plate-item .button:hover+.figure .petal {
    transform: scale(1) translateY(63%);
    -webkit-transform: scale(1) translateY(63%);
    -moz-transform: scale(1) translateY(63%);
    -ms-transform: scale(1) translateY(63%);
    -o-transform: scale(1) translateY(63%);
}

#welcome .plate-item .petal>path {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(2) {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(3) {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(4) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(5) {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(6) {
    transform: rotate(75deg);
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(7) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(8) {
    transform: rotate(105deg);
    -webkit-transform: rotate(105deg);
    -moz-transform: rotate(105deg);
    -ms-transform: rotate(105deg);
    -o-transform: rotate(105deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(9) {
    transform: rotate(120deg);
    -webkit-transform: rotate(120deg);
    -moz-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    -o-transform: rotate(120deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(10) {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(11) {
    transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
}

#welcome .plate-item .button:hover+.figure .petal>path:nth-child(12) {
    transform: rotate(165deg);
    -webkit-transform: rotate(165deg);
    -moz-transform: rotate(165deg);
    -ms-transform: rotate(165deg);
    -o-transform: rotate(165deg);
}

#welcome .plate-item .hill {
    position: absolute;
    width: 100%;
    height: 100%;
}

#welcome .plate-item .hill polyline {
    transform-origin: center bottom;
    transition: all 0.5s ease 0.2s;
    -webkit-transition: all 0.5s ease 0.2s;
    -moz-transition: all 0.5s ease 0.2s;
    -ms-transition: all 0.5s ease 0.2s;
    -o-transition: all 0.5s ease 0.2s;
    transform: translate(80%, 80%);
    -webkit-transform: translate(80%, 80%);
    -moz-transform: translate(80%, 80%);
    -ms-transform: translate(80%, 80%);
    -o-transform: translate(80%, 80%);
}

#welcome .plate-item .hill polyline:nth-child(2) {
    transition-delay: 0.4s;
}

#welcome .plate-item .hill polyline:nth-child(3) {
    transition-delay: 0.6s;
}

#welcome .plate-item .button:hover .hill polyline:nth-child(1) {
    transform: scale(0.7) translateX(50%);
    -webkit-transform: scale(0.7) translateX(50%);
    -moz-transform: scale(0.7) translateX(50%);
    -ms-transform: scale(0.7) translateX(50%);
    -o-transform: scale(0.7) translateX(50%);
}

#welcome .plate-item .button:hover .hill polyline:nth-child(2) {
    transform: scale(0.7) translateX(75%);
    -webkit-transform: scale(0.7) translateX(75%);
    -moz-transform: scale(0.7) translateX(75%);
    -ms-transform: scale(0.7) translateX(75%);
    -o-transform: scale(0.7) translateX(75%);
}

#welcome .plate-item .button:hover .hill polyline:nth-child(3) {
    transform: scale(0.7) translateX(101%);
    -webkit-transform: scale(0.7) translateX(101%);
    -moz-transform: scale(0.7) translateX(101%);
    -ms-transform: scale(0.7) translateX(101%);
    -o-transform: scale(0.7) translateX(101%);
}

@media only screen and (max-width:1700px) {
    #welcome .content {
        width: calc(100% - 44px);
    }
}

@media only screen and (max-width:1600px) {
    #welcome .title-area {
        font-size: 60px;
    }

    #welcome .title-area .title.cn {
        font-size: 30px;
        margin-top: 16px;
    }

    #welcome .plate-item>.button {
        padding: 26px 35px;
        font-size: 18px;
    }

    #welcome .lang-change-item {
        padding: 14px 0;
        width: 100px;
    }
}

@media only screen and (max-width:1400px) {
    #welcome .title-area {
        font-size: 50px;
    }

    #welcome .title-area .title.cn {
        font-size: 26px;
        margin-top: 10px;
    }

    #welcome .plate-item>.button {
        padding: 20px 35px;
        font-size: 16px;
    }

    #welcome .title-area {
        margin-top: 200px;
    }

    #welcome .lang-change-item {
        padding: 12px 0;
        width: 90px;
    }
}

@media only screen and (max-width:1024px) {
    #welcome .content {
        width: calc(100% - 32px);
    }

    #welcome .plate-item .iconfont {
        display: none;
    }

    #welcome .title-area {
        font-size: 40px;
    }

    #welcome .title-area .title.cn {
        font-size: 24px;
        margin-top: 5px;
    }

    #welcome .plate-item>.button {
        padding: 20px 10px;
        font-size: 14px;
    }
}

@media only screen and (max-width:768px) {
    #welcome .title-area {
        font-size: 30px;
    }

    #welcome .content {
        display: block;
    }

    #welcome .plate-change-area {
        margin-top: 100px;
        flex-direction: column;
    }

    #welcome .plate-item {
        max-width: 250px;
        margin-bottom: 10px;
    }

    #welcome .plate-item>.button {
        padding: 15px;
    }

    #welcome .plate-item .figure {
        opacity: 0.2;
    }

    #welcome .plate-change-swiper {
        margin: 0 auto;
        max-width: 200px;
    }
}


/* ----------------------通用样式----------------------- */


/* ----------------------banner----------------------- */


/* ----------------------head----------------------- */

.header {
    width: 100%;
    position: fixed;
    /* transform: translate3d(0, 0, 0); */
    z-index: 22;
    /* opacity: 0; */
    /* padding-left: 3.125vw; */
    transition: background-color 0.4s cubic-bezier(0.52, 0.08, 0.18, 1);
    left: 0;
    background-color: #fff;
    /* transition: all .5s; */
}

.header .header-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 3.125vw;
    z-index: 22;
}

.header .header-wrap .m-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header .header-wrap .m-menu .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    width: 50vw;
    /* margin: 0 1.875vw auto; */
}

.header .header-wrap .m-menu .menu .item {
    width: 14.3%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.header .header-wrap .m-menu .menu .item .menu-title {
    font-size: 14px;
    color: #4e4e4e;
    font-weight: bold;
    position: relative;
}

.header .header-wrap .m-menu .menu .item.on .menu-title {
    color: #80bd01;
}

.header .header-wrap .m-menu .menu .item .menu-title::after {
    position: absolute;
    content: "";
    display: block;
    width: calc(100% - 1px);
    height: 2px;
    background-color: #4e4e4e;
    left: 1px;
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: 0.5s transform cubic-bezier(0.52, 0.08, 0.18, 1);
}

.header .header-wrap .m-menu .menu .item.on .menu-title::after,
.header .header-wrap .m-menu .menu .item:hover .menu-title::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

.header .header-wrap .m-menu .menu .item.on .menu-title::after {
    background-color: #80bd01;
}

.header .header-wrap .m-menu .menu .item .menu-sub {
    position: absolute;
    padding-top: 35px;
    text-align: left;
    width: 250px;
    height: 0;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a {
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #343634;
    background-color: #4e4e4e;
    transform-origin: left;
    transform: translateX(-20%);
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1);
    overflow: hidden;
    justify-content: space-between;
    padding-right: 0.2rem;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
    z-index: 0;
    background-color: #f5f5f5;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(2) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.2s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(3) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.3s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(4) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.4s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(5) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.5s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(6) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.6s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(7) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.7s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(8) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.8s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(9) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.9s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:nth-child(10) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 1s;
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a .tit {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
}

.header .header-wrap .m-menu .menu .item .menu-sub.active,
.header .header-wrap .m-menu .menu .item:hover .menu-sub {
    height: auto;
}

.header .header-wrap .m-menu .menu .item .menu-sub.active .sub-a,
.header .header-wrap .m-menu .menu .item:hover .menu-sub .sub-a {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:hover::before {
    transform: translateX(0%);
}

.header .header-wrap .m-menu .menu .item .menu-sub .sub-a:hover .tit {
    color: #4e4e4e;
}

.header .header-wrap .r-lang {
    display: flex;
}

.header .header-wrap .r-lang .lg-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 640px;
    margin: 0 1.875vw;
    position: relative;
}

.header .header-wrap .r-lang .lg-ul .tit {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 22px 0 0px;
    font-weight: bold;
    font-size: 12px;
    color: #1a1a1a;
}

.header .header-wrap .r-lang .lg-ul .tit::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent transparent#1a1a1a #1a1a1a;
    transform: rotate(-45deg);
    margin-top: -4px;
}

.header .header-wrap .r-lang .lg-ul .tit::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1b1b1b;
}

.header .header-wrap .r-lang .lg-ul .lglist {
    position: absolute;
    /* padding-top: 35px; */
    text-align: left;
    width: 128px;
    height: 0;
    left: -45px;
    top: 100%;
}

.header .header-wrap .r-lang .lg-ul .lglist .lia {
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #343634;
    background-color: #4e4e4e;
    transform-origin: left;
    transform: translateX(-20%);
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1);
    overflow: hidden;
}

.header .header-wrap .r-lang .lg-ul .lglist .lia:nth-child(2) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.2s;
}

.header .header-wrap .r-lang .lg-ul .lglist .lia:nth-child(3) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.3s;
}

.header .header-wrap .r-lang .lg-ul .lglist .lia::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
    z-index: 0;
    background-color: #f5f5f5;
}

.header .header-wrap .r-lang .lg-ul .lglist .lia .lg {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-left: 20px;
    font-size: 14px;
    font-weight: bold;
}

.header .header-wrap .r-lang .lg-ul .lglist.active,
.header .header-wrap .r-lang .lg-ul:hover .lglist {
    height: auto;
}

.header .header-wrap .r-lang .lg-ul .lglist.active .lia,
.header .header-wrap .r-lang .lg-ul:hover .lglist .lia {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
}

.header .header-wrap .r-lang .lg-ul .lglist.active .lia::before,
.header .header-wrap .r-lang .lg-ul .lglist .lia:hover::before {
    transform: translateX(0%);
}

.header .header-wrap .r-lang .lg-ul .lglist .lia:hover .lg {
    color: #4e4e4e;
}

.header .header-wrap .r-lang .search-a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border-left: 1px solid #bac9cd;
    margin: 20px 0;
}

.header .header-wrap .r-lang .search-a .sa {
    background-image: url(../images/icon01.png);
    width: 6.25vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: auto;
    min-width: 60px;
}

.header .header-wrap .r-lang .reserve {
    position: relative;
}

.header .header-wrap .r-lang .reserve .tit {
    overflow: hidden;
    background-color: #7c7e71;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* box-sizing: unset; */
    max-width: 180px;
    width: 11vw;
    height: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: 0.8s all cubic-bezier(0.52, 0.08, 0.18, 1);
    padding: 0 0.2rem;
}

.header .header-wrap .r-lang .reserve .tit::before {
    content: '';
    position: absolute;
    right: 0.2rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent#ffffff #ffffff transparent;
    transform: rotate(45deg);
    margin-top: -6px;
}

.header .header-wrap .r-lang .reserve .tit .ii {
    display: block;
    width: 19px;
    height: 18px;
    background-image: url(../images/icon02.png);
    margin-right: 0.11rem;
}

.header .header-wrap .r-lang .reserve .tit .tt {
    flex: 1;
}

.header .header-wrap .r-lang .reserve .reserve-ul {
    position: absolute;
    text-align: left;
    width: 250px;
    height: 0;
    right: 0;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item {
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    padding-left: 20px;
    background-color: #4e4e4e;
    transform-origin: left;
    transform: translateX(-20%);
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0s;
    overflow: hidden;
    justify-content: space-between;
    padding-right: 0.2rem;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:nth-child(2) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.2s;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:nth-child(3) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.3s;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:nth-child(4) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.4s;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:nth-child(5) {
    transition: 0.75s all cubic-bezier(0.52, 0.08, 0.18, 1) 0.5s;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #343634;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
    z-index: 0;
    background-color: #f5f5f5;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item .text {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
}

.header .header-wrap .r-lang .reserve .reserve-ul.active,
.header .header-wrap .r-lang .reserve:hover .reserve-ul {
    height: auto;
}

.header .header-wrap .r-lang .reserve .reserve-ul.active .re-item,
.header .header-wrap .r-lang .reserve:hover .reserve-ul .re-item {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%);
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:hover .text {
    color: #4e4e4e;
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:hover::before {
    transform: translateX(0%);
}

.header .header-wrap .r-lang .reserve .reserve-ul .re-item:hover::after {
    background-color: #f5f5f5;
}

.header .header-wrap .l-logo .logo-img .img2 {
    display: none;
}

.header .header-wrap .l-logo .logo-img {
    display: block;
}

.header.nobgcolor {
    background-color: transparent;
}

.header.nobgcolor .header-wrap .m-menu .menu .item .menu-title,
.header.nobgcolor .header-wrap .r-lang .lg-ul .tit {
    color: #ededed;
}

.header.nobgcolor .header-wrap .l-logo .logo-img .img1 {
    display: none;
}

.header.nobgcolor .header-wrap .l-logo .logo-img .img2 {
    display: block;
}

.header.nobgcolor .header-wrap .m-menu .menu .item .menu-title::after,
.header.nobgcolor .header-wrap .r-lang .lg-ul .tit::after {
    background-color: #ededed;
}

.header.nobgcolor .header-wrap .r-lang .lg-ul .tit::before {
    border-color: transparent transparent#ededed #ededed;
}

.header.nobgcolor .header-wrap .r-lang .search-a .sa {
    background-image: url(../images/icon01_bai.png);
}


/* ----------------------首页----------------------- */


/* banner */


/* *************************以下为Harvey写的样式********************* */

.go-to-top-button {
    position: fixed;
    display: none;
    z-index: 100;
    bottom: 1rem;
    right: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transform: translateX(120%);
    -webkit-transform: translateX(120%);
    -moz-transform: translateX(120%);
    -ms-transform: translateX(120%);
    -o-transform: translateX(120%);
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}

.go-to-top-button:hover {
    background: #80bd01;
    color: #fff;
}

.go-to-top-button.show {
    right: calc(50% - 830px);
}

.go-to-top-button .iconfont {
    margin-bottom: 3px;
}

@media only screen and (max-width:1850px) {
    .go-to-top-button.show {
        right: 10px;
    }

    .go-to-top-button {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@media only screen and (max-width:1024px) {
    .go-to-top-button {
        font-size: 12px;
        padding: 6px 8px;
    }

    .go-to-top-button .iconfont {
        margin-bottom: 0;
    }
}

.iconfont::before {
    transition: unset;
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    -o-transition: unset;
}

.only-1-row {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.only-2-row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.only-3-row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.only-4-row {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.home .bg-img-container {
    position: relative;
    width: 100%;
}

.home .bg-img-container>.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url() no-repeat center center;
    background-size: cover;
}

#app::before {
    content: '';
    display: table;
}

#welcome .info-area {
    position: relative;
    z-index: 2;
}


/* 标题下划线 */

.with-short-line::after {
    content: "";
    display: block;
    width: 0.6rem;
    height: 2px;
    background: #80bd01;
    margin-top: 0.14rem;
}


/* 版块大标题 */

.area-title.normal {
    background: #eff0f1;
    overflow: hidden;
}

.area-title.normal .content {
    padding-top: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.area-title.normal .left-area .title-cn {
    font-size: 0.3rem;
    display: inline-block;
}

.area-title.normal .left-area .title-en {
    display: inline-block;
    font-size: 18px;
    color: #7c7e71;
    font-family: 'ziti';
}

.area-title.normal .right-area .title {
    font-size: 1.3rem;
    color: #fafafb;
    line-height: 0.72;
    font-family: 'ziti1';
}


/* 带横线的swiper分页器 */

.normal-pagination {
    margin-left: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.normal-pagination .line {
    width: 38px;
    height: 1px;
    background: #d4d4d4;
    margin: 0 10px;
}

.normal-pagination .swiper-pagination-total {
    color: #d4d4d4;
}


/* 查看更多按钮 */

.more.normal {
    margin-top: 0.75rem;
    border: 1px solid #80bd01;
    padding: 14px 0.5rem;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #80bd01;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: all 0.5s ease 0.1s;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
}

.more.normal .iconfont {
    margin-right: 10px;
    font-weight: normal;
    font-size: 12px;
}

.more.normal:hover {
    background: #80bd01;
    color: #fff;
}

.home.content {
    margin-top: 100px;
}

.home.content .banner-area {
    position: relative;
}

.home .banner-swiper {
    width: calc(1260 / 1920 * 100%);
    margin: 0;
    margin-left: auto;
    height: calc(100vh - 100px);
    max-height: 850px;
}

.home .banner-swiper .bg-img-container {
    height: 100%;
}

.home .banner-swiper .swiper-slide {
    display: flex;
    justify-content: flex-end;
}

.home .banner-swiper .bg-img-container {
    width: 100%;
    overflow: hidden;
    transition: all 2.5s ease-in-out;
    -webkit-transition: all 2.5s ease-in-out;
    -moz-transition: all 2.5s ease-in-out;
    -ms-transition: all 2.5s ease-in-out;
    -o-transition: all 2.5s ease-in-out;
}

.home .banner-swiper .bg-img-container>.bg-img {
    transition: all 3s ease-in-out;
    -webkit-transition: all 3s ease-in-out;
    -moz-transition: all 3s ease-in-out;
    -ms-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
}

.home .banner-swiper .bg-img-container:hover>.bg-img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home .banner-swiper .swiper-slide-active .bg-img-container>.bg-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 .banner-area .area-title {
    pointer-events: none;
    position: absolute;
    z-index: 2;
    top: calc(50% - 0.8rem);
    left: 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 .banner-area .area-title .title-en {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.25);
    max-width: 650px;
    line-height: 1;
    font-family: 'ziti1';
}

.home .banner-area .area-title .title-en::after {
    height: 0.04rem;
    min-height: 2px;
    margin-top: 0.4rem;
}

.home .banner-area .area-title .title-cn {
    font-size: 0.36rem;
    margin-top: 0.4rem;
    max-width: 650px;
}

.home .banner-area .control-area {
    position: absolute;
    z-index: 3;
    width: auto;
    left: calc(50% - 830px);
    bottom: 0.5rem;
    ;
    color: #4e4e4e;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -10px;
}

.home .banner-area .swiper-button-next,
.home .banner-area .swiper-button-prev {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: auto;
    height: auto;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin: 0;
    padding: 10px;
}

.home .banner-area .control-area ::after {
    font-size: 24px;
    color: #4e4e4e;
}

.home .banner-area .control-area .cut-line {
    width: 2px;
    height: 28px;
    background: #d4d4d4;
    margin: 0 10px;
    transform: scaleX(0.5);
    -webkit-transform: scaleX(0.5);
    -moz-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
}

.home .banner-news-area {
    position: absolute;
    z-index: 2;
    left: calc(50% + 880px);
    bottom: 0.5rem;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    background: #fff;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    overflow: hidden;
    max-width: 580px;
}

.home .banner-news-area .area-title {
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home .banner-news-swiper {
    margin-left: 65px;
}

.home .banner-news-swiper .news-item {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .banner-news-swiper .news-item .info {
    max-width: calc(100% - 25px);
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.home .banner-news-swiper .news-item .date {
    font-size: 14px;
    font-weight: 600;
    color: rgba(128, 189, 1, 0.9);
    display: inline-block;
}

.home .banner-news-swiper .news-item .text {
    font-size: 14px;
    margin-left: 20px;
    color: #4b4d4d;
    display: inline-block;
}

.home .banner-news-swiper .news-item .iconfont {
    font-size: 16px;
    color: #4b4d4d
}

.home .banner-area .scroll-remind {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    padding: 10px;
    padding-bottom: 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.home .banner-area .scroll-remind .title {
    font-family: 'Arial';
}

.home .banner-area .scroll-remind .iconfont {
    font-size: 24px;
    font-weight: 100;
}

.home .products-area {
    position: relative;
    padding-bottom: 0.8rem;
    overflow: hidden;
}

.home .products-area .product-list-swiper {
    width: 100%;
    overflow: visible;
    margin-top: 0.54rem;
}

.home .products-area .product-item .bg-img-container {
    padding-top: calc(525 / 420 * 100%);
    overflow: hidden;
}

.home .products-area .product-item .bg-img-container .bg-img {
    transition: all 1.2s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
}

.home .products-area .product-item:hover .bg-img-container .bg-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 .products-area .product-item .title-area {
    text-align: center;
}

.home .products-area .product-item .title {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
}

.home .products-area .product-item .title::after {
    width: 20px;
    margin: 8px auto 0;
}

.home .products-area .product-item .sub-title {
    font-size: 12px;
    color: #797979;
    margin-top: 10px;
    line-height: 1.6;
    height: calc(12px * 2 * 1.6);
}

.home .products-area .product-list-swiper .control-area {
    position: absolute;
    z-index: 2;
    top: calc(50% - 55px);
    transform: translateY(-50%);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.home .products-area .swiper-button-prev,
.home .products-area .swiper-button-next {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: auto;
    height: auto;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin: 0;
    padding: 10px;
    width: 0.6rem;
    height: 0.6rem;
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}

.home .products-area .swiper-button-next {
    margin-top: 14px;
}

.home .products-area .product-list-swiper .control-area ::after {
    font-size: 24px;
    text-align: center;
    color: #797979;
}

.home .service-area {
    position: relative;
}

.home .service-area .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .service-area .img-area {
    --width: calc(1250 / 1920 * 100%);
    width: var(--width);
    max-width: var(--width);
    min-width: var(--width);
}

.home .service-area .img-area .bg-img-container {
    padding-top: calc(860 / 1250 * 100%);
}

.home .service-area .info {
    padding: 0.5rem 0.9rem;
    padding-left: calc(50% - 830px);
}

.home .service-area .info .title-en {
    font-size: 18px;
    color: #7c7e71;
}

.home .service-area .info .title-cn {
    font-size: 0.3rem;
}

.home .service-area .info .title-cn::after {
    margin-top: 0.2rem;
}

.home .service-area .info .text {
    margin-top: 0.2rem;
    font-size: 14px;
    color: #797979;
    line-height: 2;
}

.home .project-area {
    padding-bottom: 0.8rem;
}

.home .project-area .area-title.normal {
    background: none;
}

.home .project-area .area-title.normal .right-area {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
}

.home .project-area .area-title.normal .right-area .more {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    margin-left: 0.3rem;
    font-size: 14px;
    white-space: nowrap;
}

.home .project-area .area-title.normal .right-area .more .iconfont {
    font-size: 16px;
    margin-left: 10px;
}

.home .project-area .project-list-area {
    margin-top: 0.26rem;
}

.home .project-area .project-list-area .swiper-slide {
    width: auto;
}

.home .project-area .project-list-area .swiper-slide .product-item {
    display: block;
    width: 100%;
    height: 100%;
}

.home .project-area .project-list-area .project-item .bg-img-container {
    overflow: hidden;
}

.home .project-area .project-list-area .project-item img {
    height: 5.2rem;
    overflow: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: all 1.2s ease;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
}

.home .project-area .project-list-area .project-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 .project-area .project-list-area .project-item .title {
    font-size: 18px;
    font-weight: 600;
    margin: 14px 0;
}

.home .impression-area {
    position: relative;
    padding: 0.5rem 0 2.5rem;
}

.home .impression-area .background-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: url() no-repeat center bottom;
}

.home .impression-area .area-title {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.25);
    font-weight: 400;
    line-height: 1;
    font-family: 'ziti1';
}

.home .impression-area .info {
    margin-top: 0.9rem;
    max-width: 7.4rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.home .impression-area .info .left-area {
    font-size: 0.3rem;
    white-space: nowrap;
}

.home .impression-area .info .left-area .title-en {
    color: #80bd01;
    margin-top: 10px;
}

.home .impression-area .info .right-area {
    padding: 0.9rem 0 0 0.7rem;
    line-height: 2;
    font-size: 14px;
}

.home .impression-area .info .right-area .more {
    margin-top: 1.2rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    color: #4e4e4e;
    background: #fff;
}

.home .impression-area .info .right-area .more:hover {
    background: #80bd01;
    color: #fff;
}

.home .culture-area {
    position: relative;
}

.home .culture-area .culture-list {
    height: 7.3rem;
    min-height: 450px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
}

.home .culture-area .culture-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.8rem;
    color: #ffffff;
}

.home .culture-area .bg-img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url() no-repeat center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 2s ease;
    -webkit-transition: opacity 2s ease;
    -moz-transition: opacity 2s ease;
    -ms-transition: opacity 2s ease;
    -o-transition: opacity 2s ease;
}

.home .culture-area .bg-img:nth-child(1),
.home .culture-area .bg-img.on {
    opacity: 1;
}

.home .culture-area .culture-item {
    opacity: 0.6;
}

.home .culture-area .culture-item .title-en {
    font-size: 18px;
    font-family: 'ziti';
}

.home .culture-area .culture-item .title-cn {
    font-size: 0.3rem;
    margin-top: 5px;
}

.home .culture-area .culture-item .text {
    display: none;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 0.2rem;
}

.home .culture-area .culture-item .text .line {
    width: 2px;
    background: #7fba03;
    margin: 0 auto 0.2rem;
    height: 0.94rem;
}

.home .culture-area .culture-item+.culture-item {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.home .culture-area .culture-item:hover {
    opacity: 1;
}

.home .culture-area .culture-item {
    transition: all 0.5s ease 0.1s;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    -o-transition: all 0.5s ease 0.1s;
}

.home .store-area {
    background: #eff0f1;
    overflow: hidden;
    padding-bottom: 0.8rem;
}

.home .store-area .content {
    position: relative;
    padding-top: 1.1rem;
}

.home .store-area .content .area-title {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 1.3rem;
    line-height: 0.75;
    font-weight: 400;
    transform-origin: top left;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.home .store-area .content .store-list-area {
    width: 100%;
}

.home .store-area .content .area-title .text-container {
    transform-origin: top center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    font-family: 'ziti1';
    font-size: 1.3rem;
}

.home .store-area .store-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -0.4rem;
}

.home .store-area .store-item {
    margin: 0 0.4rem;
    margin-bottom: 0.5rem;
    width: calc(100% / 3 - 0.8rem);
}

.home .store-area .store-item .bg-img-container {
    padding-top: calc(334 / 500 *100%);
    overflow: hidden;
}

.home .store-area .store-item .bg-img-container .bg-img {
    transition: all 1.2s ease;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home .store-area .store-item:hover .bg-img-container .bg-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 .store-area .store-item .title-area {
    line-height: 1;
    vertical-align: bottom;
    margin-top: 0.2rem;
}

.home .store-area .store-item .title-area::after {
    margin-top: 0.2rem;
}

.home .store-area .store-item .title-cn {
    display: inline-block;
    font-size: 0.3rem;
}

.home .store-area .store-item .title-en {
    display: inline-block;
    font-size: 18px;
    color: #7c7e71;
    margin-left: 5px;
    font-family: 'ziti';
}

.home .store-area .store-item .text {
    font-size: 14px;
    color: #797979;
    margin-top: 0.2rem;
    line-height: 1.8;
    height: calc(14px * 2 *1.8);
}

@media only screen and (max-width:1820px) {
    .home .banner-news-area {
        left: auto;
        right: 3%;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }

    .home .banner-area .control-area {
        left: 3%
    }

    .home .service-area .info {
        padding-left: 3%;
        padding-right: 2%;
    }
}

@media only screen and (max-width:1400px) {
    .home .banner-area .scroll-remind {
        left: auto;
        right: calc(1260 / 1920 * 100%);
        color: #4e4e4e;
    }

    .home .culture-area .culture-item {
        padding: 0.5rem
    }

    .home .store-area .store-list {
        margin: 0 -0.2rem;
    }

    .home .store-area .store-item {
        margin: 0 0.2rem 0.5rem;
        width: calc(100% / 3 - 0.4rem);
    }
}

@media only screen and (max-width:1200px) {

    .home .products-area .product-list-swiper .control-area ::after,
    .area-title.normal .left-area .title-cn {
        font-size: 22px;
    }

    .home .store-area .store-item .title-cn,
    .home .culture-area .culture-item .title-cn,
    .home .impression-area .info .left-area,
    .home .service-area .info .title-cn {
        font-size: 20px;
    }

    .home .impression-area .info .right-area {
        padding-left: 0.5rem;
    }

    .home .culture-area .culture-item {
        padding: 0.3rem
    }
}

@media only screen and (max-width:1024px) {
    .home .products-area .product-list-swiper .control-area ::after {
        font-size: 20px;
    }

    .home .banner-area .area-title .title-cn {
        font-size: 22px;
    }

    .with-short-line::after {
        display: none;
    }

    .home .banner-swiper .swiper-slide-next .bg-img-container,
    .home .banner-swiper .swiper-slide-active .bg-img-container {
        width: 100%;
    }

    .home .banner-swiper .bg-img-container {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }

    .home .banner-area .scroll-remind {
        display: none;
    }

    .home .banner-news-area {
        max-width: 480px;
    }

    .area-title.normal {
        padding-bottom: 0.3rem;
    }

    .home .service-area .content {
        flex-direction: column-reverse;
    }

    .home .service-area .info {
        padding-right: 0.3rem;
    }

    .home .service-area .img-area {
        --width: 100%;
    }

    .home .store-area .store-item {
        width: calc(100% / 2 - 0.4rem);
    }

    .home .impression-area {
        padding-bottom: 1.5rem;
    }

    .more.normal {
        padding: 12px 40px
    }
}

@media only screen and (max-width:768px) {
    .home .banner-swiper {
        width: 100%;
    }

    .home .banner-area .control-area {
        display: none;
    }

    .home .banner-news-area {
        max-width: 94%;
    }

    .home .banner-area>.area-title {
        top: auto;
        bottom: 150px;
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        -moz-transform: translate3d(-50%, 0, 0);
        -ms-transform: translate3d(-50%, 0, 0);
        -o-transform: translate3d(-50%, 0, 0);
    }

    .home .banner-area .area-title .title-cn,
    .home .banner-area .area-title .title-en {
        color: #fff;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    }

    .home .banner-news-swiper .news-item .text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: unset;
        white-space: unset;
    }

    .area-title.normal .left-area {
        position: relative;
        z-index: 2;
    }

    .area-title.normal .right-area {
        position: absolute;
        right: 0;
        z-index: 1;
        opacity: 0.6;
    }

    .home .products-area .product-item .title {
        font-size: 16px;
    }

    .home .impression-area .area-title {
        max-width: 94%;
        margin: 0 auto;
        font-size: 1rem;
    }

    .home .project-area .area-title.normal {
        padding-bottom: 0;
    }

    .home .project-area .area-title.normal .content {
        flex-direction: column;
        align-items: start;
    }

    .home .project-area .area-title.normal .right-area {
        position: relative;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .home .project-area .area-title.normal .normal-pagination {
        width: auto;
        margin-left: 0;
    }

    .home .impression-area .info {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .home .impression-area .info .right-area {
        padding-left: 0;
    }

    .home .impression-area .info .right-area .more {
        display: flex;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .home .culture-area .culture-list {
        flex-direction: column;
        height: auto;
    }

    .home .culture-area .culture-item {
        width: 100%;
        padding: 1.2rem 0.8rem;
    }

    .home .culture-area .culture-item+.culture-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .home .culture-area .culture-item .title-area,
    .home .culture-area .culture-item .text {
        width: 94%;
        max-width: 380px;
    }

    .home .store-area .store-item {
        width: calc(100% - 0.4rem);
    }

    .home .store-area .content .area-title {
        font-size: 100px;
    }

    .home .banner-news-swiper .news-item .info {
        line-height: 1.6;
        min-height: calc(2 * 1.6 * 14px);
    }
}

@media only screen and (max-width:480px) {
    .home .banner-news-swiper .news-item .date {
        display: none;
    }

    .home .banner-news-swiper .news-item .text {
        margin-left: 0;
    }

    .home .products-area .product-list-swiper {
        overflow: hidden;
    }

    .home .products-area .product-list-swiper .control-area {
        right: 10px;
    }

    .home .project-area .project-list-area .project-item .bg-img-container {
        padding-top: calc(490 / 390 * 100%);
    }

    .home .project-area .project-list-area .project-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .home .store-area .content .area-title {
        left: -0.5rem;
        opacity: 0.8;
    }

    .home .store-area .content .area-title .text-container,
    .home .store-area .content .area-title {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
}


/* ----------------------关于玉兰----------------------- */


/* 内页banner */

.incombanner {
    display: flex;
    padding-top: 100px;
    position: relative;
}

.incombanner .l-text {
    width: 4.8rem;
}

.incombanner .l-text .textdiv {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.incombanner .l-text .textdiv .text .cn {
    font-size: 0.48rem;
    color: #2d2d2d;
    margin-bottom: 0.1rem;
    line-height: 1.1;
}

.incombanner .l-text .textdiv .text .en {
    font-size: 0.18rem;
    color: #7c7e71;
}

.incombanner .r-img {
    width: calc(100% - 4.8rem);
    flex: 1;
    position: relative;
}

.incombanner .r-img::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    right: 0;
    animation: articlePageTitlePhoto 1s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    top: 0;
    display: none;
}

@keyframes articlePageTitlePhoto {
    0% {
        width: 100%
    }

    100% {
        width: 0%
    }
}

.incombanner .r-img .img,
.incombanner .r-img .videobox {
    height: 6.5rem;
}

.incombanner .r-img .img img {
    width: 100%;
    height: 100%;
}

.incomhref {
    position: relative;
    padding: 0.375rem 0;
}

.incomhref::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #eff0f1;
}

.incomhref.noafter::after {
    display: none;
}

.incomhref .l-href .href-a {
    font-size: 12px;
    color: #87897d;
}

.incomhref .l-href .href-a .h {
    width: 14px;
    height: 1px;
    background-color: #87897d;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.incomhref .l-href .href-a.on {
    color: #80bd01;
}

.incomhref .l-href .href-a.on .h {
    background-color: #80bd01;
}


/* 公司简介 */

.about-introduction .introd-cont {
    padding: 1rem 0 0.86rem;
    background-position: left bottom;
}

.about-introduction .introd-cont .content {
    font-size: 16px;
    color: #404040;
    line-height: 2.25;
    max-width: 700px;
    margin: 0 auto;
}

.about-introduction .introd-member {
    position: relative;
    padding: 1.1rem 0 1.16rem;
    margin-bottom: 0.82rem;
}

.about-introduction .introd-member::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5.14rem;
    height: 100%;
    background-color: #eff0f1;
}

.about-introduction .introd-member .memberdiv {
    display: flex;
    position: relative;
    z-index: 1;
}

.about-introduction .introd-member .memberdiv .l-member {
    width: 50%;
    padding-left: 0.5rem;
    padding-right: 2.9rem;
}

.about-introduction .introd-member .memberdiv .l-member .title {
    border-bottom: 1px solid #d6d6d6;
}

.about-introduction .introd-member .memberdiv .l-member .title .cn {
    font-size: 0.48rem;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.about-introduction .introd-member .memberdiv .l-member .title .line {
    width: 55px;
    height: 2px;
    background-color: #80bd01;
    margin-bottom: 0.44rem;
}

.about-introduction .introd-member .memberdiv .l-member .member-ul li {
    font-size: 16px;
    color: #404040;
    border-bottom: 1px solid #d6d6d6;
    height: 0.68rem;
    display: flex;
    align-items: center;
    min-height: 42px;
}

.about-introduction .introd-member .memberdiv .l-member .member-ul li .ii {
    font-size: 16px;
    color: #80bd01;
    margin: 0 0.14rem;
}

.about-introduction .introd-member .memberdiv .l-member .member-ul li:nth-child(2n+0) {
    background-color: #eff0f1;
}

.about-introduction .introd-member .memberdiv .r-img {
    width: 50%;
}

.about-introduction .introd-member .memberdiv .r-img .img {
    position: relative;
    padding-top: calc(594 / 880 * 100%);
}


/* 发展历程 */

.about-history {
    padding: 1rem 0 1.38rem;
}

.about-history .his-content {
    display: flex;
}

.about-history .his-content .l-content {
    width: 5.4rem;
    padding-right: 1.9rem;
}

.about-history .his-content .l-content .img {
    text-align: right;
    padding-bottom: 0.52rem;
    border-bottom: 1px solid #d6d6d6;
}

.about-history .his-content .l-content .contet .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    line-height: 1.1;
    padding: 0.46rem 0 0.26rem;
}

.about-history .his-content .l-content .contet .line {
    width: 58px;
    height: 2px;
    background-color: #80bd01;
    margin-bottom: 0.24rem;
}

.about-history .his-content .l-content .contet .cont {
    font-size: 14px;
    color: #797979;
    line-height: 2.57;
}

.about-history .his-content .r-list {
    flex: 1;
    width: calc(100% - 5.4rem);
}

.about-history .his-content .r-list .year-list .item {
    font-size: 14px;
    color: #797979;
}

.about-history .his-content .r-list .year-list .item.on {
    color: #80bd01;
    font-weight: bold;
}

.about-history .his-content .r-list .year-list .item .ll {
    margin: 0 10px;
}

.about-history .his-content .r-list .year-list .item.qb .h {
    width: 14px;
    height: 2px;
    background-color: #797979;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.about-history .his-content .r-list .year-list .item.qb.on .h {
    background-color: #7bb20c;
}

.about-history .his-content .r-list .history-list .item {
    padding: 0.5rem 0 0.5rem 1.34rem;
    border-bottom: 1px solid #d6d6d6;
    position: relative;
}

.about-history .his-content .r-list .history-list .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.82rem;
    width: 0.72rem;
    height: 1px;
    background-color: #2d2d2d;
}

.about-history .his-content .r-list .history-list .item::after {
    content: '';
    position: absolute;
    top: 0.82rem;
    left: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2d2d2d;
    margin-top: -3px;
}

.about-history .his-content .r-list .history-list .item .year {
    font-size: 0.6rem;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    transition: all .5s;
}

.about-history .his-content .r-list .history-list .item .text {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 2.25;
}


/* 集团荣誉 */

.about-honor .honor-top {
    padding-bottom: 0.55rem;
}

.about-honor .honor-top .content {
    display: flex;
    align-items: center;
}

.about-honor .honor-top .content .l-title {
    width: 5.4rem;
    padding-right: 1.9rem;
    position: relative;
    padding-left: 0.4rem;
}

.about-honor .honor-top .content .l-title .ii {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 24px;
    background-image: url(../images/icon07.png);
    background-repeat: no-repeat;
}

.about-honor .honor-top .content .l-title .tit {
    font-size: 0.24rem;
    color: #80bd01;
    line-height: 1.1;
    white-space: nowrap;
}

.about-honor .honor-top .content .l-title .tit .btit {
    font-size: 0.9rem;
    font-family: 'ziti';
}

.about-honor .honor-top .content .r-text {
    width: calc(100% - 5.4rem);
    flex: 1;
    font-size: 14px;
    color: #797979;
    line-height: 1.7;
}

.about-honor .honor-list {
    background-color: #eff0f1;
}

.about-honor .honor-list .h-class {
    border-bottom: 1px solid #d6d6d6;
    padding-top: 0.75rem;
}

.about-honor .honor-list .h-class .checktit {
    display: none;
}

.about-honor .honor-list .h-class .check-ul {
    display: flex;
    justify-content: center;
}

.about-honor .honor-list .h-class .check-ul .item {
    display: block;
    margin: 0 0.31rem;
    padding-bottom: 0.25rem;
    font-size: 18px;
    color: #4e4e4e;
    line-height: 1.1;
}

.about-honor .honor-list .h-class .check-ul .item.on {
    border-bottom: 1px solid #80bd01;
    color: #80bd01;
    font-weight: bold;
}

.about-honor .honor-list .h-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0.6rem 0 0.5rem;
}

.about-honor .honor-list .h-list .item {
    width: calc((100% - 2.65rem) / 4);
    margin-right: 0.88rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
}

.about-honor .honor-list .h-list .item:nth-child(4n+0) {
    margin-right: 0;
}

.about-honor .honor-list .h-list .item .img {
    padding: 0.18rem 0;
    transform: translateY(0);
    transition: all .5s;
}

.about-honor .honor-list .h-list .item .img img {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, .2);
}

.about-honor .honor-list .h-list .item .tit {
    font-size: 14px;
    color: #2d2d2d;
    line-height: 1.7;
    text-align: center;
}


/* 我们的实力 */

.strength-banner {
    position: relative;
}

.strength-banner .bg {
    padding-top: calc(950 / 1920 * 100%);
    min-height: 60vh;
}

.strength-banner .banner-cont {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.strength-banner .banner-cont .img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5rem;
    height: 6.48rem;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    animation: streimg 2.5s;
    -webkit-animation: streimg 2.5s;
}

@keyframes streimg {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -45%);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
    }
}

@-webkit-keyframes streimg {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -45%);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
    }
}

.strength-banner .banner-cont .img img {
    width: 100%;
    height: 100%;
}

.strength-banner .banner-cont .img .title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.strength-banner .banner-cont .img .title .en {
    font-size: 18px;
    color: #ffffff;
    font-family: 'ziti';
}

.strength-banner .banner-cont .img .title .cn {
    font-size: 0.48rem;
    color: #ffffff;
}

.strength-banner .banner-cont .class-ul {
    position: absolute;
    right: 0;
    top: 50%;
    height: 6.48rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.strength-banner .banner-cont .class-ul .c-li {
    display: flex;
    align-items: center;
    margin-bottom: 0.22rem;
    width: 100%;
}

.strength-banner .banner-cont .class-ul .c-li .ii {
    width: 15px;
    height: 15px;
    position: relative;
    margin-right: 0.18rem;
    opacity: 0;
    visibility: hidden;
}

.strength-banner .banner-cont .class-ul .c-li .ii::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #80bd01;
    transform: translateX(-50%);
}

.strength-banner .banner-cont .class-ul .c-li .ii::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #80bd01;
}

.strength-banner .banner-cont .class-ul .c-li .tit {
    font-size: 22px;
    color: rgba(255, 255, 255, .5);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.strength-banner .banner-cont .class-ul .c-li.on .ii {
    opacity: 1;
    visibility: visible;
}

.strength-banner .banner-cont .class-ul .c-li.on .tit {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.strength-banner .banner-cont .stre-href {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.strength-banner .banner-cont .stre-href .href-a {
    font-size: 12px;
    color: #87897d;
}

.strength-banner .banner-cont .stre-href .href-a .h {
    width: 13px;
    height: 1px;
    background-color: #87897d;
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
}

.strength-banner .banner-cont .stre-href .href-a.on {
    color: #80bd01;
}

.strength-banner .banner-cont .stre-href .href-a.on .h {
    background-color: #80bd01
}

.about-strength {
    padding-top: 1.1rem;
}

.about-strength .stre-one .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-strength .stre-one .list .item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 1.1rem;
}

.max533 {
    max-width: 533px;
}

.about-strength .stre-one .list .item .l-img {
    width: 50%;
    padding-right: 0.66rem;
}

.about-strength .stre-three .stre-one .list .item .l-img {
    padding-right: 0;
}

.about-strength .stre-one .list .item .r-info {
    width: 50%;
    padding-left: 0.66rem;
}

.about-strength .stre-three .stre-one .list .item .r-info {
    padding-left: 1.08rem;
}

.about-strength .stre-one .list .item .r-info .title .cn {
    font-size: 0.3rem;
    color: #2d2d2d;
    line-height: 1.33;
    margin-bottom: 0.2rem;
}

.about-strength .stre-one .list .item .r-info .title .incom-line {
    margin-bottom: 0.24rem;
}

.about-strength .stre-one .list .item .r-info .title .desc {
    font-size: 14px;
    color: #797979;
    line-height: 1.85;
    margin-bottom: 0.55rem;
}

.about-strength .stre-one .list .item.uudd {
    flex-direction: column-reverse;
    width: auto;
    align-items: flex-start;
    max-width: 50%;
    justify-content: space-between;
}

.about-strength .stre-one .list .item.uudd .l-img {
    padding-right: 0;
    width: 100%;
}

.about-strength .stre-one .list .item.uudd .r-info {
    width: 100%;
    padding-left: 0;
}

.about-strength .stre-one .list .item.uudd .r-info .title .cn {
    height: 0.8rem;
}

.about-strength .stre-one .list .item.rrll {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.about-strength .stre-one.ability .list .item {
    margin-bottom: 1.66rem;
}

.about-strength .stre-one.ability .list .item .l-img,
.about-strength .stre-one.ability .list .item .r-info {
    padding: 0;
    width: auto;
    max-width: 50%;
}

.about-strength .stre-one.ability .list .item .r-info {
    padding-left: 1.5rem;
}

.about-strength .stre-one.ability .list .item.rrll .r-info {
    padding-left: 0;
    padding-right: 1.3rem;
}

.stre-two .list .item.san {
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #d6d6d6;
}

.stre-two .list .item.san .title {
    margin: 0.5rem 0 0.25rem;
}

.stre-two .list .item.san .title .cn {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.stre-two .list .item .desc {
    font-size: 14px;
    color: #797979;
    line-height: 1.85;
    max-width: 66%;
    margin: 0 auto;
    text-align: center;
}

.stre-two .list .item.si {
    padding: 0.8rem 0;
}

.stre-three {
    padding-bottom: 0.8rem;
}

.stre-three .tsan {
    margin-top: 0.7rem;
}


/* 公司新闻 */

.about-news {
    padding: 0.75rem 0 0.54rem
}

.about-news .news-select {
    margin: 0 auto 1rem;
    text-align: center;
    z-index: 1;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #d6d6d6;
}

.news-list .item {
    display: block;
    width: calc(100% / 3);
    padding: 0 0.86rem 1.4rem;
    border-right: 1px solid #d6d6d6;
}

.news-list .item .time {
    font-size: 16px;
    color: #80bd01;
    font-family: 'Arial';
    margin-bottom: 0.1rem;
}

.news-list .item .tit {
    font-size: 24px;
    color: #4b4d4d;
    line-height: 1.5;
    height: 72px;
    margin-bottom: 0.2rem;
}

.news-list .item .desc {
    font-size: 14px;
    color: #8c8d8d;
    line-height: 1.7;
    height: 72px;
    margin-bottom: 0.24rem;
}

.news-list .item .incom-arrow {
    margin-bottom: 0.35rem;
}

.news-list .item .img {
    padding-top: calc(250 / 380 * 100%);
    position: relative;
    transform: translateY(0);
    transition: all .5s;
}

.news-list .item .img .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-size: 0.6rem;
}

.news-list.video .item .img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.2rem;
    height: 0.2rem;
    background-color: #80bd01;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* 视频专区 */

.about-video {
    padding: 1rem 0 0.5rem;
}

.videodiv {
    display: none;
}

body .video-bgcolor {
    background-color: #000000;
}

body .video-bgcolor .layui-layer-content {
    overflow: hidden;
}


/* 新闻详情 */

.newsview-main .newsv-top {
    height: 3.5rem;
}

.newsview-main .newsv-top .content {
    flex-direction: column;
    height: 100%;
}

.newsview-main .newsv-top .content .time {
    font-size: 16px;
    color: #80bd01;
    font-family: 'Arial';
    margin-bottom: 0.2rem;
}

.newsview-main .newsv-top .content .title {
    font-size: 0.3rem;
    color: #2d2d2d;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0.8rem;
}

.newsview-main .newsv-top .content .incomhref {
    padding: 0;
}

.newsview-main .newsv-top .content .incomhref::after {
    display: none;
}

.newsview-main .newsv-content {
    padding-bottom: 0.78rem;
}

.newsview-main .newsv-content .nv-content {
    padding: 0 0.5rem;
    border-left: 1px solid #d6d6dd;
    border-right: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
}

.newsview-main .newsv-content .nv-content .newsv-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.33rem 0 0.26rem;
}

.newsview-main .newsv-content .nv-content .newsv-share .back {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #87897d;
}

.newsview-main .newsv-content .nv-content .newsv-share .back .incom-arrow {
    margin-right: 0.1rem;
}

.share-area {
    display: flex;
    align-items: center;
}

.share-area .title {
    margin-right: 5px;
}

.share-area .bdsharebuttonbox li a {
    background-position: center;
    background-size: contain;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 0 0 10px;
}

.share-area .bds_weixin {
    background-image: url(../images/icon08.png);
}

.share-area .bds_tsina {
    background-image: url(../images/icon09.png);
}

.share-area .bds_more {
    background-image: url(../images/icon10.png);
}

.newsview-main .newsv-content .nv-content .newsv-text {
    font-size: 16px;
    color: #4b4d4d;
    line-height: 1.75;
    padding: 0.35rem 0 0.4rem;
    border-bottom: 1px solid #d6d6d6;
}

.newsview-main .newsv-content .nv-content .page-box {
    justify-content: space-between;
    padding: 0.3rem 0 0.45rem;
}

.newsview-main .newsv-content .nv-content .page-box a {
    font-size: 14px;
    color: #2b2b2b;
}

.newsview-main .newsv-content .nv-content .page-box .incom-arrow {
    margin-left: 0.15rem;
    transition: all .5s;
}

.newsview-main .newsv-content .nv-content .page-box .incom-arrow.ll {
    margin-left: 0;
    margin-right: 0.15rem;
}


/* -----------------------产品鉴赏---------------------- */

.product-main,
.productlist-main {
    padding-top: 100px;
}

.productlist-main {
    padding-bottom: 0.4rem;
}

.product-main .pro-title {
    text-align: center;
    padding: 0.68rem 0 0.75rem;
}

.product-main .pro-title .cn {
    font-size: 0.48rem;
    color: #2d2d2d;
}

.product-main .pro-title .en {
    font-size: 18px;
    color: #7c7e71;
    font-family: 'ziti';
}

.proclass-list .item {
    padding-left: 1.3rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.proclass-list .item .l-aa {
    width: 4.2rem;
    display: block;
    padding-right: 0.7rem;
}

.proclass-list .item .l-aa .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.25rem;
}

.proclass-list .item .l-aa .incom-line {
    margin-bottom: 0.3rem;
}

.proclass-list .item .l-aa .desc {
    font-size: 14px;
    color: #797979;
    line-height: 1.85;
    margin-bottom: 0.54rem;
    max-height: 100px;
    overflow-y: auto;
}

.proclass-list .item .l-aa .more {
    width: 100%;
    height: 0.52rem;
    max-width: 350px;
    border: 1px solid #7c7e71;
    font-size: 14px;
    color: #7c7e71;
    min-height: 38px;
    transition: all .5s;
}

.proclass-list .item .l-aa .more .ww {
    position: relative;
}

.proclass-list .item .l-aa .more .ww::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0.3rem;
    height: 1px;
    background-color: #7c7e71;
    margin-left: 0.2rem;
    transition: all .5s;
}

.proclass-list .item .r-img {
    flex: 1;
}

.proclass-list .item .r-img img {
    width: 100%;
    height: 100%;
}

.proclass-list .item:nth-child(2n+0) {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 1.3rem;
}

.proclass-list .item:nth-child(2n+0) .l-aa {
    padding: 0;
    padding-left: 0.7rem;
}

.prolist-select {
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 10;
    background-color: #f5f5f5;
    height: 94px;
    display: flex;
    align-items: center;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.incommon-select.pro {
    width: 160px;
    margin-right: 0.68rem;
}

.incommon-select.pro .checktit {
    padding: 0.1rem 0.38rem 0.1rem 0;
    border-bottom: 0;
    border-top: 3px solid #7c7e71;
    font-size: 14px;
    color: #7c7e71;
    font-weight: bold;
}

.incommon-select.pro .checktit::after {
    width: 8px;
    height: 8px;
    margin-top: -7px;
}

.incommon-select.pro .check-ul {
    height: 0;
}

.incommon-select.pro .check-ul .item {
    /* height: 40px; */
    width: 250px;
}

.incommon-select.active.pro .check-ul {
    height: auto;
}

.prolist-select .select-div {
    justify-content: space-between;
}

.prolist-select .pro-s-form {
    width: 3.76rem;
    min-width: 200px;
}

.prolist-select .pro-s-form form {
    position: relative;
}

.prolist-select .pro-s-form form .inp {
    width: 100%;
    height: 36px;
    padding: 0 66px 0 16px;
}

.prolist-select .pro-s-form form .btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #7c7e71;
    background-image: url(../images/icon01_bai.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    cursor: pointer;
}

.prolist-select .pro-s-xiala {
    flex: 1;
}

.prolist-select .pro-s-xiala .mmxiala {
    font-size: 14px;
    color: #7c7e71;
    font-weight: bold;
    display: none;
}

.prolist-select .pro-s-xiala .s-xiala {
    justify-content: space-between;
    margin-right: 1rem;
    flex-wrap: wrap;
}

.prolist-select .pro-s-xiala .s-xiala .closebtn {
    display: none;
}

.prolist-select .pro-s-xiala .s-xiala .xl-li {
    position: relative;
    min-width: calc(100% / 6);
}

.prolist-select .pro-s-xiala .s-xiala .xl-li .checkli {
    font-size: 14px;
    color: #7c7e71;
    font-weight: bold;
    cursor: pointer;
}

.prolist-select .pro-s-xiala .s-xiala .xl-li .checkli .dd {
    margin-right: 8px;
}

.prolist-select .pro-s-xiala .s-xiala .xl-li .checkli .mmarrow {
    position: relative;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    height: 18px;
}

.prolist-select .pro-s-xiala .s-xiala .xl-li .checkli .mmarrow::before {
    content: "";
    border-style: solid;
    border-width: 6px 5px;
    border-color: transparent transparent transparent#7c7e71;
    display: block;
    position: absolute;
    top: 50%;
    right: 0.1rem;
    transform: translate(50%, -50%);
}

.incom-filter {
    position: fixed;
    top: 194px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    padding: 0.45rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    transform: translateX(-1%);
}

.incom-filter .f-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.incom-filter .f-ul .fli {
    margin-bottom: 0.32rem;
    width: calc(100% / 5);
    display: flex;
    align-items: center;
}

.incom-filter .f-ul .fli .cii {
    width: 32px;
    height: 32px;
    border: 1px solid #cccccc;
    margin-right: 0.25rem;
    cursor: pointer;
    /* transition: all .3s; */
}

.incom-filter .f-ul .fli .cii .iconfont {
    color: #ffffff;
    /* transition: all .3s; */
    opacity: 0;
    visibility: hidden;
}

.incom-filter .f-ul .fli .ctit {
    font-size: 12px;
    color: #666666;
}

.incom-filter .f-ul .fli.reset {
    width: 74px;
    height: 32px;
    border-radius: 15.5px;
    background-color: #f5f5f5;
    font-size: 12px;
    color: #666666;
    cursor: pointer;
}

.incom-filter .f-ul .fli.check .cii {
    background-color: #7c7e71;
    border: 1px solid #7c7e71;
}

.incom-filter .f-ul .fli .cii .iconfont {
    opacity: 1;
    visibility: visible;
}

.incom-filter .gocheck {
    display: flex;
    justify-content: flex-end;
}

.incom-filter .gocheck .btn {
    width: 158px;
    height: 48px;
    border: 1px solid #cccccc;
    font-size: 12px;
    color: #2d2d2d;
    cursor: pointer;
}


/* .prolist-select .pro-s-xiala .s-xiala .xl-li.active .incom-filter {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
} */

.prolist-select .pro-s-xiala .s-xiala .xl-li.active .checkli {
    color: #80bd01;
}

.prolist-select .pro-s-xiala .s-xiala .xl-li.active .checkli .mmarrow::before {
    border-color: transparent transparent transparent#80bd01;
    transform: translate(50%, -50%) rotate(90deg);
    margin-top: 2px;
}

.check-filter {
    padding: 0.38rem 0 0.52rem;
}

.check-filter .c-content {
    display: flex;
    align-items: center;
}

.check-filter .c-content .c-class {
    font-size: 14px;
    color: #2d2d2d;
    margin-right: 0.36rem;
}

.check-filter .c-content .c-class .lv {
    color: #80bd01;
    font-weight: bold;
}

.check-filter .c-content .c-options {
    display: flex;
    align-items: center;
}

.check-filter .c-content .c-options .c-list {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
}

.check-filter .c-content .c-options .c-list .item {
    border: 1px solid #dcdcdc;
    height: 24px;
    padding: 0 10px;
    font-size: 12px;
    color: #7c7e71;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 8px;
}

.check-filter .c-content .c-options .c-list .item .iconfont {
    margin-left: 0.12rem;
    font-size: 12px;
    font-weight: bold;
}

.check-filter .c-content .c-options .alldel {
    font-size: 12px;
    color: #2d2d2d;
    margin-left: 5px;
    cursor: pointer;
}

.prolist-list {
    display: flex;
    flex-wrap: wrap;
}

.prolist-list .item {
    width: calc((100% - 1.56rem) / 4);
    margin-right: 0.52rem;
    margin-bottom: 0.64rem;
}

.prolist-list .item:nth-child(4n+0) {
    margin-right: 0;
}

.prolist-list .item .img {
    width: 100%;
    margin-bottom: 0.15rem;
    overflow: hidden;
    padding-top: calc(470 / 376 * 100%);
    position: relative;
}

.prolist-list .item .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    transition: all .5s;
}

.prolist-list .item .line {
    width: 20px;
    height: 2px;
    background-color: #80bd01;
    margin-bottom: 0.1rem;
}

.prolist-list .item .tit {
    margin-bottom: 0.05rem;
}

.prolist-list .item .tit .tt {
    font-size: 18px;
    color: #2d2d2d;
    transition: background-size .5s ease;
    width: calc(100% + 1px);
    padding-bottom: 2px;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
    background-repeat: no-repeat;
    background-size: 0 100%;
    font-style: normal;
}

.prolist-list .item .dd {
    font-size: 14px;
    color: #868686;
}


/* 产品详情 */

.productview-main {
    padding-bottom: 1rem;
}

.productview-main .prov-detail {
    display: flex;
    padding-top: 0;
    padding-bottom: 2.3rem;
}

.productview-main .prov-detail .l-info {
    width: 540px;
    margin-right: 1.3rem;
    padding-top: 0.5rem;
}

.productview-main .prov-detail .l-info .l-href {
    margin-bottom: 0.32rem;
}

.productview-main .prov-detail .l-info .p-title {
    font-size: 0.36rem;
    color: #2d2d2d;
    font-weight: 100;
    margin-bottom: 0.18rem;
    line-height: 1.2;
}

.productview-main .prov-detail .l-info .p-desc {
    font-size: 14px;
    color: #797979;
    line-height: 1.71;
    margin-bottom: 0.22rem;
}

.productview-main .prov-detail .l-info .incom-line {
    margin-bottom: 0.4rem;
}

.productview-main .prov-detail .l-info .p-color {
    margin-bottom: 0.58rem;
}

.productview-main .prov-detail .l-info .p-color .t-word {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.16rem;
}

.productview-main .prov-detail .l-info .p-color .t-word .ww {
    font-size: 18px;
    color: #2d2d2d;
}

.productview-main .prov-detail .l-info .p-color .t-word .open {
    font-size: 12px;
    color: #7c7e71;
    cursor: pointer;
}

.productview-main .prov-detail .l-info .p-color .t-word .open .h {
    display: inline-block;
    width: 0.26rem;
    height: 1px;
    background-color: #7c7e71;
    vertical-align: middle;
    margin-right: 0.16rem;
}

.productview-main .prov-detail .l-info .p-color .color-list {
    display: flex;
    flex-wrap: wrap;
    /* max-height: 128px; */
    max-height: 269px;
    overflow: hidden;
}

.productview-main .prov-detail .l-info .p-color .color-list.open {
    max-height: 100%;
}

.productview-main .prov-detail .l-info .p-color .color-list .item {
    width: calc((100% - 0.75rem) / 6);
    margin-right: 0.15rem;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
}

.productview-main .prov-detail .l-info .p-color .color-list .item:nth-child(6n+0) {
    margin-right: 0;
}

.productview-main .prov-detail .l-info .p-color .color-list .item .img {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #ffffff;
}

.productview-main .prov-detail .l-info .p-color .color-list .item .img .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #80bd01;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    background-image: url(../images/icon11.png);
    width: 27px;
    height: 23px;
}

.productview-main .prov-detail .l-info .p-color .color-list .item .img img {
    width: 100%;
    height: 100%;
}

.productview-main .prov-detail .l-info .p-color .color-list .item.active .img {
    border: 1px solid #80bd01;
}

.productview-main .prov-detail .l-info .p-color .color-list .item.active .img .icon {
    opacity: 1;
    visibility: visible;
}

.productview-main .prov-detail .l-info .p-color .color-list .item .tit {
    font-size: 12px;
    color: #717171;
    width: 78px;
    line-height: 1.6;
}

.productview-main .prov-detail .l-info .info {
    font-size: 14px;
    color: #7c7e71;
}

.productview-main .prov-detail .r-img {
    flex: 1;
    position: relative;
    padding-top: 1rem;
}

.productview-main .prov-detail .r-img::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 6rem;
    height: 7rem;
    background-color: #eff0f1;
}

.productview-main .prov-detail .r-img .imgdiv {
    position: relative;
}

.productview-main .prov-detail .r-img .img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 6rem;
    height: 7.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    min-width: 330px;
    min-height: 412px;
}

.productview-main .prov-detail .r-img .img img {
    width: 100%;
    height: 100%;
}

.productview-main .prov-detail .r-img .img.active {
    opacity: 1;
    visibility: visible;
}

.productview-main .prov-tui {
    padding-top: 0.74rem;
}

.productview-main .prov-tui .t-title {
    margin-bottom: 0.5rem;
}

.productview-main .prov-tui .t-title .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.productview-main .prov-tui .prolist-list {
    flex-wrap: nowrap;
}

.productview-main .prov-tui .prolist-list .item {
    margin-bottom: 0.38rem;
}

.provtuidiv .controlbtn {
    max-width: 110px;
    margin: 0 auto;
}

.provtuidiv .controlbtn .provtui-pagination {
    margin-left: 0;
}


/* -----------------------战略伙伴---------------------- */


/* 合作伙伴 */

.partner-one .partner-list {
    background-color: #f5f5f5;
    padding: 0.7rem 0 0.92rem;
}

.partner-one .partner-list .word {
    font-size: 14px;
    color: #686868;
    margin-bottom: 0.25rem;
}

.partner-one .partner-list .list {
    display: flex;
    flex-wrap: wrap;
}

.partner-one .partner-list .list .item {
    width: calc((100% - 1.61rem) / 6);
    margin-right: 0.32rem;
    margin-bottom: 0.32rem;
}

.partner-one .partner-list .list .item:nth-child(6n+0) {
    margin-right: 0;
}

.partner-one .partner-list .list .item .img {
    padding-top: calc(160 / 250 * 100%);
    position: relative;
}


/* 工程项目 */

.partner-project {
    padding-bottom: 0.5rem;
}

.partner-project .project-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.88rem;
}

.partner-project .project-top .l-text {
    width: 50%;
    font-size: 14px;
    color: #686868;
    line-height: 2.14;
}

.partner-project .project-top .r-xiala {
    position: relative;
    z-index: 1;
}

.partner-project .project-list {
    display: flex;
    flex-wrap: wrap;
}

.partner-project .project-list .item {
    display: block;
    width: calc((100% - 0.9rem) / 4);
    margin-right: 0.3rem;
    margin-bottom: 0.5rem;
}

.partner-project .project-list .item:nth-child(21n+3),
.partner-project .project-list .item:nth-child(21n+7),
.partner-project .project-list .item:nth-child(21n+10),
.partner-project .project-list .item:nth-child(21n+14),
.partner-project .project-list .item:nth-child(21n+17),
.partner-project .project-list .item:nth-child(21n+21) {
    margin-right: 0;
}

.partner-project .project-list .item:nth-child(21n+2),
.partner-project .project-list .item:nth-child(21n+8),
.partner-project .project-list .item:nth-child(21n+17) {
    width: calc((100% - 0.3rem) / 4 * 2);
}

.partner-project .project-list .item .img {
    position: relative;
    overflow: hidden;
    height: 4.9rem;
}

.partner-project .project-list .item .img img {
    transform: scale(1);
    transition: transform .8s cubic-bezier(.275, 0, 0, 1);
}

.partner-project .project-list .item .text {
    padding-top: 0.1rem;
}

.partner-project .project-list .item .text .tit {
    font-size: 18px;
    color: #2f2e2e;
    margin-bottom: 0.05rem;
}

.partner-project .project-list .item .text .tit span {
    transition: background-size .5s ease;
    width: calc(100% + 1px);
    padding-bottom: 2px;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
    background-repeat: no-repeat;
    background-size: 0 100%;
    font-style: normal;
}

.partner-project .project-list .item .text .more {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-project .project-list .item .text .more .tt {
    font-size: 12px;
    color: #878888;
}

.partnerview-main .partnerv-banner {
    padding-top: 100px;
}

.partnerview-main .partnerv-banner .img {
    padding-top: calc(650 / 1920 * 100%);
    position: relative;
    min-height: 250px;
}

.partnerview-main .partnerv-banner .img .textdiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.partnerview-main .partnerv-banner .img .textdiv .cn {
    font-size: 0.48rem;
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.partnerview-main .partnerv-banner .img .textdiv .en {
    font-size: 18px;
    color: #ffffff;
    font-family: 'ziti';
}

.partnerview-main .partnerv-cont .p-content .p-cont {
    display: flex;
    padding-bottom: 1.16rem;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content {
    flex: 1;
    width: calc(100% - 360px);
    padding-right: 2.6rem;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .cont-msg {
    padding-bottom: 1.16rem;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box {
    justify-content: space-between;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box .line {
    font-size: 0.2rem;
    color: #bdbeb8;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box a .unit {
    font-size: 14px;
    color: #2b2b2b;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box a .incom-arrow::before {
    background-color: #2b2b2b;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box a .incom-arrow::after {
    border-color: #2b2b2b #2b2b2b transparent transparent;
}

.partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box a .incom-arrow.ll::after {
    border-color: transparent transparent #2b2b2b #2b2b2b;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info {
    width: 360px;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .tit {
    font-size: 24px;
    color: #2d2d2d;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #d6d6d6;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .info {
    font-size: 14px;
    color: #464646;
    line-height: 2.14;
    padding: 0.25rem 0;
    border-bottom: 1px solid #d6d6d6;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .share-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.22rem 0;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .share-area .title {
    font-size: 12px;
    color: #8d8d8d;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .back {
    font-size: 14px;
    color: #ffffff;
    background-color: #7c7e71;
    height: 0.65rem;
    min-height: 40px;
}

.partnerview-main .partnerv-cont .p-content .p-cont .r-info .back .h {
    width: 0.3rem;
    height: 1px;
    background-color: #ffffff;
    margin-left: 0.2rem;
}


/* -----------------------销售网络---------------------- */


/* 实体门店 */

.network-shop .shop-content .shop-top {
    display: flex;
}

.network-shop .shop-content .l-content {
    width: 230px;
    padding-bottom: 0.5rem;
}

.network-shop .shop-content .l-content .title {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.2rem;
}

.network-shop .shop-content .l-content .line {
    width: 0.58rem;
    height: 2px;
    margin-bottom: 0.2rem;
    background-color: #80bd01;
}

.network-shop .shop-content .l-content .desc {
    font-size: 14px;
    color: #797979;
    line-height: 2.14;
    margin-bottom: 0.3rem;
}

.network-shop .shop-content .l-content .becom-a {
    border: 1px solid #7c7e71;
    font-size: 14px;
    color: #474747;
    height: 0.5rem;
    min-height: 40px;
}

.network-shop .shop-content .l-content .becom-a .bb {
    position: relative;
}

.network-shop .shop-content .l-content .becom-a .bb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 0.2rem);
    width: 0.3rem;
    height: 1px;
    background-color: #474747;
}

.network-shop .shop-content .r-list {
    width: calc(100% - 230px);
    flex: 1;
    padding-left: 1.2rem;
}

.network-shop .shop-content .r-list .t-select {
    border-top: 2px solid #7c7e71;
    border-bottom: 1px solid #d6d6d6;
    padding: 0.24rem 0;
}

.network-shop .shop-content .r-list .t-select .selector-form {
    display: flex;
}

.network-shop .shop-content .r-list .t-select .selector-form .citycheck {
    margin-left: 0;
    min-height: 27px;
}

.network-shop .shop-content .r-list .t-select .selector-form .citycheck .c-duan {
    width: 2.72rem;
    min-width: 200px;
}

.network-shop .shop-content .r-list .t-select .selector-form .citycheck .layui-form-select .layui-input {
    border: none;
    height: 27px;
    border-right: 1px solid #d6d6d6;
}

.network-shop .shop-content .r-list .t-select .selector-form .citycheck .layui-form-select .layui-input::placeholder {
    font-size: 16px;
    color: #474747;
    font-weight: bold;
}

.citycheck .layui-form-select .layui-edge {
    right: 0.2rem;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent transparent #2d2d2d #2d2d2d;
    transform: rotate(-45deg);
    margin-top: -8px;
}

:root .layui-form-selected .layui-edge {
    transform: rotate(-225deg);
}

.network-shop .shop-content .r-list .t-select .selector-form .search-area {
    flex: 1;
    display: flex;
    align-items: center;
}

.network-shop .shop-content .r-list .t-select .selector-form .search-area input {
    width: 100%;
}

.network-shop .shop-content .r-list .t-select .selector-form .search-area .tjbtn {
    width: 64px;
    height: 27px;
    background: none;
    cursor: pointer;
}

.network-shop .shop-content .r-list .t-select .selector-form .search-area .tjbtn span {
    font-size: 23px;
    color: #474747;
}

.network-shop .shop-content .r-list .list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0.4rem;
    border-bottom: 1px solid #d6d6d6;
}

.network-shop .shop-content .r-list .list .item {
    width: calc((100% - 1.72rem) / 3);
    margin-right: 0.86rem;
    margin-bottom: 0.86rem;
}

.network-shop .shop-content .r-list .list .item:nth-child(3n+0) {
    margin-right: 0;
}

.network-shop .shop-content .r-list .list .item .address {
    font-size: 14px;
    color: #80bd01;
    font-weight: bold;
    margin-bottom: 0.12rem;
}

.network-shop .shop-content .r-list .list .item .tit {
    font-size: 16px;
    color: #232323;
    margin-bottom: 0.12rem;
}

.network-shop .shop-content .r-list .list .item .detail {
    font-size: 14px;
    color: #626262;
    margin-bottom: 0.18rem;
    line-height: 1.71;
    height: 48px;
}

.network-shop .shop-content .r-list .list .item .line {
    width: 33px;
    height: 2px;
    background-color: #80bd01;
}


/* 海外市场 */

.network-market .market-content .market-demo {
    font-size: 14px;
    color: #797979;
    line-height: 1.85;
    max-width: 57%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 0.5rem;
}

.network-market .market-content .market-zhou {
    border-top: 1px solid #d6d6d6;
    padding: 0.54rem 0 0.59rem;
    position: relative;
}

.network-market .market-content .market-zhou .item {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.network-market .market-content .market-zhou .item.item141 {
    top: 46%;
    left: 58%;
}

.network-market .market-content .market-zhou .item.item142 {
    top: 41%;
    left: 43%;
}

.network-market .market-content .market-zhou .item.item143 {
    top: 61%;
    left: 43%;
}

.network-market .market-content .market-zhou .item.item144 {
    top: 74%;
    left: 69%;
}

.network-market .market-content .market-zhou .item.item145 {
    top: 40%;
    left: 14%;
}

.network-market .market-content .market-zhou .item.item146 {
    top: 70%;
    left: 24%;
}

.network-market .market-content .market-zhou .item .click-dian {
    width: 0.6rem;
    height: 0.6rem;
    cursor: pointer;
}

.network-market .market-content .market-zhou .item .click-dian .dian {
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    background-color: #80bd01;
}

.network-market .market-content .market-zhou .item .info {
    box-shadow: 0 0 14px 2px rgba(0, 0, 0, .2);
    padding: 3px;
    position: absolute;
    left: -74%;
    top: -183%;
    min-width: 390px;
    transform: translateY(10%);
    transition: all 1s;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.network-market .market-content .market-zhou .item .info .infodd {
    padding: 0.25rem;
    background-color: rgba(29, 56, 59, 0.85);
}

.network-market .market-content .market-zhou .item .info .infodd .tit {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.network-market .market-content .market-zhou .item .info .infodd .msg {
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.71;
    color: #ffffff;
}

.network-market .market-content .market-style {
    padding: 0.64rem 0 0;
    border-top: 1px solid #d6d6d6;
}

.network-market .market-content .market-style .title {
    font-size: 0.3rem;
    color: #2d2d2d;
    text-align: center;
    line-height: 1.1;
    padding-bottom: 0.22rem;
    position: relative;
    margin-bottom: 0.56rem;
}

.network-market .market-content .market-style .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0.58rem;
    height: 2px;
    background-color: #80bd01;
    transform: translateX(-50%);
}

.network-market .market-content .market-style .s-list {
    display: flex;
    flex-wrap: wrap;
}

.network-market .market-content .market-style .s-list .item {
    margin: 0 0.1rem 0.42rem 0.1rem;
    width: calc(100% / 4 - 0.2rem);
}

.network-market .market-content .market-style .s-list .item .img {
    padding-top: calc(260 / 400 * 100%);
    position: relative;
}

.network-market .market-content .market-style .s-list .item .tit {
    font-size: 14px;
    color: #2d2d2d;
    text-align: center;
    padding: 0.14rem 0;
}


/* 电子商务 */

.network-ecommerce .ecommerce-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.48rem;
}

.network-ecommerce .ecommerce-list .item {
    display: block;
    width: calc((100% - 1.07rem) / 2);
    margin-right: 1.07rem;
    margin-bottom: 1rem;
    background-color: #eff0f1;
}

.network-ecommerce .ecommerce-list .item:nth-child(2n+0) {
    margin-right: 0;
}

.network-ecommerce .ecommerce-list .item .info {
    transform: translate(8px, -10px);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;
}

.network-ecommerce .ecommerce-list .item .info .l-title {
    padding-left: 0.6rem;
    padding-right: 0.72rem;
    flex: 1;
    width: calc(100% - 3.2rem);
}

.network-ecommerce .ecommerce-list .item .info .l-title .tit {
    font-size: 0.36rem;
    color: #c60000;
    margin-bottom: 0.1rem;
}

.network-ecommerce .ecommerce-list .item .info .l-title .golink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.45rem;
    border-bottom: 1px solid #000000;
    font-size: 12px;
    color: #000000;
    min-height: 40px;
}

.network-ecommerce .ecommerce-list .item .info .l-title .golink .incom-arrow::before {
    background-color: #000000;
}

.network-ecommerce .ecommerce-list .item .info .l-title .golink .incom-arrow::after {
    border-color: #000000 #000000 transparent transparent;
}

.network-ecommerce .ecommerce-list .item .info .r-img {
    width: 3.2rem;
    height: 2.5rem;
}

.network-ecommerce .ecommerce-list .item .info .r-img img {
    width: 100%;
    height: 100%;
}


/* -----------------------全球服务---------------------- */


/* 产品知库 */

.service-product .s-pro-content {
    display: flex;
    padding-bottom: 0.3rem;
}

.service-product .s-pro-content .l-class {
    width: 230px;
    margin-right: 1.2rem;
}

.service-product .s-pro-content .l-class .title {
    font-size: 14px;
    color: #7f7f7f;
    margin-bottom: 0.32rem;
}

.service-product .s-pro-content .l-class .class-ul .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.18rem;
}

.service-product .s-pro-content .l-class .class-ul .item .tt {
    font-size: 18px;
    color: #2d2d2d;
    border-bottom: 1px solid #2d2d2d;
    line-height: 1.66;
}

.service-product .s-pro-content .l-class .class-ul .item .ii {
    font-size: 30px;
    color: #80bd01;
    line-height: 1;
    font-weight: 100;
    opacity: 0;
    visibility: hidden;
}

.service-product .s-pro-content .l-class .class-ul .item.on .tt {
    border-bottom: 1px solid #b6b6b6;
}

.service-product .s-pro-content .l-class .class-ul .item.on .ii {
    opacity: 1;
    visibility: visible;
}

.service-product .s-pro-content .r-list {
    flex: 1;
    padding-left: 1.9rem;
    border-left: 1px solid #d6d6dd;
}

.service-product .s-pro-content .r-list .item {
    padding: 0.3rem 0;
    border-bottom: 1px solid #d6d6dd;
    display: flex;
    align-items: center;
    position: relative;
}

.service-product .s-pro-content .r-list .item:nth-child(1) {
    padding-top: 0;
}

.service-product .s-pro-content .r-list .item .l-img {
    width: 198px;
    height: 120px;
    margin-right: 0.3rem;
}

.service-product .s-pro-content .r-list .item .l-img img {
    width: 100%;
    height: 100%;
}

.service-product .s-pro-content .r-list .item .icon {
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
}

.service-product .s-pro-content .r-list .item .r-msg {
    flex: 1;
}

.service-product .s-pro-content .r-list .item .r-msg .time {
    font-size: 14px;
    color: #80bd01;
    font-family: 'Arial';
    margin-bottom: 0.15rem;
}

.service-product .s-pro-content .r-list .item .r-msg .tit {
    font-size: 18px;
    color: #4b4d4d;
    padding-right: 0.6rem;
}


/* 玉兰服务 */

.service-yl .s-yl-process {
    border-bottom: 1px solid #d6d6d6;
}

.service-yl .s-yl-process .process-top {
    display: flex;
    align-items: center;
    margin-bottom: 1.11rem;
}

.service-yl .s-yl-process .process-top .r-title {
    width: 3.26rem;
}

.service-yl .s-yl-process .process-top .r-title .cn {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.service-yl .s-yl-process .process-top .r-title .line {
    width: 58px;
    height: 2px;
    background-color: #80bd01;
    margin-bottom: 0.22rem;
}

.service-yl .s-yl-process .process-top .r-title .en {
    font-size: 0.36rem;
    color: #80bd01;
    font-family: 'ziti';
    white-space: nowrap;
}

.service-yl .s-yl-process .process-ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-yl .s-yl-process .process-ul .item {
    position: relative;
    width: 28%;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 1.11rem;
}

.service-yl .s-yl-process .process-ul .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #eff0f1;
}

.service-yl .s-yl-process .process-ul .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #d6d6dd;
    z-index: -1;
}

.service-yl .s-yl-process .process-ul .item:nth-child(4n+0) {
    width: 16%;
}

.service-yl .s-yl-process .process-ul .item:nth-child(4n+0)::after {
    display: none;
}

.service-yl .s-yl-process .process-ul .item .icon {
    height: 37px;
    position: absolute;
    top: -30px;
    left: 10px;
    z-index: 1;
}

.service-yl .s-yl-process .process-ul .item .icon img {
    height: 100%;
}

.service-yl .s-yl-process .process-ul .item .tit {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #000000;
    padding-left: 25px;
}

.service-yl .s-yl-point {
    padding: 0.84rem 0 1.2rem;
}

.service-yl .s-yl-point .title {
    text-align: center;
    margin-bottom: 0.6rem;
}

.service-yl .s-yl-point .title .cn {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.service-yl .s-yl-point .title .line {
    width: 58px;
    height: 2px;
    background-color: #80bd01;
    margin: 0 auto 0.22rem;
}

.service-yl .s-yl-point .title .en {
    font-size: 0.36rem;
    color: #80bd01;
    font-family: 'ziti';
    white-space: nowrap;
}


/* 常见问题 */

.service-problem .s-pro-content {
    padding-bottom: 0.86rem;
}

.service-problem .s-pro-content .r-list .qitem {
    margin-bottom: 0.29rem;
}

.service-problem .s-pro-content .r-list .qitem .qtit {
    height: 0.8rem;
    background-color: #eff0f1;
    min-height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 0.8rem;
    cursor: pointer;
}

.service-problem .s-pro-content .r-list .qitem .qtit::after {
    content: "";
    position: absolute;
    right: 0.45rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent transparent#5a5a5a #5a5a5a;
    transform: rotate(-45deg);
    margin-top: -8px;
    transition: all .5s;
}

.service-problem .s-pro-content .r-list .qitem.active .qtit::after {
    transform: rotate(-225deg);
}

.service-problem .s-pro-content .r-list .qitem .qtit .q {
    width: 78px;
    border-right: 1px solid #2d2d2d;
    text-align: center;
    font-size: 0.56rem;
    line-height: 1;
    font-family: 'ziti';
    color: #2d2d2d;
}

.service-problem .s-pro-content .r-list .qitem .qtit .tt {
    font-size: 18px;
    color: #4b4d4d;
    padding-left: 0.26rem;
}

.service-problem .s-pro-content .r-list .qitem .rinfo {
    display: none;
}

.service-problem .s-pro-content .r-list .qitem .rinfo .infodiv {
    display: flex;
    padding: 0.2rem 0;
    position: relative;
}

.service-problem .s-pro-content .r-list .qitem .rinfo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d6d6d6;
}

.service-problem .s-pro-content .r-list .qitem .rinfo .r {
    width: 78px;
    color: rgba(45, 45, 45, .5);
    text-align: center;
    font-size: 0.56rem;
    line-height: 1;
    font-family: 'ziti';
    position: relative;
}

.service-problem .s-pro-content .r-list .qitem .rinfo .r::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 45px;
    background-color: rgba(45, 45, 45, .5);
}

.service-problem .s-pro-content .r-list .qitem .rinfo .info {
    flex: 1;
    padding-left: 0.26rem;
    font-size: 16px;
    color: #4b4d4d;
    line-height: 2.25;
}


/* 联系我们 */

.service-contact .contact-cont .item {
    display: flex;
    border-top: 1px solid #d6d6d6;
    padding: 0.84rem 0;
}

.service-contact .contact-cont .item .l-tit {
    width: 3.5rem;
    min-width: 230px;
}

.service-contact .contact-cont .item .l-tit .tit {
    font-size: 18px;
    color: #80bd01;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.28rem;
}

.service-contact .contact-cont .item .l-tit .tit::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0.58rem;
    height: 2px;
    background-color: #80bd01;
}

.service-contact .contact-cont .item .r-info {
    flex: 1;
    font-size: 16px;
    color: #424242;
    line-height: 2.25;
}

.service-contact .contact-cont .item .r-info h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0.1rem;
}

.service-contact .contact-cont .item .r-info h4 {
    font-size: 36px;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.service-contact .contact-cont .item:nth-child(1) {
    border-top: none;
    padding: 0 0 0.84rem 0;
}

.mapbox .allmap {
    width: 100%;
    height: 6rem;
    min-height: 30vh;
}

.mapbox .allmap img {
    max-width: none;
}


/* -----------------------加入玉兰---------------------- */


/* 工作在玉兰 */

.join-job .honor-top {
    padding-bottom: 1rem;
    border-bottom: 1px solid #d6d6d6;
}

.join-job .job-idea {
    padding: 1rem 0;
}

.join-job .job-idea .j-content {
    display: flex;
    align-items: center;
}

.join-job .job-idea .j-content .l-img {
    width: 5.5rem;
    margin-right: 0.7rem;
}

.join-job .job-idea .j-content .l-img img {
    width: 100%;
}

.join-job .job-idea .j-content .r-info {
    flex: 1;
}

.join-job .job-idea .j-content .r-info .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.join-job .job-idea .j-content .r-info .line {
    margin-bottom: 0.25rem;
}

.join-job .job-idea .j-content .r-info .text {
    font-size: 14px;
    color: #3d3d3d;
    line-height: 1.85;
}

.join-job .job-recruitment {
    background-color: #eff0f1;
}

.join-job .job-recruitment .j-re-top {
    position: relative;
}

.join-job .job-recruitment .j-re-top .img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.join-job .job-recruitment .j-re-top .img img {
    width: 100%;
    height: 100%;
}

.join-job .job-recruitment .j-re-top .textdiv {
    position: absolute;
    left: 50%;
    top: 70px;
    display: flex;
    justify-content: flex-end;
    transform: translateX(-50%);
    z-index: 1;
}

.join-job .job-recruitment .j-re-top .textdiv .info {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.48rem;
}

.join-job .job-recruitment .j-re-top .textdiv .info .tit {
    font-size: 24px;
    color: #80bd01;
    margin-bottom: 0.2rem;
}

.join-job .job-recruitment .j-re-top .textdiv .info .text {
    font-size: 14px;
    color: #797979;
    line-height: 1.85;
}

.join-job .job-recruitment .j-re-list .list .item {
    display: flex;
    position: relative;
    padding: 0.33rem 0;
    border-bottom: 1px solid #d6d6d6;
    align-items: center;
}

.join-job .job-recruitment .j-re-list .list .item .l-title {
    width: 3.1rem;
    min-width: 180px;
}

.join-job .job-recruitment .j-re-list .list .item .l-title .tit {
    font-size: 18px;
    color: #2b2b2b;
}

.join-job .job-recruitment .j-re-list .list .item .l-title .pri {
    font-size: 24px;
    color: #80bd01;
}

.join-job .job-recruitment .j-re-list .list .item .l-title .pri>b {
    font-size: 14px;
    font-weight: 400;
}

.join-job .job-recruitment .j-re-list .list .item .r-info {
    flex: 1;
}

.join-job .job-recruitment .j-re-list .list .item .r-info .text {
    font-size: 14px;
    color: #4b4d4d;
    line-height: 2.57;
}

.join-job .job-recruitment .j-re-list .list .item .r-info .text>span {
    color: #c1c1c1;
    font-size: 12px;
    margin: 0 10px;
    vertical-align: middle;
}

.join-job .job-recruitment .j-re-list .word {
    padding: 0.55rem 0;
    font-size: 14px;
    color: #444444;
}

.join-job .job-recruitment .j-re-list .word .more {
    color: #80bd01;
    font-weight: bold;
}

.job-active {
    padding: 0.9rem 0 1.02rem;
}

.job-active .title {
    text-align: center;
    margin-bottom: 0.34rem;
}

.join-job .job-active .title .tit {
    font-size: 0.3rem;
    color: #2d2d2d;
    margin-bottom: 0.22rem;
}

.join-job .job-active .title .line {
    margin: 0 auto;
}

.job-active .job-active-pp {
    padding: 0 0.65rem;
    position: relative;
}

.job-active .job-active-swiper .swiper-slide .img {
    padding-top: calc(250 / 377 * 100%);
    position: relative;
}

.job-active .job-active-swiper .swiper-slide .tit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.46rem;
    min-height: 35px;
    background-color: rgba(128, 189, 1, 0.7);
    padding: 0 0.22rem;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.job-active .job-active-pp .acbtn {
    position: absolute;
    top: 50%;
    width: 0.65rem;
    height: 0.65rem;
    cursor: pointer;
    outline: none;
    transform: translateY(-50%);
}

.job-active .job-active-pp .acbtn::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #7c7e71 #7c7e71 transparent transparent;
    transform: rotate(45deg);
    margin-top: -10px;
}

.job-active .job-active-pp .acbtn.active-prev {
    left: 0;
}

.job-active .job-active-pp .acbtn.active-next {
    right: 0;
}

.job-active .job-active-pp .acbtn.active-prev::before {
    transform: rotate(-135deg);
    left: 4px;
}


/* 我们的招商 */

.merchants-type {
    padding-bottom: 0.8rem;
}

.merchants-type .m-content {
    display: flex;
}

.merchants-type .m-content .l-tit {
    width: 3.5rem;
    min-width: 230px;
}

.merchants-type .m-content .r-info {
    flex: 1;
    font-size: 14px;
    color: #797979;
    line-height: 2.57;
}

.merchants-type .m-content .r-info .list {
    display: flex;
    flex-wrap: wrap;
}

.merchants-type .m-content .r-info .list .item {
    width: 50%;
    max-width: 480px;
    margin-right: 0.86rem;
    margin-bottom: 0.2rem;
}

.merchants-type .m-content .r-info .list .item .num {
    font-size: 18px;
    color: #80bd01;
    font-family: 'ziti';
    border-bottom: 1px solid #d6d6d6;
}

.merchants-type .m-content .r-info .list .item .tit {
    font-size: 18px;
    color: #4e4e4e;
    font-weight: bold;
}

.merchants-sale {
    background-color: #eff0f1;
}

.merchants-sale .sale-content {
    padding: 0.9rem 0 1.05rem;
}

.merchants-sale .sale-content .incom-title {
    margin-bottom: 0.33rem;
}

.merchants-sale .sale-content .s-list {
    display: flex;
}

.merchants-sale .sale-content .s-list .item {
    /* width: calc(100% / 8 - 2px); */
    width: 12.5%;
    height: 4.5rem;
    min-height: 380px;
    position: relative;
    margin: 0 1px;
    transition: all .5s;
}

.merchants-sale .sale-content .s-list .item .showdiv {
    position: relative;
    width: 100%;
    height: 100%;
}

.merchants-sale .sale-content .s-list .item .showdiv .img,
.merchants-sale .sale-content .s-list .item .showdiv .img img {
    width: 100%;
    height: 100%;
}

.merchants-sale .sale-content .s-list .item .showdiv .tit {
    position: absolute;
    top: 0.3rem;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 0 0.18rem;
}

.merchants-sale .sale-content .s-list .item .showdiv .tit .num,
.merchants-sale .sale-content .s-list .item .hidediv .tit .num {
    font-size: 18px;
    color: #80bd01;
    font-family: 'ziti';
    margin-bottom: 0.1rem;
}

.merchants-sale .sale-content .s-list .item .showdiv .tit .tt,
.merchants-sale .sale-content .s-list .item .hidediv .tit .tt {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.merchants-sale .sale-content .s-list .item .hidediv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7c7e71;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    padding: 0 0.18rem;
}

.merchants-sale .sale-content .s-list .item .hidediv .tit {
    margin-bottom: 0.14rem;
    margin-top: 0.3rem;
}

.merchants-sale .sale-content .s-list .item .hidediv .tit .num {
    color: #ffffff;
}

.merchants-sale .sale-content .s-list .item .hidediv .demo {
    font-size: 14px;
    color: #ffffff;
}

.merchants-sale .sale-content .s-list .item .icon {
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #eff0f1;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 3;
}

.merchants-sale .sale-content .s-list .item .icon::before,
.merchants-sale .sale-content .s-list .item .icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background-color: #7c7e71;
    transform: translate(-50%, -50%);
    transition: all .5s;
}

.merchants-sale .sale-content .s-list .item .icon::after {
    width: 2px;
    height: 12px;
}

.merchants-sale .sale-content .s-list .item.active {
    width: 25.5%;
}

.merchants-sale .sale-content .s-list .item.active .hidediv {
    opacity: 1;
    visibility: visible;
}

.merchants-sale .sale-content .s-list .item.active .icon::after {
    opacity: 0;
}

.merchants-sale .sale-img {
    width: 100%;
    height: 4.5rem;
    min-height: 300px;
}

.merchants-sale .sale-img img {
    width: 100%;
    height: 100%;
}


/* 成为经销商 */

.join-dealer {
    padding-bottom: 1.39rem;
}

.join-dealer .incom-title .desc {
    font-size: 14px;
    color: #797979;
    margin-top: 0.25rem;
    margin-bottom: 0.4rem;
}

.join-dealer .dealer-form {
    border-top: 1px solid #e6e6e6;
}

.join-dealer .dealer-form .my-item {
    padding: 0.5rem 0;
    display: flex;
    border-bottom: 1px solid #e6e6e6;
}

.join-dealer .dealer-form .my-item .my-label {
    width: 3.65rem;
    min-width: 120px;
    font-size: 16px;
    color: #2d2d2d;
}

.join-dealer .dealer-form .my-item .my-label .xin {
    color: #d0576b;
}

.join-dealer .dealer-form .my-item .my-input {
    flex: 1;
}

.join-dealer .dealer-form .my-item .my-input .inp {
    background-color: #eff0f1;
    width: 100%;
    font-size: 16px;
    color: #2d2d2d;
    padding: 0.18rem 0.1rem;
    border: none;
}

.join-dealer .dealer-form .my-item .my-input .inp.text {
    height: 3.5rem;
}

.join-dealer .dealer-form .btn {
    text-align: center;
    margin-top: 0.49rem;
}

.join-dealer .dealer-form .btn .btn-tj {
    margin: 0 auto;
    width: 3.5rem;
    height: 0.8rem;
    border: 1px solid #7c7e71;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #7c7e71;
    overflow: hidden;
    min-width: 170px;
    min-height: 42px;
    padding-right: 40px;
}

.join-dealer .dealer-form .btn .btn-tj::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.5s all cubic-bezier(0.52, 0.08, 0.18, 1);
    z-index: 0;
    background-color: #4e4e4e;
}

.join-dealer .dealer-form .btn .btn-tj span {
    position: relative;
    z-index: 1;
    transition: all .5s;
}

.join-dealer .dealer-form .btn .btn-tj .incom-arrow {
    position: absolute;
    right: 0.2rem;
}

.layui-form-select dl dd.layui-this {
    background-color: #80bd01;
}


/* ----------------------搜索----------------------- */

.search-main {
    padding-top: 100px;
    padding-bottom: 0.5rem;
}

.search-main .titlediv {
    border-bottom: 1px solid #d6d6d6;
    padding: 1.77rem 0 1.12rem;
}

.search-main .titlediv .search-area {
    display: flex;
}

.search-main .titlediv .search-area .inp {
    width: 100%;
    font-size: 0.48rem;
    color: #4e4e4e;
    text-align: center;
}

.search-main .titlediv .search-area .inp::placeholder {
    color: #cfcfcf;
    font-family: 'ziti1';
}

.s-listbox {
    padding-top: 0.85rem;
}

.s-listbox .total-tit {
    font-size: 14px;
    color: #87897d;
    margin-bottom: 0.54rem;
}

.s-listbox .total-tit .tt {
    border-bottom: 1px solid #7c7e71;
    padding-bottom: 0.1rem;
    display: inline-block;
}

.s-listbox .total-tit .lv {
    color: #80bd01;
    font-weight: bold;
}

.news-list.search-list {
    border: none;
}

.news-list.search-list .item {
    width: calc(100% / 4 - 0.5rem);
    padding: 0;
    margin: 0 0.25rem 1rem;
    border: none;
}

.news-list.search-list .item .img {
    margin-bottom: 0.2rem;
}

.news-list.search-list .item .tit {
    height: 144px;
}

.news-list.search-list .item.pro .img {
    padding-top: calc(470 / 376 * 100%);
}

.news-list.search-list .item.pro .tit {
    height: auto;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.news-list.search-list .item.pro .line {
    width: 20px;
    margin-bottom: 10px;
}

.news-list.search-list .item.pro .dd {
    font-size: 14px;
    color: #868686;
}


/* ----------------------页脚----------------------- */

.footerbox {
    background-color: #7c7e71;
}

.footerbox .foot-top {
    padding: 0.98rem 0 0.74rem;
}

.footerbox .foot-top .container {
    display: flex;
    justify-content: space-between;
}

.footerbox .foot-top .l-menu {
    display: flex;
    flex: 1;
    max-width: 62%;
}

.footerbox .foot-top .l-menu .item {
    flex: 1;
    margin-right: 0.2rem;
}

.mt45 {
    margin-top: 0.45rem;
}

.footerbox .foot-top .l-menu .item .item-li .item-a {
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

.footerbox .foot-top .l-menu .item .item-li .item-ul li .aa {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 2.1;
}

.footerbox .foot-top .r-info {
    max-width: 31%;
    padding-right: 1.35rem;
}

.footerbox .foot-top .r-info .f-logo {
    margin-bottom: 0.24rem;
    display: block;
}

.footerbox .foot-top .r-info .msg {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 2.1;
}

.footerbox .foot-top .r-info .f-share {
    justify-content: flex-start;
    margin-top: 0.25rem;
}

.footerbox .foot-top .r-info .f-share .item {
    margin-right: 0.27rem;
    cursor: pointer;
    position: relative;
}

.footerbox .foot-top .r-info .f-share .item .code {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 110px;
    height: 110px;
    transition: all .5s;
}

.footerbox .foot-top .r-info .f-share .item .code img {
    width: 100%;
    height: 100%;
}

.footerbox .foot-top .r-info .f-share .item span {
    font-size: 17px;
    color: #ffffff;
}

.footerbox .foot-top .r-info .f-share .item span.icon-qq {
    font-size: 14px;
}

.footerbox .foot-top .r-info .f-share .item span.icon-douyin {
    font-size: 16px;
}

.footerbox .foot-top .r-info .f-share .item span.icon-youjian {
    font-size: 18px;
}

.footerbox .foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 0.22rem 0;
}

.footerbox .foot-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerbox .foot-bottom .l-company,
.footerbox .foot-bottom .r-en {
    max-width: 50%;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}


/* 正在开发中 */

.loadingbox {
    padding-top: 100px;
    padding-bottom: 3rem;
}

.loadingbox .bg {
    height: 457px;
    background-size: contain;
}

.loadingbox .textdiv .text {
    font-size: 0.48rem;
    color: #999999;
    font-family: 'ziti1';
    margin-bottom: 0.3rem;
}

.loadingbox .textdiv .btns .btn {
    width: 1.8rem;
    height: 0.5rem;
    font-size: 14px;
    color: #9e9e9e;
    border: 1px solid #b5b5b5;
    border-radius: 0.25rem;
    margin: 0 0.12rem;
}

.loadingbox .textdiv .btns .btn.on {
    color: #80bd01;
    border: 1px solid #80bd01;
}

.loadingbox .textdiv .btns .btn .ii {
    font-family: 'SimSun';
    margin-right: 0.1rem;
}


/* 分页 */

.all-Page-box {
    padding: 0.5rem 0;
}

.all-Page-box .btn {
    font-size: 16px;
    color: #2d2d2d;
    padding: 0 0.05rem;
    margin: 0 0.02rem;
}

.all-Page-box .btn.on {
    color: #80bd01;
    border-bottom: 1px solid #80bd01;
}

.all-Page-box .select,
.all-Page-box .f-right {
    display: none;
}

.all-Page-box .btn.song {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.all-Page-box .btn.song span {
    position: relative;
    display: block;
    height: 25px;
    width: 78px;
}

.all-Page-box .btn.song span::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #2d2d2d #2d2d2d transparent transparent;
    transform: rotate(45deg);
    margin-top: -4px;
}

.all-Page-box .btn.song span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 78px;
    height: 1px;
    background-color: #2d2d2d;
}

.all-Page-box .btn.song span.prev {
    margin-right: 1.27rem;
}

.all-Page-box .btn.song span.prev::before {
    border-color: transparent transparent #2d2d2d #2d2d2d;
    left: 0;
}

.all-Page-box .btn.song span.prev::after {
    left: 0;
}

.all-Page-box .btn.song span.next {
    margin-left: 1.27rem;
}

.all-Page-box .btn.song span.next::before {
    right: 0;
}

.all-Page-box .btn.song span.next::after {
    right: 0;
}


/* share */

.bdshare_popup_box {
    left: auto !important;
    right: 50px !important;
}


/* ------------------------手机端菜单------------------------ */

.phonemenubtn {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    background-color: #7c7e71;
    cursor: pointer;
}

.phonemenubtn .icon {
    width: 18px;
    height: 16px;
    position: relative;
}

.phonemenubtn .icon .border {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.2s;
}

.phonemenubtn .icon .border:nth-child(2) {
    top: 4px;
}

.phonemenubtn .icon .border:nth-child(3) {
    top: 8px;
}

.phonemenubtn .menu-text {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 11px;
}

.phonemenubtn .menu-text .text {
    font-size: 12px;
    font-weight: bold;
    height: 10px;
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    transition: 0.4s all cubic-bezier(0.52, 0.08, 0.18, 1);
    color: #ffffff;
}

.phonemenubtn .menu-text .text.text-close {
    top: 0;
}

.phonemenubtn .menu-text .text.text-open {
    top: -12px;
}

.phonemenubtn.on .icon .border:nth-child(1) {
    top: 4px;
    transform: rotate(45deg);
}

.phonemenubtn.on .icon .border:nth-child(2) {
    opacity: 0;
}

.phonemenubtn.on .icon .border:nth-child(3) {
    top: 4px;
    transform: rotate(-45deg);
}

.phonemenubtn.on .menu-text .text.text-close {
    top: 12px;
}

.phonemenubtn.on .menu-text .text.text-open {
    top: 0;
}

.phonemenu-wrap {
    width: 100%;
    /* height: 0; */
    height: 100vh;
    position: relative;
    position: fixed;
    z-index: 21;
    overflow: hidden;
    top: 60px;
    display: none;
}

.phonemenu-wrap .pmenu-bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    /* transform: scale(1, 0); */
    transform-origin: top;
    transition: 0.8s all cubic-bezier(0.52, 0.08, 0.18, 1);
}

.phonemenu-wrap .pmenu-ul {
    pointer-events: auto;
    overflow-y: auto;
    transition: 0.7s all cubic-bezier(0.52, 0.08, 0.18, 1);
    padding: 10vh 0;
    position: absolute;
    z-index: 222;
    /* opacity: 0; */
    right: 0;
    left: 0;
    background-color: #ffffff;
    height: 100%;
}


/* .phonemenu-wrap.show {
    height: 100vh;
    opacity: 1;
}

.phonemenu-wrap.show .pmenu-bg {
    transform: scale(1, 1);
}

.phonemenu-wrap.show .pmenu-ul {
    opacity: 1;
    pointer-events: auto;
} */

.phonemenu-wrap .pmenu .pli {
    margin-bottom: 40px;
}

.phonemenu-wrap .pmenu .pli .item-a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #4e4e4e;
}

.phonemenu-wrap .pmenu .pli .item-a .ii {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    margin-left: 0.2rem;
}

.phonemenu-wrap .pmenu .pli .item-a .ii::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
    background-color: #4e4e4e;
    width: 100%;
    height: 2px;
}

.phonemenu-wrap .pmenu .pli .item-a .ii::after {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    content: "";
    display: block;
    background-color: #4e4e4e;
    width: 2px;
    height: 100%;
    transition: 1s all cubic-bezier(0.52, 0.08, 0.18, 1);
}

.phonemenu-wrap .pmenu .pli .item-a.on .ii::after {
    transform: rotate(270deg);
}

.phonemenu-wrap .pmenu .pli .mmsub {
    display: none;
}

.phonemenu-wrap .pmenu .pli .mmsub .mm-a {
    display: block;
    text-align: center;
    padding: 10px 0;
    background-color: #eff0f1;
    font-size: 14px;
    color: #4e4e4e;
    font-weight: bold;
}

.phonemenu-wrap .pmenu .pli .mmsub .mm-a:first-of-type {
    padding: 20px 0 10px;
}

.phonemenu-wrap .pmenu .pli .mmsub .mm-a:last-of-type {
    padding: 10px 0 20px;
}

.phonemenu-wrap .pmenu .pli.online {
    background-color: #7c7e71;
}

.phonemenu-wrap .pmenu .pli.online .item-a {
    margin-bottom: 0;
    color: #ffffff;
    padding: 20px 0;
}

.phonemenu-wrap .pmenu .pli.online .item-a .ii::before,
.phonemenu-wrap .pmenu .pli.online .item-a .ii::after {
    background-color: #ffffff;
}

.phonemenu-wrap .pmenu-ul .mmlang .lia {
    font-size: 14px;
    color: #4e4e4e;
}

.phonemenu-wrap .pmenu-ul .mmlang .ll {
    margin: 0 10px;
}

.phonemenu-wrap .pmenu-ul .mmlang .lia.on {
    font-weight: bold;
    border-bottom: 1px solid #4e4e4e;
}


/* ----------------------响应----------------------- */

@media only screen and (min-width:601px) {

    .about-history .his-content .r-list .history-list .item:hover::before,
    .about-history .his-content .r-list .history-list .item:hover::after {
        background-color: #80bd01;
    }

    .about-history .his-content .r-list .history-list .item:hover .year {
        color: #80bd01;
    }

    .newsview-main .newsv-content .nv-content .newsv-share .back:hover {
        color: #80bd01;
    }

    .partner-project .project-list .item:hover .text .tit span {
        background-size: 100% 100%;
    }

    .partner-project .project-list .item:hover .img img {
        transform: scale(1.05);
    }

    .network-market .market-content .market-zhou .item:hover .info {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .network-ecommerce .ecommerce-list .item:hover .info {
        transform: translate(0, 0);
        box-shadow: 0 0 15px 2px rgba(0, 0, 0, .1);
    }

    .join-job .job-active .job-active-swiper .swiper-slide:hover .tit {
        opacity: 1;
        visibility: visible;
    }

    .header .header-wrap .m-menu .menu .item .menu-sub .sub-a:hover .incom-arrow.mm::before {
        background-color: #7b7b7b;
    }

    .header .header-wrap .m-menu .menu .item .menu-sub .sub-a:hover .incom-arrow.mm::after {
        border-color: #7b7b7b #7b7b7b transparent transparent;
    }

    .footerbox .foot-top .r-info .f-share .item:hover .code {
        transform: translateX(-50%) scale(1);
    }

    .about-honor .honor-list .h-list .item:hover .img {
        transform: translateY(-10px);
    }

    .news-list .item:hover .img {
        transform: translateY(-10px);
    }

    .newsview-main .newsv-content .nv-content .page-box a:hover,
    .partnerview-main .partnerv-cont .p-content .p-cont .l-content .page-box a:hover .unit {
        color: #80bd01;
    }

    .newsview-main .newsv-content .nv-content .page-box a:hover .incom-arrow {
        margin-left: 0.3rem;
    }

    .footerbox .foot-bottom .r-en:hover {
        color: #ffffff;
    }

    .join-dealer .dealer-form .btn .btn-tj:hover::before {
        transform: translateX(0%);
    }

    .join-dealer .dealer-form .btn .btn-tj:hover span {
        color: #ffffff;
    }

    #welcome .lang-change-item:hover {
        background-color: transparent;
    }

    .prolist-list .item:hover .img img {
        transform: scale(1.05);
    }

    .prolist-list .item:hover .tit .tt {
        background-size: 100% 100%;
    }

    .proclass-list .item .l-aa .more:hover {
        background-color: #7c7e71;
        color: #ffffff;
    }

    .proclass-list .item .l-aa .more:hover .ww::after {
        background-color: #ffffff;
    }
}

@media only screen and (min-width:1921px) {

    .home .banner-swiper .area-title .title-en,
    .home .impression-area .area-title,
    .home .banner-area .area-title .title-en,
    .area-title.normal .right-area .title,
    .home .store-area .content .area-title .text-container {
        font-size: 130px;
    }

    .incombanner .l-text {
        width: 5.8rem;
    }

    .incombanner .r-img {
        width: calc(100% - 5.8rem);
    }

    .bdshare_popup_box {
        display: none !important;
    }

    .partner-project .project-list .item .img {
        height: 490px;
    }

    .network-ecommerce .ecommerce-list .item .info .r-img {
        width: 320px;
        height: 250px;
    }

    .network-ecommerce .ecommerce-list .item .info .l-title {
        width: calc(100% - 320px);
        padding-left: 60px;
        padding-right: 72px;
    }

    .network-ecommerce .ecommerce-list .item .info .l-title .tit,
    .home .banner-swiper .area-title .title-cn,
    .service-yl .s-yl-process .process-top .r-title .en,
    .service-yl .s-yl-point .title .en {
        font-size: 36px;
    }

    .home .project-area .project-list-area .project-item img {
        height: 520px;
    }

    .merchants-type .m-content .r-info .list .item {
        margin-right: 86px;
    }

    .strength-banner .banner-cont .img {
        width: 500px;
        height: 648px;
    }

    .strength-banner .banner-cont .img .title .cn,
    .incombanner .l-text .textdiv .text .cn,
    .about-introduction .introd-member .memberdiv .l-member .title .cn,
    .product-main .pro-title .cn,
    .productview-main .prov-detail .l-info .p-title {
        font-size: 48px;
    }

    .strength-banner .banner-cont .class-ul {
        height: 648px;
    }

    .home .service-area .info {
        padding: 50px 90px;
    }

    .area-title.normal .left-area .title-cn,
    .home .service-area .info .title-cn,
    .home .culture-area .culture-item .title-cn,
    .home .store-area .store-item .title-cn,
    .about-history .his-content .l-content .contet .tit,
    .about-strength .stre-one .list .item .r-info .title .cn,
    .stre-two .list .item.san .title .cn,
    .newsview-main .newsv-top .content .title,
    .proclass-list .item .l-aa .tit,
    .productview-main .prov-tui .t-title .tit,
    .network-shop .shop-content .l-content .title,
    .network-market .market-content .market-style .title,
    .service-yl .s-yl-process .process-top .r-title .cn,
    .service-yl .s-yl-point .title .cn,
    .join-job .job-idea .j-content .r-info .tit,
    .join-job .job-active .title .tit,
    .incom-title .tit {
        font-size: 30px;
    }

    .about-history .his-content .r-list .history-list .item .year,
    .news-list .item .img .play {
        font-size: 60px;
    }

    .about-honor .honor-top .content .l-title .tit .btit {
        font-size: 90px;
    }

    .about-strength .stre-one.ability .list .item.rrll .r-info {
        padding-right: 130px;
    }

    .about-strength .stre-three .stre-one .list .item .r-info {
        padding-left: 108px;
    }

    .news-list .item {
        padding: 0 86px 140px;
    }

    .newsview-main .newsv-top {
        height: 350px;
    }

    .productview-main .prov-detail {
        padding-bottom: 230px;
    }

    .productview-main .prov-detail .r-img::before {
        width: 600px;
        height: 700px;
    }

    .productview-main .prov-detail .r-img .img {
        width: 600px;
        height: 750px;
    }

    .productview-main .prov-tui {
        padding-top: 74px;
    }

    .network-shop .shop-content .r-list {
        padding-left: 120px;
    }

    .network-shop .shop-content .l-content .becom-a {
        height: 50px;
    }

    .service-product .s-pro-content .l-class {
        margin-right: 120px;
    }

    .service-product .s-pro-content .r-list {
        padding-left: 190px;
    }

    .service-problem .s-pro-content .r-list .qitem .qtit .q,
    .service-problem .s-pro-content .r-list .qitem .rinfo .r {
        font-size: 56px;
    }

    .service-contact .contact-cont .item .l-tit,
    .merchants-type .m-content .l-tit {
        width: 350px;
    }

    .join-job .job-idea .j-content .l-img {
        width: 550px;
    }

    .join-dealer .dealer-form .my-item .my-label {
        width: 365px;
    }

    .join-dealer .dealer-form .btn .btn-tj {
        height: 80px;
        width: 350px;
    }

    .about-introduction .introd-member .memberdiv .l-member {
        padding-right: 290px;
    }

    .incombanner .r-img .img,
    .incombanner .r-img .videobox {
        height: 650px;
    }

    .about-history .his-content .l-content,
    .about-honor .honor-top .content .l-title {
        padding-right: 190px;
        width: 540px;
    }

    .about-history .his-content .r-list,
    .about-honor .honor-top .content .r-text {
        width: calc(100% - 540px);
    }

    .about-honor .honor-list .h-list .item {
        margin-right: 88px;
        margin-bottom: 65px;
    }

    .about-strength .stre-one .list .item {
        margin-bottom: 110px;
    }

    .about-strength {
        padding-top: 110px;
    }

    .about-strength .stre-one .list .item .r-info .title .desc {
        margin-bottom: 55px;
    }

    .stre-two .list .item.san {
        padding-bottom: 80px;
    }

    .stre-two .list .item.si {
        padding: 80px 0;
    }

    .about-strength .stre-one.ability .list .item {
        margin-bottom: 166px;
    }

    .stre-three .tsan {
        margin-top: 70px;
    }

    .about-news .news-select {
        margin: 0 auto 100px;
    }

    .footerbox .foot-top {
        padding: 98px 0 74px;
    }

    .partnerview-main .partnerv-banner .img .textdiv .cn {
        font-size: 48px;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .l-content {
        padding-right: 260px;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .l-content .cont-msg {
        padding-bottom: 116px;
    }

    .about-introduction .introd-member {
        padding: 110px 0 116px;
    }
}

@media only screen and (min-width:1025px) {
    .prolist-select .pro-s-xiala .s-xiala .xl-li.active .incom-filter {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@media only screen and (max-width:1660px) {
    .footerbox .foot-top .r-info {
        padding-right: 0;
    }

    .footerbox .foot-top .l-menu {
        max-width: 78%;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .l-content {
        padding-right: 1rem;
    }

    .service-product .s-pro-content .l-class {
        margin-right: 0.6rem;
    }

    .service-product .s-pro-content .r-list {
        padding-left: 6%;
    }
}

@media only screen and (max-width:1440px) {
    .about-history .his-content .l-content {
        padding-right: 4%;
    }
}

@media only screen and (max-width:1280px) {
    .about-introduction .introd-member .memberdiv .l-member {
        padding-right: 6%;
    }

    .news-list .item {
        padding: 0 0.4rem 1rem;
    }

    .news-list .item .tit {
        font-size: 20px;
        height: 60px;
    }

    .prolist-list .item {
        width: calc((100% - 0.81rem) / 3);
        margin-right: 0.4rem;
    }

    .prolist-list .item:nth-child(4n+0) {
        margin-right: 0.4rem;
    }

    .prolist-list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .productview-main .prov-detail {
        flex-direction: column-reverse;
        padding-bottom: 0;
    }

    .productview-main .prov-detail .l-info,
    .productview-main .prov-detail .r-img {
        width: 100%;
        margin: 0;
    }

    .productview-main .prov-tui .t-title .tit {
        font-size: 24px;
    }

    .productview-main .prov-detail .r-img {
        padding-top: 0;
    }

    .productview-main .prov-detail .r-img::before {
        display: none;
    }

    .productview-main .prov-detail .r-img .imgdiv {
        height: 7.5rem;
        margin-bottom: 1rem;
        min-height: 412px;
    }

    .productview-main .prov-detail .r-img .img {
        background-color: #eff0f1;
        left: 60%;
        transform: translateX(-50%);
    }

    .productview-main .prov-detail .r-img .img img {
        position: relative;
        top: 1rem;
        right: 60%;
    }

    .partner-one .partner-list .list .item {
        width: calc((100% - 0.96rem) / 4);
    }

    .partner-one .partner-list .list .item:nth-child(6n+0) {
        margin-right: 0.32rem;
    }

    .partner-one .partner-list .list .item:nth-child(4n+0) {
        margin-right: 0;
    }

    .partner-project .project-list .item,
    .partner-project .project-list .item:nth-child(21n+2),
    .partner-project .project-list .item:nth-child(21n+8),
    .partner-project .project-list .item:nth-child(21n+17) {
        width: calc((100% - 0.6rem) / 3);
    }

    .partner-project .project-list .item:nth-child(21n+3),
    .partner-project .project-list .item:nth-child(21n+7),
    .partner-project .project-list .item:nth-child(21n+10),
    .partner-project .project-list .item:nth-child(21n+14),
    .partner-project .project-list .item:nth-child(21n+17),
    .partner-project .project-list .item:nth-child(21n+21) {
        margin-right: 0.3rem;
    }

    .partner-project .project-list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .partner-project .project-list .item .img {
        height: auto;
        padding-top: calc(490 / 392 * 100%);
        position: relative;
    }

    .partner-project .project-list .item .img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .l-content {
        padding-right: 30px;
    }

    .network-shop .shop-content .shop-top {
        display: block;
    }

    .network-shop .shop-content .l-content,
    .network-shop .shop-content .r-list {
        width: 100%;
        padding: 0;
    }

    .network-shop .shop-content .l-content {
        margin-bottom: 4%;
    }

    .network-market .market-content .market-style .s-list .item {
        width: calc(100% / 3 - 0.2rem);
    }

    .service-product .s-pro-content .l-class {
        margin-right: 0.3rem;
    }

    .service-product .s-pro-content .r-list {
        padding-left: 3%;
    }

    .service-yl .s-yl-point .title .cn,
    .about-strength .stre-one .list .item .r-info .title .cn,
    .strength-banner .banner-cont .class-ul .c-li .tit,
    .proclass-list .item .l-aa .tit {
        font-size: 20px;
    }

    .about-strength .stre-one .list .item.uudd .r-info .title .cn {
        height: 54px;
    }

    .service-yl .s-yl-point .title .en {
        font-size: 24px;
    }

    .about-strength .stre-one .list .item.uudd {
        padding-right: 0.3rem;
    }

    .stre-two .list .item .desc {
        max-width: 100%;
    }

    .about-strength .stre-one.ability .list .item .r-info,
    .about-strength .stre-three .stre-one .list .item .r-info {
        padding-left: 3%;
    }

    .about-strength .stre-one.ability .list .item.rrll .r-info {
        padding-left: 0;
        padding-right: 3%;
    }

    .news-list.search-list .item .tit {
        height: 120px;
    }

    .merchants-sale .sale-content .s-list .item .showdiv .tit .tt,
    .merchants-sale .sale-content .s-list .item .hidediv .tit .tt {
        font-size: 16px;
    }
}

@media only screen and (max-width:1024px) {
    .home.content {
        margin-top: 60px;
    }

    .heightpx100 {
        height: 60px;
    }

    .incombanner,
    .product-main,
    .productlist-main,
    .padding-top100,
    .partnerview-main .partnerv-banner {
        padding-top: 60px;
    }

    .prolist-select {
        top: 60px;
    }

    .phonemenubtn {
        display: flex;
    }

    .header .header-wrap .m-menu,
    .header .header-wrap .r-lang .lg-ul,
    .header .header-wrap .r-lang .reserve {
        display: none;
    }

    .header .header-wrap .l-logo .logo-img {
        width: 160px;
    }

    .footerbox .foot-top .container,
    .about-introduction .introd-member .memberdiv,
    .about-history .his-content,
    .service-product .s-pro-content,
    .service-yl .s-yl-process .process-top,
    .about-honor .honor-top .content,
    .join-job .job-idea .j-content,
    .merchants-type .m-content,
    .proclass-list .item {
        display: block;
    }

    .footerbox .foot-top .l-menu,
    .footerbox .foot-top .r-info,
    .about-introduction .introd-member .memberdiv .l-member,
    .about-introduction .introd-member .memberdiv .r-img,
    .about-history .his-content .l-content,
    .about-history .his-content .r-list,
    .service-product .s-pro-content .l-class,
    .service-product .s-pro-content .r-list,
    .service-yl .s-yl-process .process-top .l-img,
    .service-yl .s-yl-process .process-top .r-title,
    .about-honor .honor-top .content .l-title,
    .about-honor .honor-top .content .r-text,
    .join-job .job-idea .j-content .l-img,
    .join-job .job-idea .j-content .r-info,
    .merchants-type .m-content .l-tit,
    .merchants-type .m-content .r-info,
    .proclass-list .item .r-img {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .footerbox .foot-top .l-menu {
        margin-bottom: 0.4rem;
    }

    .about-honor .honor-list .h-list .item {
        width: calc((100% - 1.2rem) / 3);
        margin-right: 0.6rem;
    }

    .about-honor .honor-list .h-list .item:nth-child(4n+0) {
        margin-right: 0.6rem;
    }

    .about-honor .honor-list .h-list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .about-introduction .introd-member {
        padding: 1.1rem 0 0;
    }

    .about-introduction .introd-member::after {
        display: none;
    }

    .about-introduction .introd-member .memberdiv .l-member {
        padding: 0;
        margin-bottom: 20px;
    }

    .about-history .his-content .l-content {
        margin-bottom: 6%;
    }

    .about-history .his-content .l-content .img {
        text-align: left;
    }

    .news-list .item {
        width: calc(100% / 2);
    }

    .partnerview-main .partnerv-cont .p-content .p-cont {
        flex-direction: column-reverse;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .l-content,
    .partnerview-main .partnerv-cont .p-content .p-cont .r-info {
        width: 100%;
        padding: 0;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .r-info {
        margin-bottom: 4%;
    }

    .partnerview-main .partnerv-banner .img .textdiv .cn {
        font-size: 24px;
    }

    .partnerview-main .partnerv-banner .img .textdiv .en {
        font-size: 16px;
    }

    .network-shop .shop-content .r-list .list .item {
        width: calc((100% - 0.6rem) / 3);
        margin-right: 0.3rem;
    }

    .network-market .market-content .market-demo {
        max-width: 100%;
    }

    .network-market .market-content .market-style .title {
        font-size: 22px;
    }

    .service-product .s-pro-content .l-class {
        margin: 0 auto 4%;
        position: relative;
        max-width: 200px;
    }

    .service-product .s-pro-content .l-class .class-ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 11;
        height: 0;
        overflow: hidden;
        transform: translateY(10px);
        transition: all .5s;
        background-color: #4e4e4e;
    }

    .service-product .s-pro-content .l-class .title {
        border-bottom: 1px solid #7f7f7f;
        padding: 10px 0;
        position: relative;
    }

    .service-product .s-pro-content .l-class .title::after {
        content: "";
        position: absolute;
        right: 5px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-style: solid;
        border-width: 1px;
        border-color: transparent transparent #7f7f7f #7f7f7f;
        transform: rotate(-45deg);
        margin-top: -7px;
        transition: all .5s;
    }

    .service-product .s-pro-content .l-class .class-ul .item {
        padding: 5px 10px;
        margin-bottom: 0;
    }

    .service-product .s-pro-content .l-class .class-ul .item .tt {
        color: #ffffff;
        border-bottom: 1px solid #b6b6b6;
        font-size: 16px;
    }

    .service-product .s-pro-content .l-class .class-ul .item:first-of-type {
        padding: 10px 10px 5px;
    }

    .service-product .s-pro-content .l-class .class-ul .item:last-of-type {
        padding: 5px 10px 10px;
    }

    .service-product .s-pro-content .l-class.active .class-ul {
        height: auto;
        transform: translateY(0);
    }

    .service-product .s-pro-content .r-list {
        border-left: 0;
    }

    .service-yl .s-yl-process .process-ul .item .tit {
        font-size: 14px;
    }

    .service-yl .s-yl-process .process-ul .item,
    .service-yl .s-yl-process .process-ul .item:nth-child(4n+0) {
        width: 50%;
    }

    .service-yl .s-yl-process .process-ul .item:nth-child(4n+0)::after {
        display: block;
    }

    .service-yl .s-yl-process .process-top .r-title {
        margin-top: 3%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-yl .s-yl-process .process-top .r-title .cn,
    .join-job .job-active .title .tit,
    .incom-title .tit {
        font-size: 22px;
    }

    .service-contact .contact-cont .item .r-info h3 {
        font-size: 20px;
    }

    .service-contact .contact-cont .item .r-info h4 {
        font-size: 28px;
    }

    .about-honor .honor-top .content .l-title,
    .join-job .job-idea .j-content .l-img,
    .merchants-type .m-content .r-info {
        margin-bottom: 0.4rem;
    }

    .about-honor .honor-top .content .l-title {
        padding-left: 30px;
    }

    .prolist-select {
        z-index: 23;
        height: 80px;
    }

    .prolist-select .pro-s-xiala {
        text-align: center;
    }

    .prolist-select .pro-s-xiala .mmxiala {
        display: inline-block;
        cursor: pointer;
        position: relative;
    }

    .prolist-select .pro-s-xiala .mmxiala .mmarrow {
        position: relative;
        width: 20px;
        display: inline-block;
        vertical-align: middle;
        height: 18px;
    }

    .prolist-select .pro-s-xiala .mmxiala .mmarrow::before {
        content: "";
        border-style: solid;
        border-width: 6px 5px;
        border-color: transparent transparent transparent#7c7e71;
        display: block;
        position: absolute;
        top: 50%;
        right: 0.1rem;
        transform: translate(50%, -50%);
    }

    .prolist-select .pro-s-xiala .s-xiala {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        background-color: #ffffff;
        z-index: 23;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10vh 4% 8%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10%);
        transition: all .75s ease;
    }

    .prolist-select .pro-s-xiala .s-xiala::before {
        content: '';
        position: absolute;
        left: calc(4% + 180px);
        top: 10vh;
        height: 84%;
        width: 1px;
        background-color: #d6d6d6;
    }

    .prolist-select .pro-s-xiala .s-xiala .closebtn {
        position: absolute;
        right: 4%;
        top: 3%;
        font-size: 14px;
        color: #7c7e71;
        font-weight: bold;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .prolist-select .pro-s-xiala .s-xiala .xl-li {
        margin-bottom: 0.6rem;
        min-width: 180px;
        position: initial;
    }

    .prolist-select .pro-s-xiala.active .s-xiala {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .incom-filter {
        position: absolute;
        left: 250px;
        top: 10vh;
        width: auto;
        padding: 0;
    }

    .incom-filter .f-ul {
        flex-direction: column;
        margin: 0;
        width: 50vw;
        padding: 0 0.4rem;
        max-height: 80vh;
        overflow-y: auto;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .incom-filter .f-ul .fli {
        width: 100%;
        margin: 0;
        margin-bottom: 0.4rem;
    }

    .incom-filter .gocheck {
        justify-content: center;
    }

    .prolist-select .pro-s-xiala.active .s-xiala .xl-li.active .incom-filter {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .strength-banner .banner-cont .stre-href {
        display: none;
    }

    .strength-banner .banner-cont .class-ul {
        top: auto;
        right: auto;
        bottom: 4%;
        flex-direction: row;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .strength-banner .banner-cont .class-ul .c-li {
        width: auto;
        margin: 0 8px 10px;
    }

    .strength-banner .banner-cont .class-ul .c-li .tit {
        font-size: 18px;
    }

    .proclass-list .item,
    .proclass-list .item:nth-child(2n+0) {
        position: relative;
        padding: 0;
        margin: 0;
    }

    .proclass-list .item .l-aa,
    .proclass-list .item:nth-child(2n+0) .l-aa {
        position: absolute;
        left: 4%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        background-color: rgba(255, 255, 255, .8);
        padding: 0.4rem;
        width: 35%;
        min-width: 300px;
    }

    .proclass-list .item:nth-child(2n+0) .l-aa {
        left: auto;
        right: 4%;
    }

    .news-list.search-list .item {
        width: calc(100% / 3 - 0.5rem);
    }

    .news-list.search-list .item .tit {
        font-size: 18px;
        height: 108px;
    }

    .about-honor .honor-list .h-class {
        position: relative;
        text-align: center;
        overflow: hidden;
    }

    .about-honor .honor-list .h-class .checktit {
        display: inline-block;
        padding-bottom: 10px;
        position: relative;
    }

    .about-honor .honor-list .h-class .checktit .mmarrow {
        position: relative;
        width: 20px;
        height: 18px;
        display: inline-block;
        vertical-align: middle;
    }

    .about-honor .honor-list .h-class .checktit .mmarrow::before {
        content: "";
        border-style: solid;
        border-width: 6px 5px;
        border-color: #7c7e71 transparent transparent transparent;
        display: block;
        position: absolute;
        top: 50%;
        right: 0.1rem;
        transform: translate(50%, -50%);
        margin-top: 2px;
    }

    .about-honor .honor-list .h-class .check-ul {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        z-index: 1;
        max-width: 300px;
        transform: translate(-50%, 10px);
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transition: all .5s ease;
    }

    .about-honor .honor-list .h-class .check-ul .item {
        padding: 5px 0;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .about-honor .honor-list .h-class .check-ul .item:first-of-type {
        padding: 10px 0 5px;
    }

    .about-honor .honor-list .h-class.active {
        overflow: visible;
    }

    .about-honor .honor-list .h-class.active .check-ul {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .about-honor .honor-list .h-class.active .checktit .mmarrow::before {
        transform: translate(50%, -50%) rotate(180deg);
        margin-top: -5px;
    }

    .network-market .market-content .market-zhou .z-map {
        margin-bottom: 0.4rem;
    }

    .network-market .market-content .market-zhou .item {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .network-market .market-content .market-zhou .item.item146,
    .network-market .market-content .market-zhou .item.item145,
    .network-market .market-content .market-zhou .item.item144,
    .network-market .market-content .market-zhou .item.item143,
    .network-market .market-content .market-zhou .item.item142,
    .network-market .market-content .market-zhou .item.item141 {
        top: 0;
        left: 0;
    }

    .network-market .market-content .market-zhou .item .click-dian {
        display: none;
    }

    .network-market .market-content .market-zhou .item .info {
        opacity: 1;
        visibility: visible;
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        box-shadow: none;
        min-width: 100%;
    }

    .network-market .market-content .market-zhou .item .info .infodd {
        background-color: #ffffff;
    }

    .network-market .market-content .market-zhou .item .info .infodd .msg {
        color: #797979;
        display: none;
        max-height: 100%;
    }

    .network-market .market-content .market-zhou .item .info .infodd .tit {
        font-size: 18px;
        color: #797979;
        border-bottom: 1px solid #d6d6d6;
        position: relative;
    }

    .network-market .market-content .market-zhou .item .info .infodd .tit::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #797979 #797979 transparent transparent;
        transform: rotate(45deg);
        margin-top: -8px;
        transition: all .5s;
    }

    .network-market .market-content .market-zhou .item .info .infodd.active .tit::after {
        transform: rotate(135deg);
    }

    .merchants-sale .sale-content .s-list {
        display: block;
    }

    .merchants-sale .sale-content .s-list .item {
        width: 100%;
        height: 3rem;
        min-height: 100%;
        position: relative;
        margin: 1px 0;
    }

    .merchants-sale .sale-content .s-list .item .icon {
        left: auto;
        right: 4%;
        bottom: auto;
        top: 1.35rem;
        transform: translateX(0);
    }

    .merchants-sale .sale-content .s-list .item .showdiv {
        background-color: #ffffff;
        overflow: hidden;
    }

    .merchants-sale .sale-content .s-list .item .showdiv .tit {
        top: 50%;
        transform: translateY(-50%);
        padding: 0 4%;
    }

    .merchants-sale .sale-content .s-list .item .showdiv .tit .tt,
    .merchants-sale .sale-content .s-list .item .hidediv .tit .tt {
        color: #2d2d2d;
    }

    .merchants-sale .sale-content .s-list .item .showdiv .img {
        max-height: 3rem;
    }

    .merchants-sale .sale-content .s-list .item .showdiv .img img {
        display: none;
    }

    .merchants-sale .sale-content .s-list .item .hidediv {
        position: relative;
        height: auto;
        padding: 4%;
    }

    .merchants-sale .sale-content .s-list .item .hidediv .tit {
        margin: 0;
        margin-bottom: 10px;
    }

    .merchants-sale .sale-content .s-list .item.active {
        width: 100%;
        height: auto;
    }

    .merchants-sale .sale-content .s-list .item.active .showdiv .tit .tt,
    .merchants-sale .sale-content .s-list .item.active .hidediv .tit .tt {
        color: #ffffff;
    }

    .news-list .item .img .play {
        font-size: 46px;
    }

    .news-list.video .item .img::before {
        width: 20px;
        height: 20px;
    }

    .join-job .job-idea .j-content .r-info .tit {
        font-size: 18px;
    }
}

@media only screen and (max-width:800px) {
    .footerbox .foot-top .l-menu {
        display: block;
    }

    .footerbox .foot-top .l-menu .item {
        margin-right: 0;
    }

    .footerbox .foot-top .l-menu .item .item-li {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }

    .footerbox .foot-top .l-menu .item .item-li.mt45 {
        margin-top: 0;
    }

    .footerbox .foot-top .l-menu .item .item-li .item-a {
        padding: 16px 0;
        font-size: 16px;
        position: relative;
        display: inline-block;
    }

    .footerbox .foot-top .l-menu .item .item-li .item-ul {
        display: none;
        padding-bottom: 0.4rem;
    }

    .footerbox .foot-top .l-menu .item .item-li .item-ul li {
        margin-bottom: 0.2rem;
    }

    .footerbox .foot-top .l-menu .item .item-li .ii {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 14px;
        height: 14px;
        position: absolute;
        right: 2px;
        top: 22px;
    }

    .footerbox .foot-top .l-menu .item .item-li .ii::before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        content: "";
        display: block;
        background-color: #ffffff;
        width: 100%;
        height: 2px;
    }

    .footerbox .foot-top .l-menu .item .item-li .ii::after {
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
        content: "";
        display: block;
        background-color: #ffffff;
        width: 2px;
        height: 100%;
        transition: 1s all cubic-bezier(0.52, 0.08, 0.18, 1);
    }

    .footerbox .foot-top .l-menu .item .item-li.on .ii::after {
        transform: rotate(270deg);
    }

    .footerbox .foot-top .r-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .incomhref::after {
        display: none;
    }

    .incombanner {
        flex-direction: column-reverse;
    }

    .incombanner::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background-color: #eff0f1;
    }

    .incombanner .l-text,
    .incombanner .r-img,
    .about-honor .honor-top .content .l-title,
    .about-honor .honor-top .content .r-text,
    .partner-project .project-top .l-text,
    .network-shop .shop-content .r-list .t-select .selector-form .citycheck,
    .network-shop .shop-content .r-list .t-select .selector-form .search-area,
    .about-strength .stre-one .list .item .l-img,
    .about-strength .stre-one .list .item .r-info,
    .about-strength .stre-one .list .item.uudd {
        width: 100%;
    }

    .incombanner .l-text .textdiv {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
        padding: 20px 0;
    }

    .about-honor .honor-top .content,
    .partner-project .project-top,
    .network-shop .shop-content .r-list .t-select .selector-form,
    .about-strength .stre-one .list .item,
    .about-strength .stre-one .list {
        display: block;
    }

    .about-honor .honor-top .content .l-title {
        margin-bottom: 0.4rem;
    }

    .incombanner .l-text .textdiv .text .cn {
        font-size: 26px;
    }

    .incombanner .l-text .textdiv .text .en {
        font-size: 16px;
    }

    .about-history .his-content .r-list .history-list .item .text {
        font-size: 14px;
    }

    .prolist-list .item {
        width: calc((100% - 0.4rem) / 2);
        margin-right: 0.4rem;
    }

    .prolist-list .item:nth-child(4n+0) {
        margin-right: 0.4rem;
    }

    .prolist-list .item:nth-child(3n+0) {
        margin-right: 0.4rem;
    }

    .prolist-list .item:nth-child(2n+0) {
        margin-right: 0;
    }

    .productview-main .prov-detail .r-img .img img {
        right: 3rem;
    }

    .partner-project .project-top .l-text {
        margin-bottom: 20px;
    }

    .incommon-select {
        margin: 0 auto;
    }

    .height100 {
        height: 0.2rem;
    }

    .partner-project .project-list .item,
    .partner-project .project-list .item:nth-child(21n+2),
    .partner-project .project-list .item:nth-child(21n+8),
    .partner-project .project-list .item:nth-child(21n+17) {
        width: calc((100% - 0.3rem) / 2);
    }

    .partner-project .project-list .item:nth-child(3n+0) {
        margin-right: 0.3rem;
    }

    .partner-project .project-list .item:nth-child(2n+0) {
        margin-right: 0;
    }

    .partnerview-main .partnerv-cont .p-content .p-cont .r-info .tit {
        font-size: 20px;
    }

    .network-shop .shop-content .r-list .list .item {
        width: calc((100% - 0.3rem) / 2);
    }

    .network-shop .shop-content .r-list .list .item:nth-child(3n+0) {
        margin-right: 0.3rem;
    }

    .network-shop .shop-content .r-list .list .item:nth-child(2n+0) {
        margin-right: 0;
    }

    .network-shop .shop-content .r-list .t-select .selector-form .citycheck .c-duan {
        width: 49%;
        margin-bottom: 20px;
        min-width: auto;
    }

    .network-market .market-content .market-style .s-list .item {
        width: calc(100% / 2 - 0.2rem);
    }

    .network-ecommerce .ecommerce-list .item {
        width: 100%;
        margin-right: 0;
    }

    .network-ecommerce .ecommerce-list .item .info .l-title .tit,
    .service-yl .s-yl-point .title .en {
        font-size: 18px;
    }

    .service-problem .s-pro-content .r-list .qitem .qtit .tt {
        font-size: 16px;
    }

    .service-problem .s-pro-content .r-list .qitem .rinfo .info {
        font-size: 14px;
    }

    .service-problem .s-pro-content .r-list .qitem .qtit .q,
    .service-problem .s-pro-content .r-list .qitem .rinfo .r {
        width: 54px;
        min-width: 40px;
    }

    .service-problem .s-pro-content .r-list .qitem .rinfo .r::after {
        height: 32px;
    }

    .about-strength .stre-one .list .item .l-img,
    .about-strength .stre-one .list .item .r-info,
    .about-strength .stre-one .list .item.uudd,
    .about-strength .stre-one.ability .list .item .l-img,
    .about-strength .stre-one.ability .list .item .r-info {
        max-width: 100%;
        padding: 0;
    }

    .about-strength .stre-one .list .item .l-img {
        text-align: center;
        margin-bottom: 0.4rem;
    }

    .about-strength .stre-one.ability .list .item .r-info,
    .about-strength .stre-three .stre-one .list .item .r-info {
        padding-left: 0;
    }

    .news-list.search-list .item {
        width: calc(100% / 2 - 0.5rem);
    }

    .about-history .his-content .l-content .contet .tit,
    .stre-two .list .item.san .title .cn,
    .newsview-main .newsv-top .content .title {
        font-size: 16px;
    }
}

@media only screen and (max-width:640px) {
    .about-honor .honor-list .h-list .item {
        width: calc((100% - 0.4rem) / 2);
        margin-right: 0.4rem;
    }

    .about-honor .honor-list .h-list .item:nth-child(4n+0),
    .about-honor .honor-list .h-list .item:nth-child(3n+0) {
        margin-right: 0.4rem;
    }

    .about-honor .honor-list .h-list .item:nth-child(2n+0) {
        margin-right: 0;
    }

    .news-list .item {
        width: 100%;
    }

    .partner-one .partner-list .list .item {
        width: calc((100% - 0.32rem) / 2);
    }

    .partner-one .partner-list .list .item:nth-child(6n+0) {
        margin-right: 0.32rem;
    }

    .partner-one .partner-list .list .item:nth-child(4n+0) {
        margin-right: 0.32rem;
    }

    .partner-one .partner-list .list .item:nth-child(2n+0) {
        margin-right: 0;
    }

    .service-product .s-pro-content .r-list .item,
    .service-contact .contact-cont .item {
        display: block;
    }

    .service-product .s-pro-content .r-list .item .l-img,
    .service-product .s-pro-content .r-list .item .r-msg,
    .service-contact .contact-cont .item .l-tit,
    .service-contact .contact-cont .item .r-info {
        width: 100%;
        margin: 0;
    }

    .service-product .s-pro-content .r-list .item .l-img {
        height: auto;
        margin-bottom: 20px;
    }

    .service-product .s-pro-content .r-list .item .icon {
        top: auto;
        bottom: 6px;
    }

    .service-product .s-pro-content .r-list .item .r-msg .tit,
    .merchants-type .m-content .r-info .list .item .tit {
        font-size: 16px;
    }

    .service-contact .contact-cont .item .l-tit {
        margin-bottom: 30px;
    }

    .merchants-type .m-content .r-info .list {
        display: block
    }

    .merchants-type .m-content .r-info .list .item {
        width: 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .incommon-select.pro {
        display: none;
    }

    .prolist-select {
        height: 64px;
    }

    .prolist-select .pro-s-xiala {
        text-align: left;
    }

    .incom-filter {
        left: 180px;
    }

    .prolist-select .pro-s-xiala .s-xiala .xl-li {
        min-width: 142px;
    }

    .prolist-select .pro-s-xiala .s-xiala::before {
        left: calc(4% + 142px);
    }

    .strength-banner .banner-cont .class-ul .c-li .tit {
        font-size: 16px;
    }

    .proclass-list .item .r-img {
        height: 300px;
    }

    .proclass-list .item .l-aa,
    .proclass-list .item:nth-child(2n+0) .l-aa {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width:600px) {
    .prolist-list .item {
        width: 100%;
        margin-right: 0;
    }

    .prolist-list .item:nth-child(4n+0) {
        margin-right: 0;
    }

    .prolist-list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .productview-main .prov-detail .l-info .p-color .color-list .item {
        width: calc((100% - 0.45rem) / 4);
        margin-bottom: 10px;
    }

    .productview-main .prov-detail .l-info .p-color .color-list .item:nth-child(6n+0) {
        margin-right: 0.15rem;
    }

    .productview-main .prov-detail .l-info .p-color .color-list .item:nth-child(4n+0) {
        margin-right: 0;
    }

    .productview-main .prov-detail .r-img .img img {
        right: 1rem;
    }

    .partner-project .project-list .item,
    .partner-project .project-list .item:nth-child(21n+2),
    .partner-project .project-list .item:nth-child(21n+8),
    .partner-project .project-list .item:nth-child(21n+17) {
        width: 100%;
        margin-right: 0;
    }

    .partner-project .project-list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .network-shop .shop-content .r-list .list .item {
        width: 100%;
    }

    .network-shop .shop-content .r-list .list .item:nth-child(3n+0) {
        margin-right: 0;
    }

    .service-yl .s-yl-process .process-ul .item,
    .service-yl .s-yl-process .process-ul .item:nth-child(4n+0) {
        width: 100%;
    }

    .join-job .job-recruitment .j-re-list .list .item .incom-arrow {
        display: none;
    }

    .join-job .job-recruitment .j-re-list .list .item .l-title {
        min-width: 150px;
    }

    .join-job .job-recruitment .j-re-list .list .item .l-title .pri {
        font-size: 18px;
    }

    .join-dealer .dealer-form .my-item {
        display: block;
    }

    .news-list.search-list .item {
        width: 100%;
        margin: 0;
        margin-bottom: 6%;
    }

    .network-market .market-content .market-zhou .item .info .infodd .tit {
        font-size: 16px;
    }

    .network-shop .shop-content .l-content .img {
        text-align: center;
    }
}

@media only screen and (max-width:414px) {
    .network-market .market-content .market-style .s-list .item {
        width: 100%;
        margin: 0;
        margin-bottom: 0.4rem;
    }

    .service-problem .s-pro-content .r-list .qitem .rinfo .r,
    .service-problem .s-pro-content .r-list .qitem .qtit .q {
        width: 40px;
    }

    .incom-filter {
        left: 160px;
    }

    .about-history .his-content .l-content .img {
        display: none;
    }
}