:root {
    --btn-bg-color: #1C66EE;
    --hover-btn-bg-color: #4366F5;
    /* 按钮背景色 */
    --hover-bg-color: linear-gradient(to right top, rgba(109, 84, 235, .12) 0%, rgba(9, 78, 189, .12) 50%, rgba(0, 126, 229, .12) 100%);
    --hover-title-color: #1266ec;
    --hover-box-shadow: 0px 10px 40px -6px rgba(0, 0, 0, .1), 0px 24px 80px -16px rgba(19, 102, 236, .27);
    --hover-icon-right: translateX(10px);
}

.banner-slider {
    position: relative;
    width: 100vw;
    height: 520px;
    margin-left: calc(-50vw + 50%);
}


/* 轮播项 */

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}


/* 轮播图片 */

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* 轮播文本区域 */

.banner-text {
    padding: 2rem 0;
    max-width: 800px;
}

.banner-text h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    /* 1.5*16=24px to 2.5*16=40px  5vw = 2560px × 5% = 128px */
    font-weight: 700;
    color: #181818;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.banner-text p {
    font-size: 1rem;
    color: #181818;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.banner-text a[href^="tel:"] {
    background-color: var(--btn-bg-color);
    color: white;
    width: 20rem;
    padding: 0.75rem 1.25rem;
    /* border-radius: 4px; */
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.banner-text a[href^="tel:"]:hover {
    background-color: rgba(22, 119, 255, 0.9);
}

.banner-text a:not([href^="tel:"]) {
    color: var(--btn-bg-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.banner-text a:not([href^="tel:"]):hover {
    color: rgba(22, 119, 255, 0.8);
}


/* 轮播指示器 */

.banner-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 300ms ease;
}

.banner-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.banner-indicator.active {
    width: 2rem;
    background-color: white;
}


/* Swiper分页器容器 */

.swiper-pagination {
    position: absolute;
    bottom: 2rem!important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}


/* 轮播控制按钮 */

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--btn-bg-color);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* 隐藏Swiper默认的按钮图标，使用我们自己的 */

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.home-bg {
    background: linear-gradient( 180deg, #EEF6FF 0%, #EDF6FF 100%);
    padding-bottom: 80px;
}


/* 功能模块卡片 */

.feature-list {
    margin: -68px auto 0 auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9;
    flex-wrap: wrap;
}

.feature-item {
    width: 25%;
    height: 100%;
    border-right: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    padding: 24px 15px 24px 30px;
    box-sizing: border-box;
}

.feature-item:nth-child(4n) {
    border-right: none;
}

.feature-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.feature-item:last-child {
    border-right: none;
}

.feature-title {
    font-weight: bold;
    font-size: 16px;
    color: #181818;
}

.feature-title img {
    width: 1.75rem;
    height: 1.75rem;
    margin-right: 6px;
    flex-shrink: 0;
}

.feature-desc {
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

.feature-item:hover {
    background: var(--hover-bg-color);
}

.feature-item:hover .feature-title {
    color: var(--hover-title-color);
}

.main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
}


/* 主体容器（加stage-前缀） */

.stage-main-container {
    display: flex;
    align-items: stretch;
    background: #fff;
    /* gap: 20px; */
}


/* 左侧体验馆区域（加stage-前缀） */

.stage-experience-hall {
    flex: 1;
    max-width: 33%;
    /* border-radius: 8px; */
    /* padding: 30px 20px; */
}

.stage-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.stage-content {
    position: relative;
    margin: 44px 0 44px 36px;
    z-index: 9;
}

.stage-hall-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.stage-hall-desc {
    max-width: 80%;
    font-size: 14px;
    color: #181818;
    line-height: 1.5;
    margin: 15px 0;
}

.stage-try-btn {
    background-color: var(--btn-bg-color);
    color: #fff;
    padding: 0 20px;
    min-width: 154px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
}

.stage-try-btn:hover {
    background-color: var(--hover-btn-bg-color);
}

.stage-try-btn:hover .icon-right {
    transform: var(--hover-icon-right);
}


/* 右侧阶段容器（加stage-前缀） */

.stage-stages-wrap {
    flex: 1;
    display: flex;
    max-width: 100%;
    /* gap: 15px; */
}


/* 单个阶段卡片（加stage-前缀） */

.stage-card {
    flex: 1;
    min-width: 150px;
    /* max-width: 250px; */
    border-right: 1px solid #e8e8e8;
    padding: 20px 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stage-card:last-child {
    border-right: none;
}


/* 阶段图标占位（加stage-前缀） */

.stage-img {
    width: 100%;
    height: auto;
    max-height: 190px;
    max-width: 186px;
    margin-bottom: 15px;
    background-color: #fafafa;
    object-fit: contain;
}


/* 阶段标题（加stage-前缀，避免冲突） */

.stage-stage-title {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}


/* 功能按钮容器（加stage-前缀） */

.stage-func-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}


/* 功能按钮样式（加stage-前缀） */

.stage-func-btn {
    padding: 6px 0;
    background: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 2px;
    font-size: 12px;
    color: #888;
    text-align: center;
    text-decoration: none;
    /* 清除a标签下划线 */
    display: block;
    /* 适配grid布局 */
}

.stage-func-btn:active {
    background-color: var(--active-bg-color);
    border-color: var(--active-bg-color);
    color: var(--active-title-color);
}


/* 功能按钮hover效果 */

.stage-func-btn:hover {
    background: var(--hover-bg-color);
    border-color: transparent;
    color: var(--hover-title-color);
}


/* 成果展示区域样式 */

.results-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.results-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.results-card:hover {
    box-shadow: var(--hover-box-shadow);
    transform: translateY(-2px);
}

.results-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.results-content .flex-1 {
    flex: 1;
}

.results-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.results-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: block;
}

.results-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.results-card-chart {
    max-width: 155px;
    height: auto;
    object-fit: contain;
    margin-left: 15px;
}

.results-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #E9E9E9;
}

.results-stat-item-left {
    /* width: 33%; */
    box-sizing: border-box;
    border-right: 1px solid #F2F2F2;
    padding-right: 3rem;
}

.results-stat-item {
    flex: 1;
    padding-left: 3rem;
}

.results-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 4px;
    display: block;
}

.results-stat-label {
    font-size: 14px;
    color: #999;
}

.results-separator {
    width: 1px;
    height: 48px;
    background-color: #f0f0f0;
    margin: 0 32px;
}

.results-grow-arrow {
    width: 11px;
    height: 18px;
    margin-left: 12px;
    vertical-align: middle;
}


/* 版本卡片样式 */

.version-list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.version-card {
    flex: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.version-card:hover {
    box-shadow: var(--hover-box-shadow);
    transform: translateY(-2px);
}

.version-card-header {
    overflow: hidden;
    height: 220px;
}

.version-card-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.version-card-cont {
    position: relative;
    z-index: 1;
    padding: 24px;
    box-sizing: border-box;
    width: 100%;
    color: #fff;
}

.version-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #181818;
}

.version-card-desc {
    font-size: 14px;
    color: #181818;
    line-height: 1.6;
    margin-bottom: 18px;
}

.version-card-button {
    background-color: var(--btn-bg-color);
    color: #ffffff;
    border: none;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.version-card-button:hover {
    background-color: #4096ff;
}

.version-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.version-feature-item {
    padding: 40px 30px 0 30px;
    height: 136px;
    box-sizing: border-box;
    border-right: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
}

.version-feature-item:nth-child(2n) {
    border-right: none;
}

.version-feature-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.version-feature-title {
    font-weight: 800;
    font-size: 18px;
    color: #181818;
    margin-bottom: 8px;
}

.version-feature-text {
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

.version-feature-item:hover {
    background: var(--hover-bg-color);
}


/* 案例展示样式 */

.case-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.case-card {
    flex: 0 0 calc(25% - 18px);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    box-shadow: var(--hover-box-shadow);
    transform: translateY(-2px);
}

.case-image {
    width: 100%;
    height: 252px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.home-case-wx-img {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.home-case-wx-img img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.case-card:hover .home-case-wx-img {
    display: flex;
}

.case-content {
    padding: 30px;
    background: #fff;
}

.case-header {
    margin-bottom: 1.5rem;
}

.case-logo {
    width: 68px;
    height: 68px;
    margin-right: 1.2rem;
}

.case-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-title {
    font-size: 18px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 8px;
}

.case-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-product {
    font-size: 14px;
    color: #999999;
}

.case-desc {
    font-size: 14px;
    color: #717171;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    /* height: 60px; */
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #E7EDFD;
    font-weight: bold;
    font-size: 12px;
    color: #196AEC;
    border-radius: 2px;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
}

.partner-list img {
    /* width: 150px;
    height: 70px; */
    width: 100%;
    object-fit: contain;
    object-position: center;
}


/* 响应式调整 */

.footer-register {
    width: 100%;
    max-height: 240px;
}

.register-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: right; */
    z-index: 0;
}

.register-content {
    padding: 4rem 0;
    margin: 0 auto;
}

.register-title {
    font-weight: 800;
    font-size: 2rem;
    color: #181818;
}

.footer-register-btn {
    max-width: 320px;
    padding: 16px 20px;
    background: var(--btn-bg-color);
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 1.2rem;
}

.icon-right {
    width: 14px;
    height: 11px;
    transition: all 0.3s ease;
}

.footer-register-btn:hover {
    background-color: var(--hover-btn-bg-color);
}

.footer-register-btn:hover .icon-right {
    transform: var(--hover-icon-right);
}


/* 分类列表样式 */

.bg-f9fafd {
    background: #F9FAFD;
}

.product-container {
    gap: 20px;
}

.cate-list {
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    overflow: hidden;
    width: 16.66%;
}

.cate-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 1rem; */
    /* background-color: #fafafa; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cate-title:hover {
    /* background-color: #f0f0f0; */
}

.cate-title span:first-child {
    font-weight: 500;
    color: #333;
}

.arrow {
    width: 10px;
    height: 5px;
    object-fit: contain;
}

.rotate180 {
    transform: rotate(180deg);
}

.cate-children-box {
    padding: 12px 0;
    margin: 8px 0 8px 12px;
    border-left: 1px solid #e0e0e0;
}

.cate-children {
    /* margin: 10px; */
    display: none;
}

.child-item {
    color: #666;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    padding: 0.8rem 1.5rem;
    /* border-left: 3px solid transparent; */
    transition: all 0.3s ease;
}

.child-item:hover {
    background-color: #F0F2F6;
    color: var(--btn-bg-color);
}

.child-item.active {
    color: var(--btn-bg-color);
    font-weight: 500;
    background-color: #F0F2F6;
}


/* 移动端分类选择器样式 */

.wap-cate-list {
    width: 100%;
    display: none;
}

.select-container {
    margin-bottom: 12px;
}

.stage-select,
.function-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"%3E%3Cpath stroke="%23666" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M6 8l4 4 4-4"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage-select:hover,
.function-select:hover {
    border-color: var(--btn-bg-color);
}

.stage-select:focus,
.function-select:focus {
    outline: none;
    border-color: var(--btn-bg-color);
    box-shadow: 0 0 0 2px rgba(28, 102, 238, 0.1);
}


/* 选中状态样式 */

.stage-select option[selected],
.function-select option:selected {
    background-color: var(--btn-bg-color);
    color: #fff;
}


/* 产品内容区域样式 */

.product-cont {
    display: flex;
    flex: 1;
    background-color: #fff;
    border: 1px solid #E6E8EE;
    padding: 6.25rem 7.5rem;
    box-sizing: border-box;
    /* max-width: 768px; */
}

.product-img {
    width: 350px;
    height: auto;
    object-fit: contain;
    margin-right: 24px;
    flex-shrink: 0;
    border: 11px solid #f2f6fa;
    border-radius: 42px;
}

.product-info {
    flex: 1;
    max-width: 590px;
}

.product-title {
    font-weight: bold;
    font-size: 24px;
    color: #181818;
    margin-bottom: 5px;
}

.product-cate {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

.product-desc {
    font-weight: bold;
    font-size: 14px;
    color: #181818;
    line-height: 1.6;
    margin-bottom: 40px;
}

.product-tel {
    font-weight: bold;
    font-size: 14px;
    color: #181818;
    padding: 12px 14px;
    background: #F5F6FA;
}


/* 右侧注册区域样式 */

.product-right {
    width: 300px;
    background-color: #fff;
    border: 1px solid #E6E8EE;
    padding: 30px;
}

.product-res-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.4;
}

.product-res-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--btn-bg-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-res-btn:hover {
    background-color: var(--hover-btn-bg-color);
    box-shadow: 0 4px 12px rgba(28, 102, 238, 0.2);
}

.product-res-btn .icon-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.product-res-btn:hover .icon-right {
    transform: translateX(4px);
}


/* 页面banner样式 */

.page-banner {
    position: relative;
    max-height: 256px;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    /* margin-bottom: 40px; */
}

.page-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center right; */
}

.page-banner-content {
    position: relative;
    z-index: 1;
    padding: 3.1rem 0;
}

.page-banner-title {
    font-size: 44px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-banner-desc {
    font-size: 16px;
    color: #181818;
    margin-bottom: 28px;
    line-height: 1.5;
}

.page-banner-btn {
    display: inline-block;
    background-color: var(--btn-bg-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    min-width: 160px;
    padding: 0 1.5rem;
    height: 44px;
    text-align: center;
    line-height: 44px;
    background: #1366EC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-banner-btn:hover {
    background-color: var(--hover-btn-bg-color);
    box-shadow: 0 4px 12px rgba(28, 102, 238, 0.2);
}


/* 定制流程样式 */

.customize-container {
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #E6E8EE;
    margin-top: 2rem;
}

.customize-title {
    font-size: 24px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 16px;
}

.customize-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
}


/* 版本特性样式 */

.version-step {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    margin-top: 48px;
    /* flex-wrap: wrap; */
}

.step-item {
    width: 25%;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
}

.version-desc {
    font-weight: bold;
    font-size: 14px;
    color: #181818;
}

.customize-process {
    gap: 30px;
}

.process-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    position: relative;
}

.process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.process-step {
    font-size: 14px;
    font-weight: 600;
    color: #1677ff;
}

.process-title {
    font-weight: 800;
    font-size: 18px;
    color: #181818;
}

.process-list {
    text-align: left;
    margin-top: 10px;
    padding-left: 20px;
}

.process-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    list-style-type: disc;
}

.process-arrow {
    /* margin: 40px 0 0; */
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.process-arrow img {
    width: 60px;
    height: 120px;
    object-fit: contain;
}


/* 案例展示样式 */

.cate-page-container {
    margin: 40px 0;
}

.case-page-item-title {
    font-weight: bold;
    font-size: 34px;
    color: #181818;
    margin-bottom: 24px;
}

.case-page-grid {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.case-page-card {
    padding: 30px;
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border: 1px solid #E6E8EE;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
    /* min-height: 400px; */
}

.case-page-card:hover {
    box-shadow: var(--hover-box-shadow);
    transform: translateY(-6px);
}

.case-page-left {
    max-width: 270px;
}

.case-page-header {
    margin-bottom: 38px;
    display: flex;
    align-items: center;
}

.case-page-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    margin-right: 16px;
}

.case-page-title {
    font-size: 18px;
    font-weight: 600;
    color: #181818;
    margin-bottom: 4px;
}

.case-page-type {
    font-size: 12px;
    color: #999999;
}

.case-page-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 38px;
    min-height: 60px;
}

.case-page-tag {
    display: inline-block;
    width: 66px;
    height: 24px;
    background: #E7EDFD;
    border-radius: 2px;
    font-size: 12px;
    color: #196AEC;
    margin-bottom: 20px;
    text-align: center;
    line-height: 24px;
}

.case-page-wx-img {
    /* 微信二维码 */
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.case-page-btn {
    width: 110px;
    height: 32px;
    background: #1366EC;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
}

.case-img-box {
    flex: 1;
    margin-left: 30px;
    max-width: 50%;
    border: 6px solid #f2f6fa;
    border-radius: 30px;
}

.case-page-home-img {
    flex: 1;
    margin-left: 30px;
    max-width: 50%;
    border: 6px solid #f2f6fa;
    border-radius: 30px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.app-card {
    flex: 0 0 calc(50% - 20px);
}

.case-app-left {
    max-width: 530px
}

.case-page-app-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.case-partner {
    background-color: #fff;
    border: 1px solid #E6E8EE;
}


/* 联系我们样式 */

.contact-card {
    padding: 60px 42px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #E6E8EE;
}

.contact-title {
    font-size: 26px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 3rem;
}

.contact-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contact-wx-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    margin-top: 5rem;
}

.contact-map-img {
    height: 345px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.contact-grid {
    gap: 30px;
}

.contact-rule-card {
    flex: 0 0 calc(50% - 20px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 42px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


/* 合并后的媒体查询样式 - 放置在文件末尾 */


/* 大屏幕响应式样式 (max-width: 1280px) */

@media (max-width: 1280px) {
    /* Swiper样式 */
    .banner-slider {
        height: 500px;
    }
    .banner-text h1 {
        font-size: 2rem;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 2.2rem;
        height: 2.2rem;
    }
    .swiper-pagination {
        bottom: 1.5rem !important;
    }
    /* 功能模块样式 */
    .feature-item {
        width: 50%;
        border-right: none;
    }
    .feature-item:hover {
        background: transparent;
    }
    .feature-item:hover .feature-title {
        color: #181818
    }
    .feature-item:nth-child(2n) {
        border-right: none;
    }
    .feature-item:nth-child(odd) {
        border-right: 1px solid #E8E8E8;
    }
    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    /* 主体容器样式 */
    .stage-main-container {
        flex-direction: column;
    }
    .stage-experience-hall {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .stage-stages-wrap {
        width: 100%;
    }
    .stage-func-list {
        grid-template-columns: repeat(1, 1fr);
    }
    /* 成果展示样式 */
    .results-grid {
        flex-wrap: wrap;
    }
    .results-card {
        flex: 0 0 calc(50% - 12px);
        padding: 24px;
    }
    .results-card:nth-child(3) {
        flex: 0 0 100%;
        /* margin-top: 24px; */
    }
    .results-card-title {
        font-size: 18px;
    }
    .results-stat-number {
        font-size: 28px;
    }
    .results-separator {
        margin: 0 24px;
    }
    /* 版本卡片样式 */
    .version-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    .version-card {
        flex: 0 0 calc(50% - 24px);
        max-width: 500px;
        padding: 24px;
        margin: 0;
    }
    .version-card-header {
        height: auto;
    }
    .version-card-title {
        font-size: 18px;
        line-height: 1.3;
    }
    .version-card-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .version-feature-item {
        padding: 20px;
    }
    .version-feature-title {
        font-size: 18px;
    }
    .version-feature-text {
        font-size: 13px;
    }
    /* 案例展示样式 */
    .case-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    /* 合作伙伴样式 */
    .partner-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    /* 定制流程样式 */
    .customize-process {
        gap: 20px;
    }
    .process-arrow img {
        width: 30px;
    }
}


/* 大屏幕响应式样式 (max-width: 1200px) */

@media (max-width: 1200px) {
    /* 产品页面样式 */
    .product-container {
        flex-direction: column;
    }
    .cate-list {
        width: 100%;
        margin-bottom: 20px;
    }
    .product-cont {
        padding: 4rem 5rem;
    }
    .product-img {
        width: 300px;
    }
    .product-right {
        width: 100%;
        margin-top: 20px;
    }
    /* 案例页面样式 */
    .case-page-card {
        flex: 0 0 calc(50% - 15px);
    }
    .case-page-item-title {
        font-size: 30px;
    }
}


/* 中等屏幕响应式样式 (max-width: 1056px) */

@media (max-width: 1056px) {
    /* Swiper样式 */
    .banner-slider {
        height: 450px;
    }
    .banner-text {
        padding: 1.5rem 0;
    }
    .banner-text h1 {
        font-size: 1.8rem;
    }
    .banner-text p {
        font-size: 0.9rem;
    }
    .banner-text a[href^="tel:"] {
        width: 18rem;
        padding: 0.65rem 1.15rem;
        font-size: 1rem;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 2rem;
        height: 2rem;
    }
    .banner-indicator {
        width: 0.4rem;
        height: 0.4rem;
    }
    .banner-indicator.active {
        width: 1.8rem;
    }
    /* 版本卡片样式 */
    .version-list {
        flex-direction: column;
    }
    .version-card {
        flex: 0 0 100%;
        margin-left: 0 !important;
        /* margin-top: 24px; */
        padding: 24px;
        width: 100%;
    }
    .version-card-header {
        height: auto;
    }
    .version-card-title {
        font-size: 18px;
    }
    .version-card-desc {
        font-size: 14px;
    }
    /* 案例展示样式 */
    .case-card {
        flex: 0 0 calc(50% - 12px);
    }
    .case-page-item-title {
        font-size: 28px;
    }
}


/* 平板响应式样式 (max-width: 768px) */

@media (max-width: 768px) {
    .home-bg {
        padding-bottom: 30px;
        background: #f7f9fc;
    }
    .home-test-box {
        align-items: flex-end!important;
    }
    .mt-16 {
        margin-top: 2rem;
    }
    .main-title {
        font-size: 26px;
        margin-bottom: 1rem;
    }
    /* Swiper样式 */
    .banner-slider {
        height: 300px;
    }
    .banner-text {
        padding: 1rem 0;
        max-width: 100%;
    }
    .banner-text h1 {
        font-size: 1.5rem;
    }
    .banner-text p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    .banner-text a[href^="tel:"] {
        width: 100%;
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 1.8rem;
        height: 1.8rem;
        opacity: 0.7;
    }
    .swiper-pagination {
        bottom: 1rem !important;
    }
    .banner-indicator {
        width: 0.35rem;
        height: 0.35rem;
    }
    .banner-indicator.active {
        width: 1.5rem;
    }
    /* 功能模块样式 */
    .feature-list {
        margin: 0 auto;
        flex-direction: column;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .feature-item {
        width: 100%;
        border-right: none;
        padding: 15px 0;
        border-bottom: 1px solid #E8E8E8;
    }
    .feature-item:nth-child(4n),
    .feature-item:nth-last-child(-n+4),
    .feature-item:last-child {
        border-right: none;
    }
    .feature-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #E8E8E8;
    }
    /* .feature-item:last-child {
        border-bottom: none;
    } */
    .feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .feature-desc {
        font-size: 12px;
        line-height: 1.4;
    }
    /* 成果展示样式 */
    .results-container {
        padding: 40px 0;
    }
    .results-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .results-grid {
        flex-direction: column;
        margin-top: 24px;
    }
    .results-card {
        flex: 0 0 100%;
        margin-left: 0 !important;
        padding: 20px;
    }
    .results-content {
        margin-bottom: 20px;
    }
    .results-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    .results-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .results-card-desc {
        font-size: 13px;
        line-height: 1.5;
    }
    .results-card-chart {
        margin-left: 0 !important;
        margin-top: 20px;
        max-width: 100%;
        width: 35%;
    }
    .results-stats {
        gap: 24px;
        text-align: center;
        padding-top: 20px;
    }
    .results-stat-item {
        flex-direction: column;
    }
    .results-stat-number {
        font-size: 28px;
        margin-bottom: 2px;
    }
    .results-stat-label {
        font-size: 13px;
    }
    .results-separator {
        display: none;
    }
    .feature-title img {
        width: 32px;
        height: 32px;
    }
    /* 主体容器样式 */
    .stage-main-container {
        flex-direction: column;
        background: transparent;
    }
    .stage-experience-hall {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .stage-content {
        margin: 20px;
    }
    .stage-hall-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .stage-stages-wrap {
        flex-direction: column;
    }
    .stage-card {
        min-width: 50%;
        border-right: none;
        padding: 16px;
        margin-bottom: 16px;
    }
    .stage-card:last-child {
        border-bottom: none;
    }
    .stage-stage-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .stage-img {
        transform: translateX(24px);
    }
    .stage-func-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .stage-func-btn {
        padding: 0 6px;
        font-size: 14px;
        height: 44px;
        line-height: 44px;
        background: #f1f4fe;
        color: #191c21;
        border: none;
    }
    /* 版本卡片样式 */
    .version-list {
        flex-direction: column;
        margin-top: 24px;
    }
    .version-card {
        flex: 0 0 100%;
        margin-left: 0 !important;
        /* margin-top: 24px; */
        padding: 0;
        width: 100%;
    }
    .version-card-header {
        height: auto;
        margin-bottom: 0;
    }
    .version-card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .version-card-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .version-card-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    .version-card-features {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px;
    }
    .version-feature-item {
        padding: 20px 0;
        height: auto;
        border-bottom: 1px solid #E9E9E9!important;
        border-right: none!important;
    }
    .version-feature-text {
        font-size: 14px;
    }
    .case-list {
        margin-top: 24px;
        gap: 16px;
    }
    .case-card {
        flex: 0 0 100%;
    }
    .case-image {
        height: 180px;
    }
    .case-content {
        padding: 16px;
    }
    .case-desc {
        height: auto;
        -webkit-line-clamp: 4;
    }
    /* 合作伙伴样式 */
    .partner-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .footer-register {
        margin-top: 0;
    }
    .register-content {
        padding: 2rem 0;
    }
    .register-title {
        font-size: 20px;
    }
    .footer-register-btn {
        max-width: 150px;
        padding: 10px 20px;
    }
    /* 产品页面样式 */
    .cate-list {
        display: none;
    }
    .wap-cate-list {
        display: block;
    }
    .product-cont {
        flex-direction: column;
        padding: 2rem 3rem;
    }
    .product-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .product-info {
        max-width: 100%;
    }
    .product-title {
        font-size: 20px;
    }
    .product-right {
        width: 100%;
        margin-top: 20px;
    }
    /* 移动端分类选择器样式 */
    .stage-select,
    .function-select {
        font-size: 14px;
        padding: 10px 14px;
    }
    /* 联系页面样式 */
    .contact-card {
        padding: 20px;
    }
    .contact-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }
    .contact-desc {
        font-size: 13px;
    }
    .contact-wx-img {
        width: 100px;
        height: 100px;
        margin-top: 2rem;
    }
    .contact-map-img {
        height: 250px;
    }
    .contact-grid {
        gap: 20px;
    }
    .contact-rule-card {
        flex: 0 0 100%;
        min-height: auto;
    }
    /* 案例页面样式 */
    .case-page-card {
        flex: 0 0 100%;
        /* flex-direction: column; */
    }
    .case-page-left {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .case-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .case-page-app-img {
        width: 80px;
        height: 80px;
    }
    /* page-banner响应式样式 */
    .page-banner-content {
        padding: 2rem 0;
        /* text-align: center; */
    }
    .page-banner-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .page-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .page-banner-btn {
        /* width: 140px; */
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }
    /* 案例页面标题响应式样式 */
    .case-page-item-title {
        font-size: 24px;
    }
    /* 定制流程响应式样式 */
    .customize-container {
        padding: 20px;
    }
    .customize-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .customize-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    /* 版本特性响应式样式 */
    .version-step {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        margin-bottom: 16px;
    }
    .step-item {
        min-width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #E9E9E9;
    }
    .step-title {
        font-size: 18px;
    }
    .step-desc {
        font-size: 14px;
    }
    .customize-process {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
    }
    .process-item {
        width: 50%;
        flex: auto;
        text-align: left;
        margin-top: 15px;
    }
    .process-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .process-title {
        font-size: 18px;
        white-space: nowrap;
    }
    .process-list {
        padding-left: 16px;
        max-width: 100%;
    }
    .process-list li {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 4px;
    }
    .process-arrow {
        display: none;
    }
}


/* 移动端响应式样式 (max-width: 480px) */

@media (max-width: 480px) {
    /* Swiper样式 */
    .banner-slider {
        height: 350px;
    }
    .banner-text h1 {
        font-size: 26px;
    }
    .banner-text p {
        font-size: 14px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .banner-indicator {
        width: 0.3rem;
        height: 0.3rem;
    }
    .banner-indicator.active {
        width: 1.2rem;
    }
    /* 产品页面样式 */
    .product-cont {
        padding: 1.5rem 2rem;
    }
    .cate-title {
        padding: 0.8rem;
    }
    .child-item {
        padding: 0.6rem 1.2rem;
    }
    .product-title {
        font-size: 18px;
    }
    .product-desc {
        font-size: 14px;
    }
    .product-right {
        padding: 20px;
    }
    .product-res-title {
        font-size: 16px;
    }
    .product-res-btn {
        font-size: 14px;
        padding: 10px 14px;
    }
    /* 联系页面样式 */
    .contact-card {
        padding: 15px;
    }
    .contact-title {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
    .contact-desc {
        font-size: 14px;
    }
    .contact-wx-img {
        width: 80px;
        height: 80px;
        margin-top: 1rem;
    }
    .contact-map-img {
        height: 200px;
    }
    .contact-grid {
        gap: 15px;
    }
    /* 案例页面样式 */
    .case-page-card {
        padding: 20px;
        /* flex-direction: column; */
    }
    .case-page-left {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .case-page-logo-img {
        width: 50px;
        height: 50px;
    }
    .case-page-title {
        font-size: 18px;
    }
    .case-page-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .case-page-header {
        margin-bottom: 15px;
    }
    /* 案例页面标题响应式样式 */
    .case-page-item-title {
        font-size: 26px;
    }
}