/* === 首页特有样式 === */

/* === BANNER 3屏滚动 - 首页特有 === */
.banner-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slides {
    height: 300vh;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.banner-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 更新为支持WebP的版本 */
.banner-slide-1 {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('/wp-content/themes/geo-theme/img/inbj1.webp') no-repeat center center;
    background-size: cover;
}

.banner-slide-2 {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('/wp-content/themes/geo-theme/img/inbj2.webp') no-repeat center center;
    background-size: cover;
}

.banner-slide-3 {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('/wp-content/themes/geo-theme/img/inbj3.webp') no-repeat center center;
    background-size: cover;
}

/* 添加JPG回退，用于不支持WebP的浏览器 */
@supports not (background-image: url('/wp-content/themes/geo-theme/img/inbj1.webp')) {
    .banner-slide-1 {
        background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
            url('/wp-content/themes/geo-theme/img/inbj1.jpg') no-repeat center center;
        background-size: cover;
    }
    
    .banner-slide-2 {
        background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
            url('/wp-content/themes/geo-theme/img/inbj2.jpg') no-repeat center center;
        background-size: cover;
    }
    
    .banner-slide-3 {
        background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
            url('/wp-content/themes/geo-theme/img/inbj3.jpg') no-repeat center center;
        background-size: cover;
    }
}

.banner-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.banner-indicator {
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--progress-color);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.banner-indicator.active .indicator-progress {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

/* === 业务模块 - 首页特有 === */
.services {
    background-color: #fdfcfa;
    padding: 100px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

/* 修改：标题样式统一 */
.services-header h2,
.cases-header h2,
.news-header h2 {
    color: var(--dark);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 10px;			
}

.services-header .btn {
    display: none;
}

.services-top {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.services-content {
    flex: 1;
}

/* 修改：业务模块静态内容区域 */
.services-content-static {
    flex: 1;
}

.service-content-item {
    display: none;
}

.service-content-item.active {
    display: block;
}

/* 修改：业务标题样式 - 重点部分 */
.service-content-item h3 {
    font-size: 60px;
    color: var(--black);
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.2;
}

.services-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text);
}

.services-features {
    list-style: none;
    margin-top: 30px;
}

.services-features li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
}

.services-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f8ebd6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-features li:after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    color: #ffa160;
    font-weight: bold;
    font-size: 10px;
}

.services-features li a {
    color: var(--dark);
    display: block;
    padding: 2px 0;
    transition: var(--transition);
}

.services-features li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.services-content .btn {
    display: none;
}

.services-visual {
    flex: 1;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-item.active {
    opacity: 1;
    z-index: 1;
}

.visual-item img {
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm); 
    transition: transform 0.8s ease;
}

.services-bottom {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.services-grid {
    display: flex;
    width: 100%;
}

.service-card {
    display: flex;
    flex: 1;
    gap: 20px;
    padding: 60px 20px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    background-color: var(--white);
    border: none;
    border-radius: 0;
}

.services-grid .service-card:first-child {
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
}

.services-grid .service-card:last-child {
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
}

.service-card:hover:after,
.service-card.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: var(--underline-color);
    border-radius: 2px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #4a90e2, #6aa4ff);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #8e44ad, #b06ab3);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #00b894, #00d4a4);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* === 案例模块 - 首页特有 === */
.cases {
    padding: 20px 0 100px 0;
    background-color: #fdfcfa;
}

.cases-header {
    margin-bottom: 50px;
}

.cases-header p {
    font-size: 16px;
    color: var(--text);
    max-width: 600px;
}

/* 案例网格 - 保持首页不规则布局 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    margin-bottom: 40px;
}

/* 案例项容器 */
.case-item-container {
    position: relative;
    height: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

/* 主链接区域 */
.case-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.case-item-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.case-item-link:hover img {
    transform: scale(1.08);
}

/* 覆盖层 - 简化：只显示标题 */
.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    min-height: 80px;
}

.case-overlay h4 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* 标签容器 */
.case-tags-container {
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 20;
    bottom: 85px;
    pointer-events: none;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    pointer-events: none;
}

/* 标签按钮样式 */
.case-tag {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
    cursor: pointer;
    margin: 2px;
}

.case-tag:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== 首页特有的不规则网格布局 ===== */
.case-item-container:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: 1 / span 2;
}

.case-item-container:nth-child(2) {
    grid-column: 6 / span 3;
    grid-row: 1 / span 2;
}

.case-item-container:nth-child(3) {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
}

.case-item-container:nth-child(4) {
    grid-column: 1 / span 3;
    grid-row: 3 / span 2;
}

.case-item-container:nth-child(5) {
    grid-column: 4 / span 5;
    grid-row: 3 / span 2;
}

.case-item-container:nth-child(6) {
    grid-column: 9 / span 4;
    grid-row: 3 / span 2;
}

.case-item-container:nth-child(7) {
    grid-column: 1 / span 4;
    grid-row: 5 / span 2;
}

.case-item-container:nth-child(8) {
    grid-column: 5 / span 4;
    grid-row: 5 / span 2;
}

.case-item-container:nth-child(9) {
    grid-column: 9 / span 4;
    grid-row: 5 / span 2;
}

/* 案例分隔线 */
.cases-divider {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 100px 0;
    padding: 0;
    height: 1px;
    background-color: #eee;
}

.cases-divider .divider-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 46px;
    background-color: #f4efe6;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 30px;
    text-decoration: none;
}

.cases-divider .divider-center:hover {
    background-color: #ff3c00;
    color: var(--white);
}

/* 案例口号区域 */
.cases-slogan {
    background-color: var(--bg-cream);
    border-radius: var(--border-radius-sm);
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

.slogan-content {
    max-width: 800px;
    margin: 0 auto;
}

.slogan-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
}

.slogan-title {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 500;
}

.slogan-content p {
    font-size: 14px;
    color: var(--text);
    max-width: 620px;
    margin: 0 auto 30px;
}

/* === 联系板块 - 首页特有 === */
.contact-section {
    margin-top: -80px;
    padding: 0 0 80px 0;
    background-color: #fcfbf8;
}

.contact-image {
    flex: 1;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05)),
        url('/wp-content/themes/geo-theme/img/geobj720.jpg') no-repeat center center;
    background-size: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* === h标签修改后的样式调整 === */

/* 1. Banner区域非h标签样式 */
.banner-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
}

/* 2. 业务模块非h标签样式 */
.service-value-prop {
    font-size: 50px;
    color: var(--black);
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.3;
}

/* 3. 案例标签h3样式 */
.case-tag {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
    cursor: pointer;
    margin: 2px;
    font-weight: normal;
    margin-bottom: 0;
}

.case-tag:hover {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* 4. 内联h3样式（用于FAQ提示） */
.inline-h3 {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
}

.contact-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 500;
}

/* 6. 业务特性链接中的h4样式 */
.services-features h4 {
    display: inline;
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--dark);
    margin: 0;
    padding: 0;
    transition: var(--transition);
}

.services-features li a:hover h4 {
    color: var(--primary);
}

/* ===== 极简FAQ提示样式 ===== */
.faq-minimal-hint {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hint-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    text-align: center;
    margin: 0;
    display: inline;
}

.hint-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 8px;
    margin-bottom: 5px;
    vertical-align: middle;
}

.hint-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 1px;
    border-bottom: 1px dotted var(--primary);
    transition: all 0.2s ease;
}

.hint-link:hover {
    color: #ff3c00;
    border-bottom-style: solid;
    border-bottom-color: #ff3c00;
}

/* === 首页特有响应式设计 === */
@media (max-width: 1200px) {
    .services-grid {
        flex-wrap: wrap;
    }
    
    .service-card {
        flex: 0 0 50%;
    }
    
    .services-grid .service-card:nth-child(1) {
        border-top-left-radius: var(--border-radius-sm);
        border-top-right-radius: var(--border-radius-sm);
        border-bottom-left-radius: 0;
    }
    
    .services-grid .service-card:nth-child(2) {
        border-top-left-radius: 0;
        border-top-right-radius: var(--border-radius-sm);
        border-bottom-right-radius: 0;
    }
    
    .services-grid .service-card:nth-child(3) {
        border-top-left-radius: 0;
        border-bottom-left-radius: var(--border-radius-sm);
        border-top-right-radius: 0;
    }
    
    .services-grid .service-card:nth-child(4) {
        border-top-left-radius: 0;
        border-bottom-right-radius: var(--border-radius-sm);
        border-top-right-radius: 0;
    }
    
    /* 1200px以下案例网格布局 */
    .cases-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-auto-rows: auto;
        grid-auto-flow: dense;
    }
    
    .case-item-container {
        aspect-ratio: 16/9;
        min-height: 180px;
    }
    
    .case-item-container:nth-child(1) {
        grid-column: 1 / span 4;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(2) {
        grid-column: 5 / span 4;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(3) {
        grid-column: 1 / span 4;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(4) {
        grid-column: 5 / span 4;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(5) {
        grid-column: 1 / span 4;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(6) {
        grid-column: 5 / span 4;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(7) {
        grid-column: 1 / span 4;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(8) {
        grid-column: 5 / span 4;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(9) {
        grid-column: 1 / span 4;
        grid-row: 9 / span 2;
    }
    
    /* 响应式调整业务图片高度 */
    .services-visual {
        height: 400px;
    }
    
    /* 标题响应式调整 */
    .banner-title {
        font-size: 2.5rem;
    }
    
    .service-value-prop {
        font-size: 48px;
    }
    
    .cases-divider .divider-center {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .services-top {
        flex-direction: column;
    }
    
    .services-visual {
        height: 350px;
        width: 100%;
    }
    
    /* 业务标题在移动端调整 */
    .service-content-item h3 {
        font-size: 48px;
    }
    
    /* 992px以下案例网格布局 */
    .cases-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: auto;
    }
    
    .case-item-container {
        aspect-ratio: 16/9;
        min-height: 160px;
    }
    
    .case-item-container:nth-child(1) {
        grid-column: 1 / span 3;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(2) {
        grid-column: 4 / span 3;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(3) {
        grid-column: 1 / span 3;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(4) {
        grid-column: 4 / span 3;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(5) {
        grid-column: 1 / span 3;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(6) {
        grid-column: 4 / span 3;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(7) {
        grid-column: 1 / span 3;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(8) {
        grid-column: 4 / span 3;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(9) {
        grid-column: 1 / span 3;
        grid-row: 9 / span 2;
    }
    
    .cases-divider .divider-center {
        width: 400px;
    }
    
    /* 移动端案例模块间距调整 */
    .cases-divider {
        margin: 40px 0;
    }
    
    .cases-slogan {
        margin-top: 30px;
        padding: 40px 20px;
    }
    
    /* FAQ提示响应式 */
    .faq-minimal-hint {
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    /* 标题响应式调整 */
    .services-header h2,
    .cases-header h2,
    .news-header h2 {
        font-size: 40px;
    }
    
    .services-grid {
        flex-direction: column;
    }
    
    .service-card {
        flex: 0 0 100%;
        border-radius: 0 !important;
    }
    
    .services-grid .service-card:first-child {
        border-top-left-radius: var(--border-radius-sm) !important;
        border-top-right-radius: var(--border-radius-sm) !important;
        border-bottom-left-radius: 0 !important;
    }
    
    .services-grid .service-card:last-child {
        border-bottom-left-radius: var(--border-radius-sm) !important;
        border-bottom-right-radius: var(--border-radius-sm) !important;
        border-top-right-radius: 0 !important;
    }
    
    /* 业务标题在平板端调整 */
    .service-content-item h3 {
        font-size: 40px;
    }
    
    .slogan-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    /* 768px以下案例网格布局 */
    .cases-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: auto;
    }
    
    .case-item-container {
        aspect-ratio: 16/9;
        min-height: 150px;
    }
    
    .case-item-container:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(2) {
        grid-column: 3 / span 2;
        grid-row: 1 / span 2;
    }
    
    .case-item-container:nth-child(3) {
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(4) {
        grid-column: 3 / span 2;
        grid-row: 3 / span 2;
    }
    
    .case-item-container:nth-child(5) {
        grid-column: 1 / span 2;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(6) {
        grid-column: 3 / span 2;
        grid-row: 5 / span 2;
    }
    
    .case-item-container:nth-child(7) {
        grid-column: 1 / span 2;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(8) {
        grid-column: 3 / span 2;
        grid-row: 7 / span 2;
    }
    
    .case-item-container:nth-child(9) {
        grid-column: 1 / span 2;
        grid-row: 9 / span 2;
    }
    
    .case-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .cases-divider .divider-center {
        width: 300px;
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* 平板端案例模块间距调整 */
    .cases-divider {
        margin: 40px 0;
    }
    
    .cases-slogan {
        margin-top: 30px;
        padding: 40px 30px;
    }
    
    /* 移动端调整业务图片高度 */
    .services-visual {
        height: 300px;
    }
    
    /* 标题响应式调整 */
    .banner-title {
        font-size: 2rem;
    }
    
    .service-value-prop {
        font-size: 40px;
    }
    
    .slogan-title {
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .hint-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    /* 标题响应式调整 */
    .services-header h2,
    .cases-header h2,
    .news-header h2 {
        font-size: 32px;
    }
    
    /* 业务标题在移动端调整 */
    .service-content-item h3 {
        font-size: 36px;
    }
    
    /* 576px以下案例网格布局 - 单列布局 */
    .cases-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    
    .case-item-container:nth-child(1),
    .case-item-container:nth-child(2),
    .case-item-container:nth-child(3),
    .case-item-container:nth-child(4),
    .case-item-container:nth-child(5),
    .case-item-container:nth-child(6),
    .case-item-container:nth-child(7),
    .case-item-container:nth-child(8),
    .case-item-container:nth-child(9) {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/9;
        min-height: 200px;
    }
    
    .cases-divider .divider-center {
        width: 250px;
        font-size: 0.9rem;
        height: 50px;
    }
    
    /* 移动端案例模块间距调整 */
    .cases-divider {
        margin: 30px 0;
    }
    
    .cases-slogan {
        margin-top: 20px;
        padding: 30px 20px;
    }
    
    /* 移动端调整业务图片高度 */
    .services-visual {
        height: 250px;
    }
    
    /* 标题响应式调整 */
    .banner-title {
        font-size: 1.8rem;
    }
    
    .service-value-prop {
        font-size: 36px;
    }
    
    .faq-minimal-hint {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .hint-icon {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.75rem;
        margin-right: 6px;
    }
}