@charset "UTF-8";
@font-face {
    font-family: "AlibabaPuHuiTi-Thin";
    src: url("../font/AlibabaPuHuiTi-2-35-Thin.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Light";
    src: url("../font/AlibabaPuHuiTi-2-45-Light.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Regular";
    src: url("../font/AlibabaPuHuiTi-2-55-Regular.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Medium";
    src: url("../font/AlibabaPuHuiTi-2-65-Medium.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-SemiBold";
    src: url("../font/AlibabaPuHuiTi-2-75-SemiBold.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Bold";
    src: url("../font/AlibabaPuHuiTi-2-85-Bold.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-ExtraBold";
    src: url("../font/AlibabaPuHuiTi-2-95-ExtraBold.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Heavy";
    src: url("../font/AlibabaPuHuiTi-2-105-Heavy.otf");
    font-style: normal;
}

@font-face {
    font-family: "AlibabaPuHuiTi-Black";
    src: url("../font/AlibabaPuHuiTi-2-115-Black.otf");
    font-style: normal;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
    border-radius: 10px;
    /*no*/
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /*no*/
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
    html {
        font-size: 9px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 10px;
    }
}

@media (min-width: 1500px) {
    html {
        font-size: 12px;
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 2000px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 8px;
    }
}

@media (max-width: 390px) {
    html {
        font-size: 6px;
    }
}

body, html {
    font-family: AlibabaPuHuiTi-Regular, Microsoft YaHei, -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, SourceHanSansSCVF, PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding: 0;
    margin: 0;
}

html, body {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

a {
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: none;
}

.page {
    z-index: 1;
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow-x: hidden;
}

.fresh-container {
    max-width: 109rem;
}

.slider-hero {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-hero .slides {
    position: absolute;
    bottom: 0;
}

.slider-hero .slides:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background: #ffffff;
}

.slider-hero .slides li {
    position: absolute;
    transition: 0.5s;
    display: block;
    overflow: hidden;
}

.slider-hero .slides li > img {
    margin: 0;
}

.slider-hero .rights-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 3;
}

.slider-hero .rights-btn:after {
    content: " ";
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    background: #ffffff;
}

.slider-hero .lefts-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    z-index: 3;
}

.slider-hero .lefts-btn:before {
    content: " ";
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    background: #ffffff;
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(3000px);
    }
    40% {
        opacity: 1;
        transform: translateX(300px);
    }
    100% {
        transform: none;
    }
}

.navbarInRight {
    animation-name: moveInRight;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
}

.fresh-navbar {
    height: 80px;
    background-color: #ffffff;
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .fresh-navbar {
        height: 112px;
    }
}

.fresh-navbar:after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(9deg, #75E7A5 0%, #06B880 100%);
}

.fresh-navbar .navbar-menu {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .fresh-navbar .navbar-menu {
        display: none;
        font-size: 1.7rem;
    }
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown:not(:last-child) {
    margin-right: 0px;
}

@media (min-width: 992px) {
    .fresh-navbar .navbar-menu .navbar-nav .dropdown:not(:last-child) {
        margin-right: 0px;
    }
}

@media (min-width: 1200px) {
    .fresh-navbar .navbar-menu .navbar-nav .dropdown:not(:last-child) {
        margin-right: 10px;
    }
}

@media (min-width: 1920px) {
    .fresh-navbar .navbar-menu .navbar-nav .dropdown:not(:last-child) {
        margin-right: 58px;
    }
}

@media (min-width: 2000px) {
    .fresh-navbar .navbar-menu .navbar-nav .dropdown:not(:last-child) {
        margin-right: 70px;
    }
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown.open > a {
    background: #fff;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown.open > a:focus {
    background: #fff;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown.open > a:hover {
    background: #fff;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown > a {
    position: relative;
    padding-right: 28px;
    color: #252B42;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown > a:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: url("../images/turn_bottom.png") center no-repeat;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li:not(:last-child) {
    margin-bottom: 6px;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a {
    color: #252B42;
    font-size: 1.3rem;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    font-weight: 400;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a:hover {
    padding-left: 58px;
    font-weight: 500;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a:hover:before {
    width: 24px;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a:hover .li-icon {
    color: #2DC071;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a:before {
    content: " ";
    position: absolute;
    left: 18px;
    top: 2px;
    bottom: 0;
    width: 26px;
    height: 26px;
    border-radius: 15px;
    border: 1px solid #2DC071;
    background: url("../images/menu_item_icon.png") center no-repeat;
}

.fresh-navbar .navbar-menu .navbar-nav .dropdown .dropdown-menu > li a .li-icon {
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    width: 26px;
    font-size: 1.57rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #B8B8B8;
}

.fresh-navbar .navbar-logo {
    height: 100%;
    position: absolute;
    left: 72px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .fresh-navbar .navbar-logo {
        left: 0px;
        padding: 16px;
    }
}

.fresh-navbar .navbar-logo > a {
    display: block;
}

@media (min-width: 992px) {
    .fresh-navbar .navbar-logo > a img {
        width: 52%;
    }
}

@media (min-width: 1200px) {
    .fresh-navbar .navbar-logo > a img {
        width: 74%;
    }
}

@media (min-width: 1920px) {
    .fresh-navbar .navbar-logo > a img {
        width: 100%;
    }
}

@media (min-width: 2000px) {
    .fresh-navbar .navbar-logo > a img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .fresh-navbar .navbar-logo > a img {
        width: 80%;
    }
}

.fresh-navbar .navbar-button {
    height: 100%;
    position: absolute;
    right: 72px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .fresh-navbar .navbar-button {
        display: none;
    }
}

.fresh-navbar .navbar-button > a {
    border: 1px solid #2DC071;
    border-radius: 80px;
    color: #252B42;
    font-size: 1.3rem;
    padding: 0.72rem 5.58rem;
}

.fresh-navbar .navbar-button > a:hover {
    background: #2DC071;
    color: #ffffff;
}

.fresh-navbar .btn-toggle {
    height: 100%;
    position: absolute;
    right: 16px;
    display: none;
    align-items: center;
}

.fresh-navbar .btn-toggle .navbar-toggle {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.fresh-navbar .btn-toggle .navbar-toggle .icon-bar {
    background: #000;
    margin: 5px;
}

@media (max-width: 767px) {
    .fresh-navbar .btn-toggle {
        display: flex;
    }
}

.fresh-navbar .mobile-navbar {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 0;
    bottom: 0;
    background: #F2F3F4;
    width: 70%;
    display: none;
}

.fresh-navbar .mobile-navbar.active {
    display: block;
}

.fresh-navbar .mobile-navbar .navbar-btn {
    height: 80px;
    text-align: right;
}

.fresh-navbar .mobile-navbar .navbar-btn a {
    padding: 40px 40px;
    color: #000;
    font-size: 1.72rem;
    line-height: 80px;
}

.fresh-navbar .mobile-navbar.navbar-menu .navbar-nav {
    margin: 0;
}

.fresh-navbar .mobile-navbar.navbar-menu .navbar-nav > li {
    margin-left: 20px;
    width: 80%;
}

.fresh-navbar .mobile-navbar.navbar-menu .navbar-nav .dropdown-menu {
    box-shadow: none;
}

.footer {
    color: #5E5E61;
    margin-top: 200px;
    background: #F5F5F7;
}

.footer.margin0 {
    margin-top: 0;
}

.footer .footer-copyright {
    text-align: center;
    font-size: 1rem;
    padding: 20px 0;
    margin: 0 4rem;
    border-top: 2px solid #D2D2D7;
}

.footer .footer-container {
    padding: 5.5rem 0;
    margin: 0 auto;
    min-height: 542px;
}

@media (max-width: 767px) {
    .footer .footer-container {
        padding: 5.5rem 2rem;
    }
}

.footer .footer-container .footer-menus {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .footer .footer-container .footer-menus {
        justify-content: space-between;
    }
}

.footer .footer-container .footer-menus a {
    color: #5E5E61;
}

.footer .footer-container .footer-menus .menu-item:not(:last-child) {
    padding-right: 7rem;
}

@media (max-width: 767px) {
    .footer .footer-container .footer-menus .menu-item:not(:last-child) {
        padding-right: 4rem;
    }
}

.footer .footer-container .footer-menus .menu-item .label-title {
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 12px;
}

.footer .footer-container .footer-menus .menu-item .label-text {
    font-size: 1.5rem;
    padding-bottom: 12px;
}

.footer .footer-container .footer-logo {
    float: right;
}

@media (max-width: 767px) {
    .footer .footer-container .footer-logo {
        margin-top: 30px;
        float: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer .footer-container .footer-logo h4 {
    font-size: 3.4rem;
    padding-bottom: 34px;
    letter-spacing: 8px;
}

.footer .footer-container .footer-logo img {
    width: 26rem;
    height: auto;
}

.footer .footer-container .row-2 {
    padding-top: 3.4rem;
}

.footer .footer-container .box-one {
    height: 170px;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .footer .footer-container .box-one {
        display: block;
    }
}

.footer .footer-container .box-one .foot-card {
    color: #5E5E61;
    border-radius: 11px;
    margin-right: 4.9rem;
    width: 29rem;
    border: 1px solid #D2D2D7;
    display: flex;
    align-items: center;
    padding: 18px;
    height: 86px;
}

@media (max-width: 767px) {
    .footer .footer-container .box-one .foot-card {
        width: 100%;
        margin-right: 0;
        margin-top: 40px;
    }
}

.footer .footer-container .box-one .foot-card > img {
    display: block;
    width: 4.7rem;
    height: auto;
}

.footer .footer-container .box-one .foot-card .card-body {
    padding-left: 1.3rem;
}

.footer .footer-container .box-one .foot-card .card-body > span {
    font-size: 1.2rem;
    display: block;
}

.footer .footer-container .box-two {
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer .footer-container .box-two li {
    font-size: 1.2rem;
    padding: 5px 0;
}

.footer .footer-container .box-two li img {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .footer .footer-container .box-two li img {
        width: 1.4rem;
    }
}

.page-title {
    position: relative;
}

.page-title .page-title-bg > img {
    width: 100%;
    height: auto;
}

.page-title .title {
    width: 44%;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.page-title .title span:first-child {
    font-size: 2.29rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 3.6rem;
    display: block;
}

.page-title .title span:last-child {
    display: block;
    color: #FFF;
    font-size: 1.71rem;
}

.solution-box .news-box-header {
    margin-top: 29px;
    text-align: center;
}

.solution-box .news-box-header .label-header {
    color: #3C3C3C;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.solution-box .news-box-header .label-text {
    color: #000;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 3.5px;
}

.solution-box .news-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

@media (max-width: 767px) {
    .solution-box .news-list {
        display: block;
        padding: 16px;
    }
}

.solution-box .news-list .new-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 18.5rem;
    height: 7.14rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 31.6551036835px 9.5924549103px 47.9622764587px 0px rgba(199, 199, 199, 0.6);
}

.solution-box .news-list .new-box:not(:last-child) {
    margin-right: 2.1rem;
}

@media (max-width: 767px) {
    .solution-box .news-list .new-box {
        width: 100%;
        height: 14rem;
    }

    .solution-box .news-list .new-box:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.solution-box .news-list .new-box .new-image > img {
    width: 80%;
}

.solution-box .news-list .new-box .new-title {
    color: #141416;
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 140%;
    padding: 1.2rem 0 1.2rem 12px;
}

.title-box {
    color: #000000;
    text-align: center;
}

.title-box .title-primary {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 160%;
}

.title-box .title-second {
    color: #000;
    font-size: 1.28rem;
    line-height: 160%;
    letter-spacing: 4.5px;
}

@media (max-width: 767px) {
    .title-box .title-second {
        letter-spacing: 2.5px;
    }
}

#fresh-video {
    height: calc(100vh - 80px);
}

@media (min-width: 992px) {
    #fresh-video {
        height: calc(100vh - 112px);
    }
}

#fresh-video .fresh-video-player {
    height: 100%;
    width: 100%;
    background: #000000;
}

#fresh-video .fresh-video-player video {
    height: 100%;
    width: 100%;
}

#service-youshi {
    padding-top: 60px;
    /*background: url("../images/home_service_bg.png") no-repeat 0 0;*/
    background: #ffffff;
    background-size: cover;
}

#service-youshi .title-primary .text {
    position: relative;
}

#service-youshi .title-primary .text:before {
    content: " ";
    position: absolute;
    left: -2.71rem;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: url("../images/icon_service_youshi.png") no-repeat center center;
    background-size: contain;
}

#service-youshi .box-body {
    padding: 30px 0;
}

#service-youshi .box-body .box-cards {
    position: relative;
    z-index: 10;
}

#service-youshi .box-body .box-cards .box-map {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#service-youshi .box-body .box-cards .box-map > img {
    width: 100%;
    max-width: 180rem; /* 最大不超过 800px，防止过大 */
    height: auto;
}

#service-youshi .box-body .box-cards .card-wrapper {
    position: relative;
    top: -80px;
    height: calc(8.2rem * 3 + 6rem);
    margin: 0 91px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-cards .card-wrapper {
        margin: 0 16px;
        flex-wrap: wrap;
        top: 0px;
        height: auto;
    }
}

#service-youshi .box-body .box-cards .card-wrapper .card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #FFF;
    box-shadow: -5px 7px 8px -4px rgba(0, 0, 0, 0.15);
    width: 12.8rem;
    height: 6rem;
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-cards .card-wrapper .card {
        width: 40vw;
        height: 8rem;
        margin-bottom: 2.2rem;
    }
}

#service-youshi .box-body .box-cards .card-wrapper .card:hover {
    background: #2DC071;
}

#service-youshi .box-body .box-cards .card-wrapper .card:hover .label-header {
    color: #FFF;
}

#service-youshi .box-body .box-cards .card-wrapper .card.card-2, #service-youshi .box-body .box-cards .card-wrapper .card.card-6 {
    margin-top: 8.2rem;
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-cards .card-wrapper .card.card-2, #service-youshi .box-body .box-cards .card-wrapper .card.card-6 {
        margin-top: 0;
    }
}

#service-youshi .box-body .box-cards .card-wrapper .card.card-3, #service-youshi .box-body .box-cards .card-wrapper .card.card-5 {
    margin-top: calc(8.2rem * 2);
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-cards .card-wrapper .card.card-3, #service-youshi .box-body .box-cards .card-wrapper .card.card-5 {
        margin-top: 0;
    }
}

#service-youshi .box-body .box-cards .card-wrapper .card.card-4 {
    margin-top: calc(8.2rem * 3);
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-cards .card-wrapper .card.card-4 {
        margin-top: 0;
    }
}


#service-youshi .box-body .box-cards .card-wrapper .card .label-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    color: #26BB92;
    font-size: 0.5rem;
    font-weight: 900;
    font-family: AlibabaPuHuiTi-Heavy;
}

#service-youshi .box-body .box-cards .card-wrapper .card .label-header label {
    font-size: 2rem;
    /*font-family: AlibabaPuHuiTi-Heavy;*/
    font-family: AlibabaPuHuiTi-Light, AlibabaPuHuiTi-Regular, sans-serif;
    font-weight: 550;
    line-height: 1;
}

#service-youshi .box-body .box-flexslider {
    position: relative;
    top: -143px;
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-flexslider {
        top: 0;
    }
}

#service-youshi .box-body .box-flexslider .bg {
    margin-left: -100px;
    width: calc(100% + 200px);
    height: 800px;
}

@media (min-width: 2000px) {
    #service-youshi .box-body .box-flexslider .bg {
        height: 1200px;
    }
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-flexslider .bg {
        height: auto;
    }
}

#service-youshi .box-body .box-flexslider .flexslider-wrapper {
    position: absolute;
    top: 172px;
    bottom: 107px;
    left: 0;
    right: 0;
}

@media (min-width: 2000px) {
    #service-youshi .box-body .box-flexslider .flexslider-wrapper {
        bottom: 147px;
    }
}

@media (max-width: 767px) {
    #service-youshi .box-body .box-flexslider .flexslider-wrapper {
        top: 42px;
        bottom: 89px;
    }
}

#partner {
    margin-top: -300px;
    padding-top: 200px;
    /*background: #E5E5E5 url("../images/partner_bg.png") no-repeat 80% 38%;*/
    /*background-size: 120%;*/
    background: #ffffff;
}

@media (max-width: 767px) {
    #partner {
        margin-top: -138px;
        padding-top: 110px;
        /*background: #E5E5E5 url(../images/partner_bg.png) no-repeat 48% 42%;*/
        /*background-size: 166%; */
        background: #ffffff;
    }
}

#partner .title-primary .text {
    position: relative;
}

#partner .title-primary .text:before {
    content: " ";
    position: absolute;
    left: -2.71rem;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: url("../images/icon_partner.png") no-repeat center center;
    background-size: contain;
}

#partner .box-body {
    position: relative;
}

#partner .box-body .bread {
    margin-left: 20%;
    width: 60%;
    padding: 50px 0 200px 0;
}

@media (max-width: 767px) {
    #partner .box-body .bread {
        width: 90%;
        margin-left: 5%;
        padding: 50px 0 40px 0;
    }
}

#partner .box-body .partner-cards {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 767px) {
    #partner .box-body .partner-cards {
        flex-direction: column;
        align-items: center;
    }
}

#partner .box-body .partner-cards .partner-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    position: relative;
    padding: 20px;
}

@media (max-width: 767px) {
    #partner .box-body .partner-cards .partner-card {
        width: 90vw;
    }
}

@media (max-width: 767px) {
    #partner .box-body .partner-cards .partner-card:not(:last-child) {
        margin-bottom: 20px;
    }
}

#partner .box-body .partner-cards .partner-card:not(:last-child):after {
    content: " ";
    position: absolute;
    right: 0;
    width: 4px;
    height: 40%;
    border-radius: 4px;
    top: 30%;
    background: #F3F3F3;
}

#partner .box-body .partner-cards .partner-card .card-header {
    color: #12141D;
    font-size: 3.2rem;
    font-weight: 400;
}

#partner .box-body .partner-cards .partner-card .card-category {
    color: #535353;
    font-size: 1.3rem;
    line-height: 2.3rem;
}

.partner-divider {
    width: 60%;
    margin: 40px auto;
    border: none;
    height: 1px;
    background: #d0d0d0;
}

#partner .box-body .bread {
    width: 80%;
    margin-left: 10%;
    padding: 50px 0 40px 0;
    text-align: center;
}

#partner .box-body .bread img {
    width: 100%;
    max-width: none; /* 去掉最大宽度限制 */
    height: auto;
    display: inline-block;
}

#company-desc {
    position: relative;
}

@media (max-width: 767px) {
    #company-desc br {
        display: none;
    }
}

#company-desc .bg {
    width: 100%;
}

#company-desc .company-modal-bg {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(113, 226, 161, 0.2) 0%, rgba(113, 226, 161, 0) 100%);
    width: 736px;
    height: 483px;
    position: absolute;
    left: 34%;
    top: 16%;
    z-index: 0;
}

@media (max-width: 767px) {
    #company-desc .company-modal-bg {
        display: none;
    }
}

#company-desc .company-modal {
    cursor: pointer;
    padding: 3rem 6rem 7rem 5rem;
    width: 57rem;
    position: absolute;
    border-radius: 28px;
    background-color: #ffffff;
    background-image: url("../images/logo_v5.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 21rem;
    box-shadow: 10px 10px 36px 0px rgba(58, 95, 59, 0.1);
    left: 13rem;
    top: 13rem;
    z-index: 1;
}

@media (min-width: 2000px) {
    #company-desc .company-modal {
        left: 23%;
        top: 13%;
    }
}

@media (max-width: 1198px) {
    #company-desc .company-modal {
        width: 64rem;
    }
}

#company-desc .company-modal:hover {
    background-image: url("../images/login_white_v9.png");
    background-color: #1eaa39;
    background-size: 18.85rem;
    color: #ffffff;
}

#company-desc .company-modal:hover .company-second, #company-desc .company-modal:hover .company-desc {
    color: #ffffff;
}

@media (max-width: 767px) {
    #company-desc .company-modal {
        border-radius: 0;
        box-shadow: none;
        padding: 20px;
        position: static;
        margin: 0;
        width: auto;
        height: 500px;
    }
}

#company-desc .company-modal .company-second {
    padding-top: 30px;
    padding-bottom: 12px;
    color: #000;
    font-size: 2.28rem;
    letter-spacing: 0.2px;
}

#company-desc .company-modal .company-desc {
    color: #85919F;
    font-size: 1rem;
    letter-spacing: 0.2px;
    line-height: 26px;
}

#news-center {
    padding-top: 60px;
    background: #fff;
}

#news-center .title-primary .text {
    position: relative;
}

#news-center .title-primary .text:before {
    content: " ";
    position: absolute;
    left: -2.71rem;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: url("../images/icon_news.png") no-repeat center center;
    background-size: contain;
}

#news-center .new-preview {
    position: relative;
    padding-top: 168px;
}

#news-center .new-preview .bg {
    width: 100%;
}

#news-center .new-preview .preview-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
}

.preview-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47rem;
}

@media (max-width: 767px) {
    .preview-box {
        height: 240px;
        padding-left: 40px;
    }
}

.preview-box .preview-img {
    height: 100%;
    width: 45.7rem;
    border-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
}

@media (max-width: 767px) {
    .preview-box .preview-img {
        width: 284px;
    }
}

.preview-box .preview-new {
    left: -40px;
    height: 100%;
    width: 45.7rem;
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0px 0px 37.5150909424px 9.1703548431px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .preview-box .preview-new {
        width: 284px;
    }
}

.preview-box .preview-new .preview-title {
    color: #000;
    font-size: 2.1rem;
    padding: 0.7rem 4.28rem;
}

.preview-box .preview-new .preview-btn {
    position: absolute;
    bottom: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-box .preview-new .preview-btn .turn-left {
    display: block;
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    border: 1px solid #2DC071;
    background: #FFF;
}

.preview-box .preview-new .preview-btn .turn-left:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/icon_turn_left.png") no-repeat center center;
    background-size: 60%;
}

.preview-box .preview-new .preview-btn .show-detail {
    margin-top: 2.1rem;
    border-radius: 38px;
    border: 1px solid #2DC071;
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 2.1rem;
    width: 25.1rem;
    height: 5.42rem;
    line-height: 5.4rem;
    text-align: center;
    display: block;
}

.preview-box .preview-new .preview-btn .show-detail:hover {
    background: #2DC071;
    color: #ffffff;
}

#contract-me {
    padding-top: 60px;
    background: #fff;
}

#contract-me .title-primary .text {
    position: relative;
    padding-left: 10px;
}

#contract-me .title-primary .text:before {
    content: " ";
    position: absolute;
    left: -2.71rem;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    background: url("../images/icon_contract.png") no-repeat center center;
    background-size: contain;
}

#contract-me .box-body {
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    #contract-me .box-body {
        display: block;
    }
}

#contract-me .contract-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-right: 90px;
}

@media (max-width: 767px) {
    #contract-me .contract-box {
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 20px;
    }
}

#contract-me .contract-box .contract-title {
    color: #8B8B8B;
    font-size: 3.58rem;
}

#contract-me .contract-box .contract-phone {
    padding-top: 28px;
    color: #000;
    font-size: 4.28rem;
}

#contract-me .contract-box .contract-remark {
    color: #686868;
    font-size: 1.7rem;
    letter-spacing: 3px;
    padding-bottom: 28px;
}

#contract-me .contract-box .contract-address {
    width: 80%;
    height: 288px;
    background: url("../images/contract-map.png") no-repeat center center;
}

@media (min-width: 992px) {
    #contract-me .contract-box .contract-address {
        width: 100%;
    }
}

@media (min-width: 1000px) {
    #contract-me .contract-box .contract-address {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    #contract-me .contract-box .contract-address {
        width: 100%;
    }
}

@media (min-width: 1920px) {
    #contract-me .contract-box .contract-address {
        width: 80%;
    }
}

@media (min-width: 2000px) {
    #contract-me .contract-box .contract-address {
        width: 80%;
    }
}

@media (max-width: 767px) {
    #contract-me .contract-box .contract-address {
        width: 100%;
    }
}

#contract-me .contract-from {
    border-radius: 22px;
    border: 1.086px solid #DDD;
    background: #FFF;
    box-shadow: 0px 14.1176557541px 20.6334972382px 0px rgba(0, 0, 0, 0.07);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    #contract-me .contract-from {
        padding: 30px 40px;
    }
}

@media (min-width: 1000px) {
    #contract-me .contract-from {
        padding: 30px 40px;
    }
}

@media (min-width: 1200px) {
    #contract-me .contract-from {
        padding: 30px 40px;
    }
}

@media (min-width: 1920px) {
    #contract-me .contract-from {
        padding: 40px 50px;
    }
}

@media (min-width: 2000px) {
    #contract-me .contract-from {
        padding: 40px 50px;
    }
}

@media (max-width: 767px) {
    #contract-me .contract-from {
        box-shadow: none;
        border-radius: 0;
        padding: 16px;
    }
}

#contract-me .contract-from .shangwu-f {
    margin-top: 20px;
}

@media (max-width: 767px) {
    #contract-me .contract-from .shangwu-f {
        flex: 1;
    }
}

#contract-me .contract-from .shangwu-f .form-group textarea {
    resize: none;
}

#contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 18px;
    }
}

@media (min-width: 1000px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 18px;
    }
}

@media (min-width: 1200px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 18px;
    }
}

@media (min-width: 1920px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (min-width: 2000px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    #contract-me .contract-from .shangwu-f .form-group:not(:last-child) {
        margin-bottom: 20px;
    }
}

#contract-me .contract-from .shangwu-f .form-group .form-control {
    color: #737373;
    background: #F5F5F5;
    border-radius: 42px;
    border: 1.086px solid #E8E8E8;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 20px 22px;
    width: 30vw;
}

#contract-me .contract-from .shangwu-f .form-group .form-control.border20 {
    border-radius: 20px;
}

@media (max-width: 767px) {
    #contract-me .contract-from .shangwu-f .form-group .form-control {
        width: 100%;
        border-radius: 20px;
    }
}

#contract-me .contract-from .shangwu-f .form-group .form-control::-webkit-input-placeholder {
    color: #737373;
}

#contract-me .contract-from .shangwu-f .form-group .btn-default {
    padding: 15px 8px;
    margin-top: 20px;
    width: 38%;
    background: #ffffff;
    color: #252B42;
    border: 1px solid #2DC071;
    border-radius: 80px;
    font-weight: 700;
    line-height: 16px;
    font-size: 1.2rem;
}

#contract-me .contract-from .shangwu-f .form-group .btn-default:focus {
    outline: none;
    background: #ffffff;
    color: #252B42;
    border: 1px solid #2DC071;
}

.title-wrapper {
    color: #1EBF8D;
}

.title-wrapper .first-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 160%;
}

.title-wrapper .second-title {
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 4.5px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .title-wrapper .second-title {
        letter-spacing: 2.5px;
    }
}

.fresh-xuanchuanpian {
    background: url("../images/xuanchuanpian_bg.png") no-repeat 0 0;
    background-size: cover;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .fresh-xuanchuanpian {
        height: calc(100vh - 112px);
    }
}

@media (min-width: 1000px) {
    .fresh-xuanchuanpian {
        height: calc(100vh - 112px);
        background-position-x: -400px;
    }
}

@media (min-width: 1200px) {
    .fresh-xuanchuanpian {
        height: calc(100vh - 112px);
        background-position-x: 0px;
    }
}

@media (min-width: 1920px) {
    .fresh-xuanchuanpian {
        background-position-x: 0;
    }
}

@media (max-width: 767px) {
    .fresh-xuanchuanpian {
        display: block;
    }
}

.fresh-xuanchuanpian .fresh-xuanchuanpian-title {
    padding-right: 2%;
}

@media (min-width: 1000px) {
    .fresh-xuanchuanpian .fresh-xuanchuanpian-title {
        margin-bottom: 680px;
    }
}

@media (min-width: 1200px) {
    .fresh-xuanchuanpian .fresh-xuanchuanpian-title {
        margin-bottom: 0px;
    }
}

@media (min-width: 1920px) {
    .fresh-xuanchuanpian .fresh-xuanchuanpian-title {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .fresh-xuanchuanpian .fresh-xuanchuanpian-title {
        padding-left: 40px;
        padding-top: 40px;
        padding-right: 0;
    }
}

.index-about {
    min-height: 100vh;
    background: linear-gradient(154deg, #09C980 0%, #26BB92 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 767px) {
    .index-about {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

.index-about .bg-img {
    position: absolute;
    width: 650px;
    height: 645px;
    left: 0;
    bottom: 0;
}

@media (min-width: 992px) {
    .index-about .bg-img {
        width: 350px;
        height: 345px;
    }
}

@media (min-width: 1920px) {
    .index-about .bg-img {
        width: 650px;
        height: 645px;
    }
}

@media (max-width: 767px) {
    .index-about .bg-img {
        width: 250px;
        height: 245px;
        top: 0;
        bottom: auto;
        left: auto;
        right: 0;
        transform: rotate(180deg);
    }
}

.index-about .about-title {
    padding-left: 148px;
    margin-bottom: 360px;
    color: #ffffff;
}

@media (min-width: 992px) {
    .index-about .about-title {
        margin-bottom: 100px;
        padding-left: 108px;
    }
}

@media (min-width: 1000px) {
    .index-about .about-title {
        margin-bottom: 100px;
        padding-left: 48px;
    }
}

@media (min-width: 1920px) {
    .index-about .about-title {
        margin-bottom: 360px;
        padding-left: 148px;
    }
}

@media (max-width: 767px) {
    .index-about .about-title {
        margin-top: 40%;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0px;
    }
}

.index-about .about-modal {
    border-radius: 38px;
    background: #ffffff;
    padding: 66px;
    box-shadow: 0px 2.7515723705px 11.0062894821px 0px rgba(0, 0, 0, 0.1), 0px 16.5094337463px 44.0251579285px 0px rgba(0, 0, 0, 0.1), 0px 27.5157241821px 110.0628967285px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .index-about .about-modal {
        padding: 40px;
    }
}

@media (min-width: 1920px) {
    .index-about .about-modal {
        padding: 66px;
    }
}

@media (max-width: 767px) {
    .index-about .about-modal {
        border-radius: 18px;
        padding: 34px 20px;
        margin: 50px 30px 30px 30px;
    }
}

.index-about .about-modal .modal-title {
    color: rgba(0, 0, 0, 0.87);
    font-size: 3.14rem;
    font-weight: 700;
}

.index-about .about-modal .modal-body {
    margin-top: 3.57rem;
    margin-bottom: 3.57rem;
    color: #686868;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 170%;
}

.index-about .about-modal .modal-body .under {
    text-decoration: underline;
}

.index-about .about-modal .modal-foot {
    color: #000;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2.752px;
    padding: 1.5rem 3.14rem;
    border-radius: 22px;
    border: 1px solid #000;
    float: right;
}

.index-shangliu {
    height: 100vh;
    position: relative;
}

@media (min-width: 1000px) {
    .index-shangliu {
        height: 48vh;
    }
}

@media (min-width: 1200px) {
    .index-shangliu {
        height: 100vh;
    }
}

@media (min-width: 1920px) {
    .index-shangliu {
        height: 100vh;
    }
}

@media (min-width: 2000px) {
    .index-shangliu {
        height: 100vh;
    }
}

@media (max-width: 767px) {
    .index-shangliu {
        height: auto;
        margin-bottom: 200px;
    }
}

.index-shangliu .index-shangliu-title {
    height: 142px;
    padding-top: 50px;
    color: #414141;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-shangliu .index-shangliu-bg {
    position: absolute;
    top: calc(142px - 19px);
    left: 0;
    right: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saas-service {
    position: relative;
    margin-top: 4rem;
}

.saas-service .saas-service-title {
    height: 142px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #414141;
}

.saas-service .index-saas-bg {
    margin: 0;
}

.saas-service .index-saas-bg img {
    margin: 0 -1px 0 -1px;
    width: 101%;
}

.saas-service .index-saas-body {
    margin-top: -2px;
    display: flex;
    background: url("../images/saas_bg_3.png") repeat 0 0;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 767px) {
    .saas-service .index-saas-body {
        display: block;
    }
}

.saas-service .index-saas-body .saas-box {
    background: red;
    position: relative;
    overflow: hidden;
}

.saas-service .index-saas-body .saas-box > img {
    width: 100%;
}

.saas-service .index-saas-body .saas-box .box-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.saas-service .index-saas-body .saas-box .box-content .img-logo {
    transition: 0.5s;
    transition-timing-function: linear;
    height: 13.7rem;
    display: flex;
    justify-content: center;
}

.saas-service .index-saas-body .saas-box .box-content .img-logo.small-logo img {
    height: 80%;
}

.saas-service .index-saas-body .saas-box .box-content .img-logo img {
    height: 90%;
    width: auto;
}

.saas-service .index-saas-body .saas-box .box-content .text-box {
    color: #FFF;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 4.5px;
    padding: 0 7rem;
    height: 32rem;
    display: none;
    transition: display 0.5s;
    transition-timing-function: linear;
}

.saas-service .index-saas-body .saas-box .box-content .text-box span {
    text-indent: 57px;
    display: block;
}

.saas-service .index-saas-body .saas-box .box-content:hover .img-logo, .saas-service .index-saas-body .saas-box .box-content.active .img-logo {
    transform: translateY(-8.3rem) scale(0.6);
}

.saas-service .index-saas-body .saas-box .box-content:hover .text-box, .saas-service .index-saas-body .saas-box .box-content.active .text-box {
    display: block;
}

.home-device .home-device-title {
    height: 142px;
    padding-top: 50px;
    color: #414141;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-device .char-title {
    color: #414141;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    text-align: center;
}

.home-device .car-box {
    margin-top: 4rem;
    height: 43rem;
    margin-left: 14rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .home-device .car-box {
        display: flex;
        flex-direction: column;
        margin-left: 16px;
    }
}

.home-device .car-box .car-title {
    position: relative;
    padding-left: 50px;
}

@media (max-width: 767px) {
    .home-device .car-box .car-title {
        padding-left: 50px;
        margin-bottom: 2rem;
        display: inline-block;
    }
}

.home-device .car-box .car-title:before {
    content: " ";
    background: url("../images/icon_car2.png") no-repeat 0 0;
    position: absolute;
    left: 0;
    width: 48px;
    height: 29px;
    top: calc((100% - 29px) / 2);
}

.home-device .car-box .car-video {
    height: 100%;
    margin-left: 2rem;
    flex: 1;
    position: relative;
}

@media (max-width: 767px) {
    .home-device .car-box .car-video {
        margin-left: 0;
    }
}

.home-device .car-box .car-video:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.home-device .car-box .car-video .video-player {
    height: 100%;
    width: 100%;
}

.home-device .device-jd {
    margin-top: 5rem;
}

.home-device .device-jd .jd-content {
    margin-top: 2rem;
    height: 40rem;
}

.case-box {
    margin-top: 70px;
}

@media screen and (max-width: 768px) {
    .case-box {
        margin-top: 30px;
    }
}

.case-box:last-child {
    margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
    .case-box:last-child {
        margin-bottom: 30px;
    }
}

.case-box.case-right .c-box-top .c-box-title {
    right: 0;
}

.case-box.case-right .c-box-top .c-box-title span {
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .case-box.case-right .c-box-top .c-box-title span {
        margin-left: 10px;
    }
}

.case-box.case-right .c-box-top .c-box-body {
    text-align: left;
}

.case-box.case-left .c-box-top .c-box-title {
    left: 0;
}

.case-box.case-left .c-box-top .c-box-title span {
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .case-box.case-left .c-box-top .c-box-title span {
        margin-right: 10px;
    }
}

.case-box.case-left .c-box-top .c-box-body {
    text-align: right;
}

.case-box.case-left .c-box-top .c-box-body .c-box-d-img {
    padding: 30px 0 30px 20px;
    text-align: right;
}

.case-box .c-box-top {
    position: relative;
    height: 608px;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top {
        position: static;
        height: auto;
    }
}

.case-box .c-box-top .c-box-header {
    position: relative;
}

.case-box .c-box-top .c-box-header .c-box-topbg img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-header .c-box-topbg img {
        height: 74px;
    }
}

.case-box .c-box-top .c-box-header .c-box-title {
    padding: 20px 80px;
    position: absolute;
    eight: 116px;
    top: 0;
    font-size: 34px;
    font-weight: 500;
    color: #070707;
    line-height: 51px;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-header .c-box-title {
        font-size: 18px;
        line-height: 30px;
        padding: 10px 24px;
    }
}

.case-box .c-box-top .c-box-header .c-box-title span {
    display: inline-block;
    width: 5px;
    height: 38px;
    background: #1eaa39;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-header .c-box-title span {
        width: 2px;
        height: 16px;
    }
}

.case-box .c-box-top .c-box-body {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-body {
        position: static;
    }
}

.case-box .c-box-top .c-box-body .c-box-d-img {
    display: inline-block;
    background: #ffffff;
    width: 80%;
    padding: 30px 20px 30px 0;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-body .c-box-d-img {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
}

.case-box .c-box-top .c-box-body .c-box-d-img img {
    width: 96%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-top .c-box-body .c-box-d-img img {
        width: 100%;
    }
}

.case-box .c-box-bottom {
    background-color: #F2F3F4;
    padding: 20px 0;
}

.case-box .c-box-bottom .box-header {
    font-size: 18px;
    font-weight: 500;
    color: #010101;
    line-height: 27px;
    padding: 0 0 28px 0;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-header {
        font-size: 16px;
        line-height: 24px;
    }
}

.case-box .c-box-bottom .box-desc {
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc {
        display: block;
    }
}

.case-box .c-box-bottom .box-desc .desc-item {
    flex: 1;
    position: relative;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item.max1 {
        height: 240px;
    }

    .case-box .c-box-bottom .box-desc .desc-item.max1 .item-detail {
        height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item.max2 {
        height: 300px;
    }

    .case-box .c-box-bottom .box-desc .desc-item.max2 .item-detail {
        height: 278px;
    }
}

.case-box .c-box-bottom .box-desc .desc-item:last-child {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item:last-child {
        margin-top: 20px;
    }
}

.case-box .c-box-bottom .box-desc .desc-item:last-child > img {
    right: 0;
}

.case-box .c-box-bottom .box-desc .desc-item:last-child .item-detail {
    right: 40%;
    left: auto;
}

.case-box .c-box-bottom .box-desc .desc-item > img {
    width: 60%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item > img {
        width: 240px;
        height: 240px;
    }
}

.case-box .c-box-bottom .box-desc .desc-item .item-detail {
    text-align: left;
    background: #ffffff;
    position: absolute;
    bottom: 20px;
    width: 316px;
    height: 236px;
    left: 40%;
    padding: 40px 50px 80px 50px;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item .item-detail {
        width: 210px;
        height: 210px;
        bottom: 0;
        padding: 16px 30px 0 30px;
    }
}

.case-box .c-box-bottom .box-desc .desc-item .item-detail .detail-title {
    font-size: 19px;
    font-weight: 500;
    color: #010101;
    line-height: 23px;
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item .item-detail .detail-title {
        font-size: 14px;
    }
}

.case-box .c-box-bottom .box-desc .desc-item .item-detail .detail-info {
    font-size: 8px;
    font-weight: 400;
    color: #85919F;
    line-height: 18px;
}

@media screen and (max-width: 768px) {
    .case-box .c-box-bottom .box-desc .desc-item .item-detail .detail-info {
        font-size: 12px;
    }
}

.about-info {
    position: relative;
}

@media screen and (max-width: 768px) {
    .about-info {
        margin-bottom: 20px;
    }
}

.about-info .bg {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .about-info .bg {
        z-index: 0;
    }
}

.about-info .bg img {
    width: 100%;
    min-height: 60rem;
}

@media screen and (max-width: 768px) {
    .about-info .bg img {
        height: 195px;
        min-height: 195px;
    }
}

.about-info .about-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .about-info .about-wrapper {
        position: static;
    }
}

.about-info .about-wrapper .about-content {
    min-height: 50rem;
    width: 62.9rem;
    margin-left: 18rem;
    padding: 3.2rem 5.7rem 4rem 5.7rem;
    background: #ffffff url("../images/logo_v9.png") no-repeat bottom right;
    box-shadow: 10px 10px 36px 0px rgba(58, 95, 59, 0.1);
    border-radius: 28px;
}

@media screen and (max-width: 768px) {
    .about-info .about-wrapper .about-content {
        margin-top: 0;
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 0 0 100px 0;
        background: transparent url("../images/logo_v9.png") no-repeat bottom right;
        background-size: 32%;
        width: auto;
        height: auto;
        transform: translateY(-57px);
    }

    .about-info .about-wrapper .about-content .about-title, .about-info .about-wrapper .about-content .about-title-2 {
        background: #fff;
        width: 180px;
        height: 32px;
        padding: 8px 0 8px 25px;
    }

    .about-info .about-wrapper .about-content .about-desc {
        padding-top: 10px;
        height: auto;
    }
}

.about-footer {
    background: url("../images/about_footer_bg.png") no-repeat 0 183%;
    background-size: cover;
    padding: 40px;
}

@media (min-width: 992px) {
    .about-footer {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
    .about-footer {
        padding: 20px;
    }
}

@media (min-width: 1920px) {
    .about-footer {
        padding: 40px;
    }
}

@media (min-width: 2000px) {
    .about-footer {
        padding: 40px;
        background: url("../images/about_footer_bg.png") no-repeat 0 163%;
        background-size: cover;
    }
}

@media screen and (max-width: 768px) {
    .about-footer {
        padding: 16px;
        background: url("../images/about_footer_bg.png") no-repeat 0 0;
        background-size: contain;
        position: static;
    }
}

.about-footer .about-footer-body {
    border-radius: 25px;
    background: #000000;
    padding: 0 20px 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .about-footer .about-footer-body {
        display: block;
    }
}

.about-footer .about-footer-body .video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: calc((100% - 40px - 6rem) / 3);
}

@media screen and (max-width: 768px) {
    .about-footer .about-footer-body .video-item {
        width: 80vw;
        margin-bottom: 20rem;
    }
}

.about-footer .about-footer-body .video-item > img {
    width: 100%;
    cursor: pointer;
    object-fit: contain;
}

.about-footer .about-footer-body .video-item .box-hub {
    border-radius: 21px;
    border: 1px solid #000;
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    width: 22rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    transform: translateY(calc(40px + 4rem + 6rem));
}

@media screen and (max-width: 768px) {
    .about-footer .about-footer-body .video-item .box-hub {
        transform: translateY(calc(40px + 6rem));
        width: 80vw;
        height: 8rem;
    }
}

.about-title {
    font-size: 4.3rem;
    font-weight: 500;
    color: #070707;
    line-height: 4rem;
}

.about-desc {
    font-size: 1.28rem;
    font-weight: 400;
    color: #707070;
    line-height: 2.1rem;
}

@media screen and (max-width: 768px) {
    .about-desc {
        line-height: 3rem;
    }
}

.about-desc strong {
    color: rgba(92, 92, 92, 0.79);
}

.about-desc span {
    display: block;
    text-indent: 25px;
}

@media screen and (max-width: 768px) {
    .about-desc span {
        padding-bottom: 10px;
    }
}

.about-title-2 {
    font-size: 1.7rem;
    font-weight: 400;
    color: #85919F;
    line-height: 3rem;
    padding: 4px 0 20px 0;
}

#shiming {
    margin-top: calc(4rem + 6rem);
}

#shiming .shiming-top {
    margin: 40px auto;
    background: url("../images/big_logo_v1.png") no-repeat left center;
    background-size: 24%;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-top {
        padding-left: 16px;
        padding-right: 16px;
        background-size: 100%;
    }
}

#shiming .shiming-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #D8D8D8;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-wrapper {
        flex-direction: column;
        margin-bottom: 8rem;
    }
}

#shiming .shiming-wrapper .shiming-img {
    width: 28rem;
}

#shiming .shiming-wrapper .shiming-img > img {
    width: 80%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-wrapper .shiming-img > img {
        width: auto;
        max-width: 100%;
    }
}

#shiming .shiming-wrapper .shipming-content {
    flex: 1;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-wrapper .shipming-content .shiming-title, #shiming .shiming-wrapper .shipming-content .shipming-title2 {
        text-align: center;
    }
}

#shiming .shiming-title {
    padding-top: 2.8rem;
    color: #3C3C3C;
    font-size: 2.14rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-title {
        font-size: 2.5rem;
    }
}

#shiming .shipming-title2 {
    color: #000;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 3.5px;
}

@media screen and (max-width: 768px) {
    #shiming .shipming-title2 {
        letter-spacing: 2.5px;
    }
}

#shiming .dingwei {
    border-bottom: 1px solid #D8D8D8;
}

#shiming .align-top {
    text-align: center;
}

#shiming .h-box {
    margin: 0 auto;
    border-bottom: 1px solid #D8D8D8;
}

#shiming .shiming-box .shiming-box-header {
    color: #000;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    margin: 20px 0 30px 0;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .shiming-box-header {
        text-align: center;
    }
}

#shiming .shiming-box .shiming-box-body {
    color: #707070;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.8rem;
}

#shiming .shiming-box .shiming-box-body > span {
    display: block;
}

#shiming .shiming-box .shiming-box-body2 {
    text-align: center;
}

#shiming .shiming-box .shiming-box-body2 p {
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .shiming-box-body2 p {
        display: inline;
        margin-top: 0;
    }
}

#shiming .shiming-box .shiming-box-body2 p img:not(:last-child) {
    margin-right: 2rem;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .shiming-box-body2 p img:not(:last-child) {
        margin-right: 0;
    }
}

#shiming .shiming-box .shiming-box-body2 p img {
    object-fit: contain;
    width: 13.57rem;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .shiming-box-body2 p img {
        width: 48vw;
        margin-bottom: 4rem;
    }
}

#shiming .shiming-box .ab-body {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .ab-body {
        display: block;
        width: calc(100% - 1.6rem * 2);
    }
}

#shiming .shiming-box .ab-body .ab-item {
    flex: 1;
    padding: 6px 8px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .ab-body .ab-item {
        margin-bottom: 10px;
    }
}

#shiming .shiming-box .ab-body .ab-item:hover {
    background-color: #1eaa39;
    color: #ffffff;
}

#shiming .shiming-box .ab-body .ab-item:hover .ab-item-title {
    color: #ffffff;
}

#shiming .shiming-box .ab-body .ab-item:hover .ab-item-content ul > li {
    color: #ffffff;
}

#shiming .shiming-box .ab-body .ab-item:hover .ab-item-content ul > li:before {
    background: #ffffff;
}

#shiming .shiming-box .ab-body .ab-item .ab-item-title {
    font-size: 36px;
    font-weight: 450;
    color: #070707;
    line-height: 41px;
    margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .ab-body .ab-item .ab-item-title {
        color: #1eaa39;
    }
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .ab-body .ab-item .ab-item-content {
        height: auto;
    }
}

#shiming .shiming-box .ab-body .ab-item .ab-item-content ul > li {
    position: relative;
    padding-left: 18px;
}

#shiming .shiming-box .ab-body .ab-item .ab-item-content ul > li:before {
    content: " ";
    position: absolute;
    height: 6px;
    left: 0;
    top: calc((100% - 6px) / 2);
    width: 6px;
    background: #CACACA;
}

@media screen and (max-width: 768px) {
    #shiming .shiming-box .ab-body .ab-item .ab-item-content ul > li:before {
        background: #1eaa39;
    }
}

#fazhan {
    margin-top: 2rem;
}

#fazhan .fazhan-header {
    background: #f5fff8;
    background-size: cover;
    height: 24.2rem;
}

@media screen and (max-width: 768px) {
    #fazhan .fazhan-header {
        background: #f5fff8;
        background-size: cover;
    }
}

#fazhan .fazhan-header .shiming-title, #fazhan .fazhan-header .shipming-title2 {
    color: #252525;
}

#fazhan .fazhan-header .time-line {
    margin-top: 2rem;
    width: 100rem;
    margin-left: calc((100% - 62rem) / 2);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 160%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#fazhan .fazhan-header .time-line li {
    position: relative;
    width: calc(62rem / 4);
}

#fazhan .fazhan-header .time-line li a {
    color: #bababa;
    display: block;
    padding-top: 28px;
    position: relative;
    z-index: 5;
}

#fazhan .fazhan-header .time-line li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/icon_cicle.png") no-repeat 0 0;
    height: 28px;
    width: 28px;
}

#fazhan .fazhan-header .time-line li:after {
    content: " ";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 0;
    height: 3px;
    background: #FFF;
}

#fazhan .fazhan-header .time-line li:last-child:after {
    content: none;
}

#fazhan .fazhan-box {
    width: 100rem;
    margin: 2rem auto;
    overflow-x: scroll;
    overflow-y: scroll;
    height: 50rem; /* 关键：由 60 rem → 80 rem */
    border-bottom: 1px solid #D8D8D8;
}

@media screen and (max-width: 768px) {
    #fazhan .fazhan-box {
        width: calc(100% - 2rem * 2);
    }
}

#fazhan .fazhan-body {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#fazhan .fazhan-body .fazhan-item {
    width: 32rem;
}

#fazhan .fazhan-body .fazhan-item:not(:last-child) {
    margin-right: 1.5rem;
}

#fazhan .fazhan-body .fazhan-item .item-line {
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
}

#fazhan .fazhan-body .fazhan-item .item-line .line-date {
    width: 4rem;
}

#fazhan .fazhan-body .fazhan-item .item-line .line-content {
    flex: 1;
    line-height: 1.4;
}

#fazhan .fazhan-body .fazhan-item .fazhan-title {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 450;
    line-height: 3rem;
    position: relative;
    padding-bottom: 20px;
}

#fazhan .fazhan-body .fazhan-item .fazhan-title:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 9px;
    background: #D2D2D7;
}

#fazhan .fazhan-body .fazhan-item .line-content, #fazhan .fazhan-body .fazhan-item .line-date {
    color: #707070;
    font-size: 1.28rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}

#new-center-page .title span {
    color: #000;
}

#new-center-page .title span:last-child {
    color: #85919F;
}

.new-search {
    margin-top: 40px;
    float: right;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .new-search {
        width: 100%;
        padding: 0 4px;
        margin-top: 20px;
        max-width: 100%;
    }
}

.new-search .input-wrapper {
    position: relative;
}

.new-search .input-wrapper .form-control {
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    -webkit-box-shadow: none;
    outline: none;
    border-radius: 86px;
    padding: 20px 50px 20px 22px;
}

.new-search .input-wrapper .form-control:focus {
    outline: none;
}

.new-search .input-wrapper .form-control::-webkit-input-placeholder {
    color: #D1D1D1;
}

.new-search .input-wrapper .input-btn {
    width: 30px;
    height: 30px;
    color: #2DC071;
    font-size: 20px;
    font-weight: 100;
    position: absolute;
    right: 10px;
    top: calc((100% - 30px) / 2);
    cursor: pointer;
}

.new-list {
    padding: 0 40px;
}

@media screen and (max-width: 768px) {
    .new-list {
        padding: 0;
    }
}

.new-list .preview-box {
    margin-top: 80px;
    padding-left: 0;
    height: 38rem;
}

@media screen and (max-width: 768px) {
    .new-list .preview-box {
        margin-top: 40px;
        justify-content: flex-end;
        position: relative;
    }

    .new-list .preview-box .preview-new {
        width: 232px;
        left: 0;
    }

    .new-list .preview-box .preview-img {
        position: absolute;
        left: 0;
    }
}

.btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.btn-wrapper .show-more-btn {
    cursor: pointer;
    color: #000;
    font-size: 2rem;
    border-radius: 36px;
    border: 1px solid #454545;
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
    padding: 16px;
    width: 22rem;
    text-align: center;
}

.shangwu {
    padding-top: 60px;
}

.shangwu .shangwu-header {
    display: flex;
    justify-content: center;
}

.shangwu .shangwu-header .header {
    color: #3C3C3C;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 160%;
    display: block;
}

.shangwu .shangwu-header .res {
    color: #000;
    font-size: 1.3rem;
    line-height: 160%;
    letter-spacing: 4.5px;
    display: block;
}

.shangwu .shangwu-body {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .shangwu .shangwu-body {
        display: block;
    }
}

.shangwu .shangwu-body .shangwu-contract {
    margin-left: 112px;
}

.shangwu .shangwu-body .shangwu-contract h4 {
    color: #404040;
    font-size: 4rem;
}

.shangwu .shangwu-body .shangwu-contract .info {
    color: #8B8B8B;
    font-size: 2rem;
}

.shangwu .shangwu-body .shangwu-contract .link {
    padding-top: 30px;
    color: #000;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.shangwu .shangwu-body .shangwu-contract .link-card {
    display: block;
    margin-top: 30px;
    border-radius: 150px;
    background: #FFF;
    box-shadow: 2px 3px 16px 0px rgba(0, 0, 0, 0.15);
    padding: 10px 20px;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.shangwu .shangwu-body .shangwu-contract .link-card:hover {
    background: #2DC071;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .shangwu .shangwu-body .shangwu-contract {
        margin-left: 0px;
        padding: 20px;
    }
}

.shangwu .contract-box2 {
    border-radius: 37px;
    background: #FFF;
    box-shadow: 2px 3px 16px 0px rgba(0, 0, 0, 0.15);
    width: 110rem;
    /*margin-left: calc((100% - 110rem) / 2);*/
    display: flex;
    justify-content: center;
    padding: 1.42rem;
}

.shangwu .contract-box2:hover, .shangwu .contract-box2.active {
    background: #2DC071;
}

.shangwu .contract-box2:hover .box2-title, .shangwu .contract-box2:hover .box2-info, .shangwu .contract-box2.active .box2-title, .shangwu .contract-box2.active .box2-info {
    color: #ffffff;
}

.shangwu .contract-box2:hover .box2-wrapper:after, .shangwu .contract-box2.active .box2-wrapper:after {
    background: url("../images/icon_turn_right_white.png") no-repeat 0 0;
    background-size: contain;
    right: -20rem;
}

@media screen and (max-width: 768px) {
    .shangwu .contract-box2:hover .box2-wrapper:after, .shangwu .contract-box2.active .box2-wrapper:after {
        right: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .shangwu .contract-box2 {
        width: auto;
        margin: 0 20px;
        padding: 10px;
    }
}

.shangwu .contract-box2 .box2-wrapper {
    width: 368px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.shangwu .contract-box2 .box2-wrapper:after {
    content: " ";
    position: absolute;
    right: 0;
    transition: right 0.4s;
    top: calc((100% - 2.8rem) / 2);
    width: 1.8rem;
    height: 2.8rem;
    background: url("../images/icon_turn_right_green.png") no-repeat 0 0;
    background-size: contain;
}

.shangwu .contract-box2 .box2-title {
    color: #3C3C3C;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 160%;
}

.shangwu .contract-box2 .box2-info {
    color: #000;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 4.5px;
}

@media screen and (max-width: 768px) {
    .shangwu .contract-box2 .box2-info {
        letter-spacing: 2px;
    }
}

#complaint_suggestions, #join-us {
    margin-top: 3rem;
}

/*返回到顶部*/
.gototop {
    display: none;
    border-radius: 50%;
    background: #fff;
    width: 47px;
    height: 47px;
    text-align: center;
    position: fixed;
    z-index: 20000;
    right: 79px;
    bottom: 58px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .gototop {
        right: 8rem;
        bottom: 8rem;
    }
}

.gototop.active {
    display: block;
}

.gototop a {
    border-radius: 50%;
    background: #fff;
    width: 47px;
    height: 47px;
    display: block;
    line-height: 47px;
    color: #5DD86A;
}

.error-page {
    position: relative;
}

@media screen and (max-width: 768px) {
    .error-page {
        padding-left: 0;
        padding-right: 0;
    }
}

.error-page .box {
    margin-top: 8vh;
    display: inline-block;
}

.error-page .box .bg img {
    width: 60%;
}

@media screen and (max-width: 768px) {
    .error-page .box .bg img {
        width: 90%;
    }
}

.error-page .box .man {
    position: absolute;
    left: 550px;
    bottom: 290px;
}

@media screen and (max-width: 768px) {
    .error-page .box .man {
        position: static;
        left: 150px;
        bottom: 290px;
        text-align: center;
    }
}

.error-page .box .man .message {
    color: #6C4476;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .error-page .box .man .message {
        font-size: 1rem;
    }
}

.error-page .box .man .alert-label {
    color: #738F9F;
    font-size: 1rem;
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    .error-page .box .man .alert-label {
        font-size: 10px;
    }
}

.error-page .box .man .img-btn {
    position: absolute;
    right: -30px;
}

@media screen and (max-width: 768px) {
    .error-page .box .man .img-btn {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .error-page .box .man .img-btn img {
        width: 20%;
    }
}

.video-play-mask {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999;
}

.video-play-mask .video-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%) translateY(-50%);
}

.video-play-mask .video-wrap .video-player {
    width: 45vw;
}

@media screen and (max-width: 768px) {
    .video-play-mask .video-wrap .video-player {
        width: 98vw;
    }
}

.video-play-mask .video-wrap .close-btn {
    margin-top: 60px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/close_icon.png) center/cover no-repeat;
    cursor: pointer;
}

.navbar-solt {
    height: 80px;
}

@media (min-width: 992px) {
    .navbar-solt {
        height: 112px;
    }
}

/*# sourceMappingURL=site.css.map */

/* ============  jiazhiguan.jpg 居中自适应  ============ */
.responsive-center {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 1920:1080 ≈ 56.25% */
    overflow: hidden;
}

.responsive-center img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .responsive-center {
        max-width: 100%;
        padding-bottom: 56.25%;
    }
}

/* ========= fazhan_bg.png 1920×342 固定高度 + 时间线绝对居中 ========= */
#fazhan .fazhan-header {
    position: relative;
    width: 100%;
    height: 25rem; /* 342px ≈ 34.2rem（按 10px=1rem） */
    background: #ffffff;
    margin-bottom: -90px;
}

/* 时间线永远水平+垂直居中 */
#fazhan .fazhan-header .time-line {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100rem; /* 保持你原来的 62rem 宽度 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem /* 去掉原来 margin-left 计算 */
}

/* 移动端：高度 28.4rem ≈ 284px，其余不变 */
@media screen and (max-width: 768px) {
    #fazhan .fazhan-header {
        height: 28.4rem;
    }

    #fazhan .fazhan-header .time-line {
        width: 90%; /* 让时间线在手机屏上略缩一点，也可保持 62rem 不变 */
        max-width: 62rem;
    }
}

#service-youshi .box-body .box-cards .card-wrapper .card .label-header label {
    margin-bottom: 0 !important;
}

/* ========= 服务能力 6 张图片自适应居中 ========= */
#shiming .shiming-box {
    /* 让图片容器变成弹性盒子 */
    display: flex;
    justify-content: center;
    align-items: center;
}

#shiming .shiming-box img.pc {
    /* 宽度自适应，最大原图宽度 */
    max-width: 100%;
    height: auto;
    display: block; /* 去掉底部空隙 */
}

/* =========== Service Capacity 专属样式 =========== */
.service-capacity {
    margin-top: 3rem;
}


.service-capacity .capacity-top {
    margin: 40px auto;
    background: url("../images/big_logo_v1.png") no-repeat left center;
    background-size: 24%;
}

@media screen and (max-width: 768px) {
    .service-capacity .capacity-top {
        padding-left: 16px;
        padding-right: 16px;
        background-size: 100%;
    }
}

/* 每一块能力 */
.service-capacity .capacity-item {
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid #D8D8D8;
}

@media screen and (max-width: 768px) {
    .service-capacity .capacity-item {
        margin-bottom: 8rem;
    }
}

.service-capacity .capacity-title {
    padding-top: 2.8rem;
    color: #3C3C3C;
    font-size: 2.14rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .service-capacity .capacity-title {
        font-size: 2.5rem;
    }
}

.service-capacity .capacity-subtitle {
    color: #000;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 3.5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .service-capacity .capacity-subtitle {
        letter-spacing: 2.5px;
    }
}

/* 图片区域 */
.service-capacity .capacity-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.service-capacity .capacity-img-box img.pc {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
}

/* =================  使命 / 愿景 / 定位 / 价值观 通用  ================= */
#shiming .shiming-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #D8D8D8;
}

#shiming .shiming-wrapper .shiming-img {
    width: 28rem;
    flex-shrink: 0;
}

#shiming .shiming-wrapper .shiming-img img {
    width: 100%;
    height: auto;
    display: block;
}

#shiming .shiming-wrapper .shiming-content {
    flex: 1;
    padding-left: 4rem;
}

/* 标题 & 副标题 */
#shiming .sh-title {
    font-size: 2.14rem;
    font-weight: 700;
    color: #3C3C3C;
    line-height: 160%;
}

#shiming .sh-subtitle {
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 3.5px;
    line-height: 160%;
    margin-bottom: 1.5rem;
}

/* 内容盒子 */
#shiming .sh-box {
}

#shiming .sh-box-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

#shiming .sh-box-body {
    font-size: 1.4rem;
    line-height: 2.8rem;
    color: #707070;
}

#shiming .sh-box-body span {
    display: block;
    margin-bottom: 1rem;
}

/* 企业定位：纯文字，占满整行 */
#shiming .dingwei {
    border-bottom: 1px solid #D8D8D8;
}

#shiming .sh-content-full {
    width: 100%;
    text-align: center;
    padding: 2.8rem 0;
}

#shiming .align-top {
    text-align: center;
}

/* 手机端：图片在上，文字在下，均居中 */
@media screen and (max-width: 768px) {
    #shiming .shiming-wrapper {
        flex-direction: column;
        margin-bottom: 8rem;
    }

    #shiming .shiming-wrapper .shiming-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    #shiming .shiming-wrapper .shiming-content {
        padding-left: 0;
        text-align: center;
    }
}

/* 鼠标悬停时，按钮文字和背景一起变成 #1eaa39 */
.about-footer-body .video-item:hover .box-hub {
    background-color: #1eaa39 !important;
    color: #ffffff !important;
}

.contract-map-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 19.96%; /* 511 ÷ 2560 ≈ 19.96% */
    position: relative;
    overflow: hidden;
}

.contract-map-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保证整张图完整显示，不被裁切 */
    image-rendering: crisp-edges; /* 锐化（Firefox）*/
}

/* >>> 商务合作新样式 */
.shangwu-body {
    position: relative; /* 让文字可以浮在图上方 */
}

.shangwu-body .image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文字排版 */
.shangwu-text {
    margin-top: 4rem;
    text-align: center;
}

.shangwu-text .text-cn {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: .5rem;
}

.shangwu-text .text-cn .link-text {
    color: #1eaa39; /* 指定色号 */
    font-weight: 700;
}

.shangwu-text .text-cn .link-sub {
    color: #000000;
    margin-left: 1rem;
}

.shangwu-text .text-en {
    font-size: 1.6rem;
    color: #8B8B8B;
    letter-spacing: .05em;
    margin-bottom: 2rem;
}

/* 链接按钮保持原样 */
.shangwu-text .link-card {
    display: inline-block;
    margin-bottom: 3rem;
    border-radius: 150px;
    background: #FFF;
    box-shadow: 2px 3px 16px 0 rgba(0, 0, 0, .15);
    padding: 10px 20px;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .2px;
    transition: .3s;
}

.shangwu-text .link-card:hover {
    background: #2DC071;
    color: #ffffff;
}

/* 电话区 */
.tel-box h4 {
    color: #1eaa39; /* 指定色号 */
    font-size: 4rem;
    margin-bottom: .8rem;
}

.tel-box .tel-desc {
    color: #000000;
    font-size: 2rem;
}

/* 底部两个按钮水平居中 */
.bottom-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}


/*--------------------------*/
/*==========  shangwuhezuo.png 背景图布局  ==========*/
.shangwu-bgbox {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.shangwu-bgbox .bg-img {
    width: 100%;
    display: block;
}

.shangwu-bgbox .bg-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateY(-1rem);
}

/* 合作热线 */
.shangwu-bgbox .tel-box {
    text-align: center;
    margin: 0;
}

.shangwu-bgbox .tel-box h4 {
    font-size: 4rem;
    color: #1eaa39;
    margin-bottom: .8rem;
}

.shangwu-bgbox .tel-desc {
    font-size: 2rem;
    color: #000;
}

/* 水平按钮组 */
.shangwu-bgbox .bottom-links {
    display: flex;
    gap: 4rem;
}

@media (max-width: 768px) {
    .shangwu-bgbox .bottom-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* 卡片本身 */
#partner .partner-cards .partner-card {
    transition: background-color .3s ease;
}

#partner .partner-cards .partner-card:hover {
    background-color: #1eaa39;
}

/* 卡片里的标题文字 */
#partner .partner-cards .partner-card .card-header {
    transition: color .3s ease;
}

#partner .partner-cards .partner-card:hover .card-header {
    color: #fff;
}

/* ---------- 时间线圆点 ---------- */
/* ===== 时间线横线 & 圆点一起变绿 ===== */
#fazhan .fazhan-header .time-line li {
    position: relative;
}

/* 横线基础色 */
#fazhan .fazhan-header .time-line li:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 0;
    height: 3px;
    background: #6bd485;
    transition: background .3s;
}

/* 圆点 */
#fazhan .fazhan-header .time-line li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6bd485;
    border: 2px solid #6bd485;
    box-shadow: 0 0 0 2px #6bd485;
    transition: all .3s;
    z-index: 2;
}

/* 悬停时：圆点 + 横线同时变绿 */
#fazhan .fazhan-header .time-line li:hover:before {
    background: #1eaa39;
    box-shadow: 0 0 2px #1eaa39;
}

#fazhan .fazhan-header .time-line li:hover:after {
    background: #1eaa39;
}

/* ---------- 卡片悬停 ---------- */
#fazhan .fazhan-body .fazhan-item {
    transition: background-color .3s, color .3s;
    cursor: pointer;
}

#fazhan .fazhan-body .fazhan-item:hover {
    background: #1eaa39;
    color: #fff;
}

#fazhan .fazhan-body .fazhan-item:hover .fazhan-title,
#fazhan .fazhan-body .fazhan-item:hover .line-date,
#fazhan .fazhan-body .fazhan-item:hover .line-content {
    color: #fff;
}

#fazhan .fazhan-body .fazhan-item:hover .fazhan-title:after {
    background: #fff;
}

/* 激活状态的时间节点样式 */
.time-node.active a {
    color: #1eaa39;
    font-weight: bold;
}

.time-node.active:before {
    background: #1eaa39;
    box-shadow: 0 0 0 2px #1eaa39;
}

.time-node.active:after {
    background: #1eaa39;
}

/* 发展历程项显示控制 */
.fazhan-item {
    display: none; /* 默认隐藏所有年份 */
}

/* 确保容器高度固定 */
.fazhan-box {
    height: 600px;
    overflow-y: auto;
    border-bottom: 1px solid #D8D8D8;
}

/* ============ 荣誉资质轮播样式 ============ */
.honor-carousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.carousel-arrow {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #1eaa39;
}

.carousel-arrow:hover img {
    filter: brightness(0) invert(1); /* 箭头变白色 */
}

.ab-body {
    display: flex;
    width: calc(100% - 100px); /* 减去箭头宽度 */
    overflow: hidden;
    margin: 0 auto;
}

.ab-item {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* ===== 发展历程卡片间距调整 ===== */
#fazhan .fazhan-body .fazhan-item {
    padding: 15px 10px; /* 增加内边距 */
    border-radius: 15px; /* 添加圆角 */
    transition: all 0.3s ease;
}

/* 年份标题 */
#fazhan .fazhan-body .fazhan-item .fazhan-title {
    padding-bottom: 25px; /* 增加标题下方间距 */
    margin-bottom: 20px; /* 添加底部外边距 */
}

/* 事件行 */
#fazhan .fazhan-body .fazhan-item .item-line {
    padding-top: 12px; /* 增加行间距 */
    margin-bottom: 8px;
}

/* ===== 荣誉资质卡片间距调整 ===== */
#shiming .shiming-box .ab-body .ab-item {
    padding: 15px 10px; /* 增加内边距 */
    border-radius: 15px; /* 添加圆角 */
    margin: 0 10px; /* 增加卡片间距 */
    transition: all 0.3s ease;
}

/* 荣誉年份标题 */
#shiming .shiming-box .ab-body .ab-item .ab-item-title {
    margin-bottom: 25px; /* 增加标题下方间距 */
    padding-bottom: 15px; /* 添加底部内边距 */
    border-bottom: 1px solid rgba(202, 202, 202, 0.3); /* 添加分隔线 */
}

/* 荣誉列表项 */
#shiming .shiming-box .ab-body .ab-item .ab-item-content ul > li {
    padding-left: 25px; /* 增加左侧间距 */
    margin-bottom: 15px; /* 增加列表项间距 */
}

/* ===== 卡片悬停效果优化 ===== */
#fazhan .fazhan-body .fazhan-item:hover,
#shiming .shiming-box .ab-body .ab-item:hover {
    transform: translateY(-5px); /* 添加轻微上浮效果 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* 添加阴影增强层次感 */
}

/* ===== 荣誉资质卡片年份分隔线 ===== */
#shiming .shiming-box .ab-body .ab-item .ab-item-title {
    position: relative;
    padding-bottom: 15px; /* 增加标题下方间距 */
    margin-bottom: 15px;
}

/* 添加与发展历程一致的分隔线 */
#shiming .shiming-box .ab-body .ab-item .ab-item-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 9px;
    background: #D2D2D7; /* 使用与发展历程相同的灰色 */
    transition: all 0.3s ease;
}

/* 悬停状态下的分隔线 */
#shiming .shiming-box .ab-body .ab-item:hover .ab-item-title::after {
    background: #ffffff; /* 悬停时变为白色 */
}

/* ===== 发展历程文案左对齐 ===== */
#fazhan .fazhan-body .fazhan-item .line-content,
#fazhan .fazhan-body .fazhan-item .line-date {
    text-align: left;
    word-wrap: break-word;
    hyphens: auto;
    text-align-last: left;
}

/* 内容部分添加合理的换行 */
#fazhan .fazhan-body .fazhan-item .line-content {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

/* ===== 荣誉资质文案左对齐 ===== */
#shiming .shiming-box .ab-body .ab-item .ab-item-content ul > li {
    text-align: left;
    word-wrap: break-word;
    hyphens: auto;
    text-align-last: left;
    padding-right: 15px; /* 添加右侧内边距防止文本贴边 */
}

/* 荣誉资质内容添加合理的换行 */
#shiming .shiming-box .ab-body .ab-item .ab-item-content ul {
    text-align: justify;
    text-justify: inter-word;
}

/* ===== 修复发展历程卡片悬停问题 ===== */
#fazhan .fazhan-body .fazhan-item {
    position: relative;
    padding: 25px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    z-index: 1; /* 确保卡片在正常层级 */
    border: 1px solid transparent; /* 添加透明边框保持布局稳定 */
}

/* 添加悬停状态下的完整背景 */
#fazhan .fazhan-body .fazhan-item:hover {
    background: #1eaa39;
    transform: none; /* 移除之前的变换效果 */
    z-index: 2; /* 确保悬停卡片位于顶层 */
    border-color: #1eaa39; /* 添加边框颜色 */
}

/* ===== 修复荣誉资质卡片悬停问题 ===== */
#shiming .shiming-box .ab-body .ab-item {
    position: relative;
    padding: 25px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    z-index: 1; /* 确保卡片在正常层级 */
    border: 1px solid transparent; /* 添加透明边框保持布局稳定 */
}

/* 添加悬停状态下的完整背景 */
#shiming .shiming-box .ab-body .ab-item:hover {
    background: #1eaa39;
    transform: none; /* 移除之前的变换效果 */
    z-index: 2; /* 确保悬停卡片位于顶层 */
    border-color: #1eaa39; /* 添加边框颜色 */
}

/* 时间线年份文字悬停变色 */
#fazhan .fazhan-header .time-line li:hover a {
    color: #1eaa39;
    transition: color .3s;
}

/* ===== 移动端发展历程专用 ===== */
@media screen and (max-width: 768px) {

    /* 1) 年份字号/排版调整 */
    #fazhan .fazhan-header .shiming-title {
        font-size: 2.2rem; /* 主标题缩小 */
        margin-bottom: .5rem;
    }

    #fazhan .fazhan-header .shipming-title2 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    /* 2) 默认只展示 1 年：隐藏除第一个外的所有卡片 */
    #fazhan .fazhan-body .fazhan-item {
        display: none;
    }

    #fazhan .fazhan-body .fazhan-item[data-target="2016"] {
        display: block;
    }

    /* 卡片内文案排版 */
    #fazhan .fazhan-body .fazhan-item {
        padding: 10px 5px;
        font-size: 1.2rem;
    }

    #fazhan .fazhan-body .fazhan-item .fazhan-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    #fazhan .fazhan-body .fazhan-item .item-line {
        margin-bottom: 5px;
        line-height: 1.2;
    }

    #fazhan .fazhan-body .fazhan-item .line-date {
        width: 2.2rem;
        font-size: 1.2rem;
    }
}

/* ===== 荣誉横幅整体放大 ===== */
.honor-zoom-wrapper {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s ease; /* 新增：让容器本身可平滑放大 */
    border-bottom: 1px solid rgba(202, 202, 202, 0.3); /* 添加分隔线 */
}

.honor-zoom-track {
    display: flex;
    width: calc(3000px * 2);
    animation: zoomScroll 50s linear infinite;
}

@keyframes zoomScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-3000px);
    }
}

/* 悬停：停止滚动 + 放大整个容器 */
.honor-zoom-wrapper:hover {
    animation-play-state: paused; /* 让内部动画暂停 */
    transform: scale(1.15); /* 放大整个容器 */
}

@media (max-width: 768px) {
    .honor-zoom-track {
        width: calc(100vw * 2);
        animation: zoomScrollMobile 20s linear infinite;
    }

    @keyframes zoomScrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100vw);
        }
    }

    /* 移动端缩小放大倍数 */
    .honor-zoom-wrapper:hover {
        transform: scale(1.05); /* 从 1.1 → 1.05 */
    }
}

/* ========= 移动端：联系我们的两行标题字号缩小 ========= */
@media (max-width: 768px) {
    /* 中文标题 */
    .contract-box .contract-title:nth-of-type(1){
        font-size: 2.5rem !important;   /* 原来是 3.58rem ≈ 36px，现在 ≈ 20px */
    }

    /* 英文标题 */
    .contract-box .contract-title:nth-of-type(2){
        font-size: 2.2rem !important;  /* 原来是 34px，现在 ≈ 16px */
    }
}

/*===== 移动端：把热线往下挪一点 =====*/
@media (max-width: 767px) {
    /* 第二个 .tel-box（热线）单独加间距 */
    .shangwu-bgbox .tel-box:nth-of-type(2) {
        margin-top: -30px;   /* 可根据需要再微调 */
    }
}