/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    transition: all 300ms;
}

:root {
    --primary-color: #1575FF;
    --text-color: #121212;
    --light-bg: #f5f5f5;
    --gray-bg: linear-gradient(240deg, #F3F6FB 0%, #F3F6FB 100%);
    --board-width: 1192px;
    --border-color: #F1F1F1;
    --section-wrap-pc-padding: 90px;
    --section-wrap-m-padding: 30px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.scrollable-element {
    overflow: auto;
    scrollbar-width: thin;
}

.scrollable-element::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scrollable-element::-moz-scrollbar {
    width: 0;
    height: 0;
}

.scrollable-element::-ms-scrollbar {
    width: 0;
    height: 0;
}

.gray-bg {
    background: var(--gray-bg);
}

.hidden {
    overflow: hidden;
}

.container {
    max-width: 90%;
    width: var(--board-width);
    margin: 0 auto;
}

.row {
    display: flex;
    align-items: center;
}

.single-line-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.contact-navbar {
    background-color: #212121;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar .container {
    width: 93.33vw;
    max-width: 93.33vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.navbar .row {
    gap: calc(2.5% * 100vw);
}

.navbar .contact-btn {
    width: 116px;
    height: 40px;
    line-height: 40px;
    background: #1575FF;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 6px;
}

.navbar .logo {
    margin-right: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo .logo-img{
    width: 59px;
    height: 40px;
    background: url('../images/logo.png') no-repeat center center;
    background-size: contain;
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: none; /* 默认隐藏文字 */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;

}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #a6a6a6;
    cursor: pointer;
    z-index: 1001;
}

/* 添加遮罩层样式 */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

.nav-toggle {
    display: none;
}

/* Hero 部分 */
.hero {
    height: 44.375vw;
    background: url('../images/hero-bg.jpg') no-repeat top center;
    background-size: cover;
    color: white;
}

.hero-content {
    padding-top: 13vw;
    padding-left: 10.26vw;
    display: inline-flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.hero-content p {
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 44px;
}

.qr-code img {
    width: 9.427vw;
    height: 9.427vw;
}


/* 特性部分 */
.about-features {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.about-features .feature-card {
    width: 384px;
    height: 350px;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 24px 24px 38px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-features .feature-card:hover {
    transform: translateY(-5px);
}

.about-features .feature-card img {
    width: 100%;
}

.about-features .feature-card h3 {
    padding: 13px 0 10px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.about-features .feature-card p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.section-wrap {
    padding: var(--section-wrap-pc-padding) 0;
}

.section-title-wrap {
    position: relative;
    width: 500px;
    height: 52px;
    line-height: 52px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    position: absolute;
    left: calc(50% - 250px);
    top: 0;
    width: 500px;
    z-index: 2;
    font-weight: 600;
    font-size: 36px;
    color: #121212;
    font-style: normal;
}

.section-title-en {
    position: absolute;
    left: calc(50% - 250px);
    top: 0;
    width: 500px;
    z-index: 1;
    margin: 0 auto;
    font-weight: normal;
    font-size: 52px;
    font-style: normal;
    color: rgba(249,251,255,0);
    text-stroke: 1px #F0F2F8;
    -webkit-text-stroke: 1px #F0F2F8;
}

.section-title-en-light {
    color: rgba(249,251,255,0);
    text-stroke: 1px #F0F2F8;
    -webkit-text-stroke: 1px #F0F2F8;
}

.section-desc {
    max-width: 90%;
    width: 930px;
    margin: 25px auto 36px;
    line-height: 30px;
    text-align: center;
}

/* 联系表单 */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 系统与服务 */
.system-about {
    margin-bottom: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.system-about-item {
    width: 212px;
    height: 50px;
    line-height: 47px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.systemService .swiper-container {
    width: 100%;
    padding: 50px 0;
    overflow: visible; /* 允许内容超出容器可见 */
}

.systemService .swiper-slide {
    width: calc((100% - 16px * 4) / 4); /* 4列布局 */
    transform: scale(0.9); /* 默认缩小显示 */
    transition: transform 0.3s ease;
}

.systemService .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.systemService .swiper-slide-active {
    transform: scale(1); /* 选中项放大显示 */
    z-index: 2; /* 确保选中项在上层 */
    position: relative;
    top: -20px;
}
#systemSwiperContainer{
    padding-top: 20px;
}

/* 各种分类 */
.classifyNew .swiper-wrapper {
    display: flex;
    align-items: center;
}

.classifyNew .swiper-slide {
    padding: 16px;
    height: 400px;
    width: 300px; /* 固定宽度 */
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    transform: scale(0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.classifyNew .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.classifyNew .swiper-slide .title {
    font-size: 24px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
    padding-top: 20px;

}

.classifyNew .swiper-slide .desc {
    font-size: 14px;
    color: #666;
    padding: 0 15px 15px;
    text-align: center;
    min-height: 70px;
}

.classifyNew .swiper-slide-active {
    transform: scale(1);
    background: linear-gradient(#79B0FF 0%, #1575FF 100%);
    box-shadow: 0px 2 16px 0px rgba(0,0,0,0.1);
}

.classifyNew .swiper-slide-active .title,
.classifyNew .swiper-slide-active .desc {
    color: #fff;
}



/* 系统功能 */
.system-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--gray-bg);
}

.feature-item:hover .feature-title, .feature-item:hover .feature-desc {
    color: #fff;
}

.feature-title {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.5;
}

/* 统计 */
.statistics {
    background: url('../images/pexels-expect-best-79873-323705 (3)@2x.png') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: var(--board-width);
    margin: 0 auto;
    flex-wrap: nowrap; /* 确保不换行 */
}

.stat-item {
    text-align: center;
    color: #FFFFFF; /* 确保文字为白色 */
}

.stat-number {
    font-size: 48px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.stat-label {
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
}

.divider {
    width: 2px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 40px;
}
.divider:last-child{
    display: none;
}

/* 平台定位等 */
.platform-intro {
    padding: 90px 0px;
    overflow: hidden;
}

/* PC端布局 */
.platform-intro .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: url(../images/bg_4@2x.png) center no-repeat;
    background-size: cover;
}

.platform-intro .swiper-slide {
    background-color: rgba(0, 0, 0, 0.5);
}

.platform-intro .swiper-slide:first-child,
.platform-intro .swiper-slide:last-child {
    background: #1576ffc9;
}

.platform-card {
    padding: 30px;
    height: 100%;
    min-height: 220px;
    box-sizing: border-box;
    max-height: 220px;
}

.platform-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.platform-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.business-section .section-title-wrap {
    width: 100%;
    margin-bottom: 36px;
    text-align: right;
}

.business-section .section-title, .business-section .section-title-en {
    right: 0;
    left: unset;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;
}

.business-card {
    background: #fff;
    padding: 24px;
    border-right: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
}

.business-card.main {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.business-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.business-card h3 {
    font-size: 18px;
    color: #333;
    margin: 16px 0 12px;
}

.business-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.system-function .section-title-wrap {
    width: 100%;
    margin-bottom: 36px;
    text-align: left;
}

.system-function .section-title, .system-function .section-title-en {
    left: 0;
    right: unset;
}

.system-advantages .section-title-wrap {
    width: 100%;
    margin-bottom: 36px;
    text-align: right;
}

.system-advantages .section-title, .system-advantages .section-title-en {
    right: 0;
    left: unset;
}

.advantages-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.advantages-content {
    flex: 1;
}

.advantage-item {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.advantage-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.advantages-image {
    flex: 0 0 500px;
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 会员服务 */
.member-service {
    padding: 60px 0 0px;
}

.service-steps {
    margin: 40px 0;
    display: flex;
    justify-content: space-around;
}

.step-item {
    flex: 1;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.member-cards {
    max-height: 412px;
}

.member-cards .swiper-slide {
    background: #F6F8F9;
    border-radius: 12px;
}

.member-cards .swiper-slide-active {
    background: linear-gradient(180deg, #FEE9D3 0%, #CD9669 100%);
}

.member-cards .swiper-slide-active h3,
.member-cards .swiper-slide-active .price,
.member-cards .swiper-slide-active .price span,
.member-cards .swiper-slide-active .card-desc,
.member-cards .swiper-slide-active .features li,
.member-cards .swiper-slide-active .features li:before {
    color: #5B3211;
}


.member-card {
    background: #fff;
    padding: 15px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: url('../images/vip.png') no-repeat center;
    background-size: 197px auto;
    background-position: 98% 80%;
    color: #fff;
}

.member-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--primary-color);
}

.member-card .price {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 20px;
}

.member-card .price span {
    margin-right: 5px;
    font-size: 24px;
}

.member-card .features {
    list-style: none;
    margin-bottom: 20px;
}

.member-card .features li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.member-card .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.member-card .card-desc {
    margin-bottom: 10px;
    font-size: 18px;
    color: #4C5564;
}

/* 复刻搭建 */
.clone-build {
    padding: 60px 0;
}

.clone-build .section-title-wrap {
    margin-bottom: 36px;
}

.build-types {
    margin: 0 auto 40px;
}
.build-types {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.build-type {
    text-align: center;
}

.build-type h3 {
    background: #1575FF;
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
}

.build-type p {
    background: #F6F8F9;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 28px;
    height: 100px;
    border: 1px solid #fff;
    border-top: unset;
    display: flex;
    align-items: center;
}

.clone-examples {
    max-width: 90%;
    width: var(--board-width);
    margin: 0 auto;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.example-item {
    text-align: center;
}

.example-img {
    position: relative;
    overflow: hidden;
}

.example-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.example-item:hover .example-img img {
    transform: scale(1.05);
}

.example-item h4 {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

/* 合作加盟部分样式 */
.cooperation-section .coop-wrap {
    padding-top: 90px;
    background: url('../images/pic@2x.png') center no-repeat;
    background-size: cover;
}

.coop-header {
    text-align: center;
    margin-bottom: 40px;
}

.coop-header .section-title {
    color: #fff;
}

.coop-header .section-title-en {
    color: rgba(255,255,255,0);
    text-stroke: 1px #FFFFFF;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.coop-header .price {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.coop-header .price b {
    color: #1575FF;
}

.coop-header .locations {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
}

.service-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item {
    padding: 0 15px;
    color: #fff;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    text-align: center;
}

.service-item:not(:last-child) {
    border-right: 1px solid #fff;
}

.contact-wrap {
    padding: 50px 0;
    background-color: #1E2737;
}

.contact-wrap .container {
    padding: 0;
}

.contact-wrap .contact-list {
    display: flex;
    justify-content: space-around;
}

.contact-info {
    flex: 1;
}
.qr-codes {
    flex: 2;
}

.contact-info .info-item:not(:last-child) {
    margin-bottom: 24px;
}


.info-item {
    color: #828890;
}

.info-item-title, .qr-codes .qr-title {
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.info-item div {
    margin-bottom: 8px;
}

.info-item div:not(.info-item-title), .info-item span {
    color: #828890;
    font-weight: 400;
    font-size: 13px;
}

.info-item span {
    cursor: pointer;
    padding: 0 8px;
    border-right: 1px solid #828890;
    line-height: 1;
}

.info-item span:last-child {
    border-right: unset;
}

.info-item span:hover {
    color: var(--primary-color);
}

.mobile-contact {
    display: none;
}

.qr-codes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qr-codes .qr-title {
    color: #fff;
}

.qr-row {
    display: flex;
    gap: 24px;
}

.qr-item {
    width: 76px;
    height: 76px;
}

.qr-item img {
    width: 100%;
    height: auto;
}

.qr-item span {
    display: none;
}

/* 联系我们 */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 185px !important;
}

.contact-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 20px;
    line-height: 36px;
}

.contact-content .contact-qr-codes {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.contact-content .contact-qr-item {
    text-align: center;
}

.contact-content .contact-qr-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.contact-content .contact-qr-item p {
    margin: 0;
    color: #333;
}

.contact-content {
    flex: 1;
    padding-right: 40px;
}

.contact-container .phone-image {
    /*max-width: 50%;*/
  flex: 1;
}

.contact-container .phone-image img {
    width: 100%;
}

/* 响应式设计 */
@media (min-width: 768px) and (max-width: 1060px) {
    .advantages-container {
        flex-direction: column;
        align-items: center;
    }
    .advantages-image {
        width: 60%;
        flex: 1;
    }

    .stat-number {
        font-size: 40px;
    }
    .divider {
        margin: 0 20px;
    }

    .member-card {
        padding: 20px;
    }
    .member-card .price {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .row {
        width: 100%;
        justify-content: space-between;
    }

    .section-wrap {
        padding: var(--section-wrap-m-padding) 0;
    }

    .section-title-wrap {
        width: 100% !important;
        text-align: center !important;
    }

    .section-title {
        left: unset !important;
        right: unset !important;
        width: 100%;
        font-size: 24px;
    }

    .section-title-en, .contact-btn {
        display: none;
    }

    .section-desc {
        max-width: 100%;
        width: 100%;
        margin: 5px auto 26px;
        color: var(--text-color);
        font-size: 14px;
        line-height: 1.7;
    }

    .navbar .container {
        height: 60px;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
    }

    /* 修改移动端导航菜单样式 */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        padding: 3rem 0;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links.active a{
        color: #666;
        line-height: 3rem;
    }

    /* 当导航菜单激活时，禁止body滚动 */
    body.nav-active {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .close-btn {
        display: none; /* 默认隐藏 */
    }

    .close-btn.active {
        display: block; /* 当导航菜单打开时显示 */
    }


    /* 修改 logo 相关样式 */
    .navbar .logo {
        position: relative;
        z-index: 2;
    }

    .navbar .logo .logo-img{
        width: 40px;
        height: 40px;
        padding: 8px;
        background: url('../images/logo_black.png') #fff no-repeat center;
        background-size: 30px;
        border-radius: 50%;
    }

    .logo-text {
        display: block; /* 显示文字 */
    }


    /* 导航下面图片上文字 */
    .hero-content {
        display: flex;
        padding: 60px 0 0;
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 关于我们 */
    .about-features {
        display: block;
    }

    .about-features h3, .about-features p {
        color: #fff;
    }

    .about .feature-card {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        height: 10rem;
        padding: 0 1rem 1.5rem;
        overflow: hidden;
    }

    .about .feature-card:not(:last-child) {
        margin-bottom: 1rem;
    }

    .about .feature-card .mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, black, transparent);
        z-index: 1;
    }
    .about .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .about .feature-card h3, .about .feature-card p {
        z-index: 2;
    }

    .system-about{
        margin-bottom: 0;
    }

    #systemSwiperContainer{
        margin-top: -20px;
    }

    .system-about-item {
        height: 3rem;
        line-height: 3rem;
        border-color: #F0F0F0;
        color: #6F7073;
        font-size: 17px;
    }

    .system-features {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .system-features .feature-item {
        padding: 0;
        background-color: unset !important;
        border-bottom: 1px solid var(--border-color);
    }
    .system-features .feature-item:last-child {
        border-bottom: unset;
    }
    .system-features .feature-item:hover {
        background: linear-gradient(to right, #F3F6FB 0%, #F3F6FB 100%);
    }

    .systemService .container:last-child, .classifyNew .container {
        width: 100%;
        max-width: 100%;
    }

    .feature-item {
        min-height: 150px;
        border-bottom: 1px solid #F1F1F1;
        background-size: auto 100%;
        background-position: right center;
        background-repeat: no-repeat;
    }

    .system-function .section-title-wrap {
        margin-bottom: 0;
        text-align: center;
    }

    .stats-container {
        flex-direction: row; /* 保持横向布局 */
        padding: 0 15px;
        gap: 10px; /* 减小间距以适应移动端 */
    }

    .stat-item {
        flex: 1; /* 平均分配空间 */
    }

    .stat-number {
        font-size: 20px; /* 减小字体大小以适应移动端 */
    }

    .stat-label {
        font-size: 12px; /* 减小字体大小以适应移动端 */
    }

    .divider {
        display: none;
    }

    .platform-intro {
        padding: 40px 0;
    }

    .platform-intro .container {
        max-width: 100%;
        width: 100%;
    }

    .platform-intro .swiper-wrapper {
        display: flex;
        background: none;
    }

    .platform-intro .swiper-slide {
        width: 70vw;
        /*background: url('../images/about_1.png') transparent no-repeat center !important;*/
        background-size: cover;
        z-index: -2;
    }

    .platform-intro .swiper-slide::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: -1;
    }

    .platform-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
        text-align: center;
        border-bottom: unset;
    }

    .platform-card p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .member-cards .swiper-slide {
        /*width: 40vw !important;*/
    }

    .member-card .price span {
        font-size: 18px;
    }

    .classifyNew .swiper-slide {
        width: 55vw;
    }

    .statistics {
        padding: 20px 0;
    }

    .stat-number {
        margin-bottom: 0;
    }

    .business-section {
        display: none;
    }

    /* 系统优势 */
    .advantages-container {
        flex-direction: column;
        gap: 30px;
    }

    .advantages-content {
        order: 1;
    }

    .advantages-image {
        order: 2;
        flex: 0 0 auto;
        max-width: 100%;
    }

    .advantage-item {
        margin-bottom: 15px;
    }

    /* 会员服务 */
    .service-steps {
        margin: 20px 0;
        display: block;
    }

    .step-item {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .member-card {
        padding: 24px;
    }

    .member-card h3 {
        margin-bottom: 6px;
        font-size: 20px;
    }

    .member-card .price {
        margin-bottom: 10px;
        font-size: 28px;
    }

    .member-card .card-desc {
        display: none;
    }

    /* 复刻搭建 */
    .build-types {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 0;
    }

    .build-type {
        position: relative;
        text-align: left;
        padding-left: 30px;
        padding-bottom: 30px;
        position: relative;
    }

    .build-type::before {
        content: "";
        display: block;
        position: absolute;
        top: calc((37px - 16px) / 2);
        left: 0;
        width: 16px;
        height: 16px;
        background: url('../images/radio.png') no-repeat center;
        background-size: cover;
        z-index: -1;
    }

    .build-type:not(:last-child):after {
        content: '';
        display: block;
        width: 1px;
        height: calc(100% - 16px);
        border-left: 1px dashed var(--border-color);
        position: absolute;
        left: 7px;
        top: calc((37px - 16px) / 2 + 16px);
        z-index: -2;
    }

    .build-type h3 {
        font-size: 16px;
        background: none;
        color: var(--primary-color);
        line-height: 37px;
    }

    .build-type p {
        padding: 0;
        height: auto;
        font-size: 12px;
        background: none;
        color: inherit;
    }

    .clone-examples {
        max-width: 100%;
        display: flex;
        gap: unset;
    }

    /* 合作加盟 */
    .coop-header .price {
        font-size: 20px;
    }

    .coop-header .locations {
        font-size: 14px;
        padding: 0 20px;
    }

    .service-list {
        flex-direction: column;
    }
    .contact-wrap .contact-list {
        display: block;
    }

    .contact-list .contact-info {
        display: none;
    }

    .service-item {
        font-size: 14px;
        margin: 0 15px 15px;
        padding: 0;
        border-right: unset !important;
    }

    .qr-title {
        display: none;
    }

    .qr-row {
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .qr-item {
        width: auto;
        height: auto;
    }

    .qr-item span {
        display: block;
        color: #74777D;font-size: 14px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    .info-item label {
        margin-bottom: 5px;
    }

    .mobile-contact{
        display: block;
    }
    .mobile-contact div{
        color: #fff;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .mobile-contact span {
        color: #8694A9;
        margin-right: 16px;
    }

    .mobile-link {
        display: flex;
        flex-wrap: wrap;
    }

    .mobile-link span {
        margin-right: 0;
        color: #fff;
    }

    .mobile-link span:not(:first-child) {
        margin-right: 10px;
        color: #8694A9;
    }

    /* 联系我们 */
    .contact-container {
        flex-direction: column;
        padding: 100px 0!important;
    }

    .contact-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .contact-content h1 {
        text-align: center;
    }
    .contact-content .contact-qr-codes {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .contact-container .phone-image {
        margin-top: 40px;
        width: 100%;
    }

    .contact-container .phone-image img {
        width: 100%;
        max-width: 500px;
        display: block;
        margin: 0 auto;
    }
    .build-type{
        margin-bottom: 0px !important;
        padding-bottom: 15px !important;
    }
    .build-type p{
        font-size: 16px !important;
    }
    .build-types{
        margin-bottom: 30px;
    }
    .example-img+h4{
        margin-top: 0 !important;
    }
    .feature-title{
        margin-bottom: 5px !important;
    }
    .system-advantages .section-title-wrap{
        margin-bottom: 10px !important;
    }

    .vip-card{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .coop-wrap{
        padding-top: 50px !important;
    }

    .coop-wrap .price{
        font-size: 30px;
    }

    .coop-wrap .service-item{
        font-weight: bold;
    }
    .swiper-button-prev,.swiper-button-next{
        display: none !important;
    }
    .systemService .swiper-slide-active{
        top: -10px;
    }
    .classifyNew  .swiper-slide-active .title {
        color: white;
    }
    .classifyNew .swiper-slide .title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 0px;
        text-align: center;
    }
    .classifyNew .swiper-slide .desc{
        padding: 0;
    }
}
#think_page_trace_open{
    display: none;
}
