/* /skin/css/css.css */

:root {
    --zhaoan-orange: #f47920;
    --zhaoan-orange-dark: #d96516;
    --zhaoan-orange-light: #ff9a56;
    --zhaoan-dark: #1a1a1a;
    --zhaoan-gray-900: #222;
    --zhaoan-gray-800: #333;
    --zhaoan-gray-700: #444;
    --zhaoan-gray-600: #666;
    --zhaoan-gray-400: #999;
    --zhaoan-gray-200: #ddd;
    --zhaoan-gray-100: #f0f0f0;
    --zhaoan-gray-50: #f8f8f8;
    --zhaoan-white: #fff;
    --zhaoan-radius: 8px;
    --zhaoan-radius-lg: 14px;
    --zhaoan-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --zhaoan-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --zhaoan-transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --zhaoan-section-gap: 80px;
    --zhaoan-container-width: 1200px;
    --zhaoan-header-height: 62px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--zhaoan-gray-800);
    background: var(--zhaoan-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--zhaoan-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.zhaoan-section-container {
    max-width: var(--zhaoan-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.zhaoan-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zhaoan-dark);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.zhaoan-section-title-light {
    color: var(--zhaoan-white);
}

.zhaoan-section-desc {
    font-size: 1rem;
    color: var(--zhaoan-gray-600);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

.zhaoan-section-desc-light {
    color: rgba(255, 255, 255, 0.75);
}

.zhaoan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--zhaoan-transition);
    white-space: nowrap;
    min-height: 48px;
}

.zhaoan-btn-register {
    background: var(--zhaoan-orange);
    color: #fff;
    box-shadow: 0 4px 18px rgba(244, 121, 32, 0.35);
}
.zhaoan-btn-register:hover {
    background: var(--zhaoan-orange-dark);
    box-shadow: 0 6px 24px rgba(244, 121, 32, 0.5);
    transform: translateY(-2px);
}

.zhaoan-btn-call {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.zhaoan-btn-call:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.zhaoan-btn-outline {
    background: transparent;
    color: var(--zhaoan-orange);
    border: 2px solid var(--zhaoan-orange);
}
.zhaoan-btn-outline:hover {
    background: var(--zhaoan-orange);
    color: #fff;
}

/* Header */
.zhaoan-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--zhaoan-header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--zhaoan-gray-200);
    transition: box-shadow var(--zhaoan-transition);
}
.zhaoan-header.zhaoan-header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.zhaoan-header-inner {
    max-width: var(--zhaoan-container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zhaoan-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.zhaoan-brand img {
    height: 36px;
    width: auto;
}

.zhaoan-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.zhaoan-nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--zhaoan-gray-700);
    border-radius: 20px;
    letter-spacing: 0.02em;
    transition: all var(--zhaoan-transition);
}
.zhaoan-nav-link:hover,
.zhaoan-nav-link.zhaoan-active {
    color: var(--zhaoan-orange);
    background: rgba(244, 121, 32, 0.07);
}

.zhaoan-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
}
.zhaoan-nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zhaoan-gray-800);
    border-radius: 2px;
    transition: all var(--zhaoan-transition);
}

/* Hero */
.zhaoan-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--zhaoan-header-height);
    overflow: hidden;
}
.zhaoan-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.zhaoan-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.zhaoan-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(34, 34, 34, 0.78) 40%, rgba(26, 26, 26, 0.9) 100%);
}
.zhaoan-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}
.zhaoan-hero-logo-wrap {
    margin-bottom: 28px;
}
.zhaoan-hero-logo {
    margin: 0 auto;
    height: 52px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.zhaoan-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.zhaoan-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    letter-spacing: 0.04em;
}
.zhaoan-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.zhaoan-hero-cta .zhaoan-btn {
    min-width: 160px;
    font-size: 1.05rem;
    padding: 14px 36px;
}
.zhaoan-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.zhaoan-hero-stat-item {
    text-align: center;
}
.zhaoan-hero-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--zhaoan-orange-light);
    letter-spacing: -0.02em;
}
.zhaoan-hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Services */
.zhaoan-services {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-white);
}
.zhaoan-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.zhaoan-service-card {
    background: var(--zhaoan-gray-50);
    border-radius: var(--zhaoan-radius-lg);
    padding: 32px 28px;
    transition: all var(--zhaoan-transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.zhaoan-service-card:hover {
    border-color: var(--zhaoan-gray-200);
    box-shadow: var(--zhaoan-shadow-lg);
    transform: translateY(-4px);
}
.zhaoan-service-card-marker {
    width: 32px;
    height: 4px;
    background: var(--zhaoan-orange);
    border-radius: 2px;
    margin-bottom: 18px;
}
.zhaoan-service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zhaoan-dark);
    margin-bottom: 10px;
}
.zhaoan-service-card-desc {
    font-size: 0.9rem;
    color: var(--zhaoan-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.zhaoan-service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zhaoan-orange);
    letter-spacing: 0.02em;
}
.zhaoan-service-card-link:hover {
    color: var(--zhaoan-orange-dark);
}

/* Solutions */
.zhaoan-solutions {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-gray-50);
}
.zhaoan-solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}
.zhaoan-solutions-img {
    border-radius: var(--zhaoan-radius-lg);
    box-shadow: var(--zhaoan-shadow-lg);
    width: 100%;
}
.zhaoan-solutions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.zhaoan-solutions-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.zhaoan-solutions-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zhaoan-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zhaoan-solutions-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--zhaoan-dark);
    margin-bottom: 4px;
}
.zhaoan-solutions-item p {
    font-size: 0.9rem;
    color: var(--zhaoan-gray-600);
}
.zhaoan-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.zhaoan-compare-card {
    border-radius: var(--zhaoan-radius-lg);
    padding: 32px 28px;
}
.zhaoan-compare-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}
.zhaoan-compare-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zhaoan-compare-card li {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}
.zhaoan-compare-orange {
    background: var(--zhaoan-orange);
    color: #fff;
}
.zhaoan-compare-orange h3 {
    color: #fff;
}
.zhaoan-compare-orange li {
    background: rgba(255, 255, 255, 0.15);
}
.zhaoan-compare-gray {
    background: var(--zhaoan-gray-800);
    color: #fff;
}
.zhaoan-compare-gray h3 {
    color: rgba(255, 255, 255, 0.8);
}
.zhaoan-compare-gray li {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
}

/* Games */
.zhaoan-games {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-white);
}
.zhaoan-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.zhaoan-games-item {
    border-radius: var(--zhaoan-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--zhaoan-gray-200);
    transition: all var(--zhaoan-transition);
    background: var(--zhaoan-gray-100);
}
.zhaoan-games-item:hover {
    transform: scale(1.04);
    box-shadow: var(--zhaoan-shadow-lg);
    border-color: var(--zhaoan-orange-light);
}
.zhaoan-games-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zhaoan-games-more {
    text-align: center;
}

/* Process */
.zhaoan-process {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-gray-900);
}
.zhaoan-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 44px;
}
.zhaoan-process-step {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--zhaoan-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--zhaoan-transition);
}
.zhaoan-process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--zhaoan-orange);
}
.zhaoan-process-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--zhaoan-orange);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.zhaoan-process-step h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.zhaoan-process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.zhaoan-process-cta {
    text-align: center;
}

/* Cases */
.zhaoan-cases {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-gray-50);
}
.zhaoan-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.zhaoan-cases-item {
    border-radius: var(--zhaoan-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--zhaoan-gray-200);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2 / 1;
    transition: all var(--zhaoan-transition);
}
.zhaoan-cases-item:hover {
    box-shadow: var(--zhaoan-shadow);
    border-color: var(--zhaoan-gray-400);
}
.zhaoan-cases-item img {
    max-height: 60px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(30%);
    transition: all var(--zhaoan-transition);
}
.zhaoan-cases-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* News */
.zhaoan-news {
    padding: var(--zhaoan-section-gap) 0;
    background: var(--zhaoan-white);
}
.zhaoan-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.zhaoan-news-card {
    border-radius: var(--zhaoan-radius-lg);
    overflow: hidden;
    border: 1px solid var(--zhaoan-gray-200);
    transition: all var(--zhaoan-transition);
    background: #fff;
}
.zhaoan-news-card:hover {
    box-shadow: var(--zhaoan-shadow-lg);
    transform: translateY(-4px);
}
.zhaoan-news-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--zhaoan-gray-100);
}
.zhaoan-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.zhaoan-news-card:hover .zhaoan-news-card-img img {
    transform: scale(1.05);
}
.zhaoan-news-card-body {
    padding: 20px;
}
.zhaoan-news-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zhaoan-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.zhaoan-news-card-body p {
    font-size: 0.85rem;
    color: var(--zhaoan-gray-600);
    margin-bottom: 10px;
    line-height: 1.5;
}
.zhaoan-news-card-body time {
    font-size: 0.8rem;
    color: var(--zhaoan-gray-400);
}

/* Footer */
.zhaoan-footer {
    background: var(--zhaoan-gray-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 0;
}
.zhaoan-footer-inner {
    max-width: var(--zhaoan-container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 36px;
}
.zhaoan-footer-logo {
    margin-bottom: 12px;
    height: 32px;
    width: auto;
}
.zhaoan-footer-info p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.6);
}
.zhaoan-footer h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.zhaoan-footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 6px;
}
.zhaoan-footer-contact a {
    color: var(--zhaoan-orange-light);
}
.zhaoan-footer-contact a:hover {
    color: #fff;
}
.zhaoan-footer-qr-box {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--zhaoan-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.zhaoan-footer-qr-placeholder {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}
.zhaoan-footer-qr-link {
    font-size: 0.75rem;
    color: var(--zhaoan-orange-light);
    font-weight: 600;
}
.zhaoan-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zhaoan-footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--zhaoan-transition);
}
.zhaoan-footer-links a:hover {
    color: var(--zhaoan-orange-light);
}
.zhaoan-footer-bottom {
    margin-top: 40px;
    padding: 18px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.zhaoan-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Float buttons */
.zhaoan-float-btns {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zhaoan-float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--zhaoan-shadow-lg);
    transition: all var(--zhaoan-transition);
    font-size: 1.1rem;
}
.zhaoan-float-call {
    background: var(--zhaoan-orange);
    color: #fff;
}
.zhaoan-float-call:hover {
    background: var(--zhaoan-orange-dark);
    transform: translateY(-3px);
}
.zhaoan-float-top {
    background: #fff;
    color: var(--zhaoan-gray-700);
    border: 1px solid var(--zhaoan-gray-200);
}
.zhaoan-float-top:hover {
    background: var(--zhaoan-gray-100);
    transform: translateY(-3px);
}
.zhaoan-float-btn-icon {
    line-height: 1;
}

/* Consult bar */
.zhaoan-consult-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--zhaoan-gray-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 16px;
    display: none;
}
.zhaoan-consult-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
.zhaoan-consult-call {
    background: var(--zhaoan-orange);
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .zhaoan-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zhaoan-solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .zhaoan-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .zhaoan-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .zhaoan-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .zhaoan-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zhaoan-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --zhaoan-section-gap: 56px;
    }
    .zhaoan-section-title {
        font-size: 1.6rem;
    }
    .zhaoan-section-desc {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .zhaoan-nav-list {
        position: fixed;
        top: var(--zhaoan-header-height);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 12px 20px;
        gap: 2px;
        border-bottom: 1px solid var(--zhaoan-gray-200);
        box-shadow: var(--zhaoan-shadow-lg);
        display: none;
        z-index: 999;
    }
    .zhaoan-nav-list.zhaoan-nav-open {
        display: flex;
    }
    .zhaoan-nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    .zhaoan-nav-toggle {
        display: flex;
    }

    .zhaoan-hero-title {
        font-size: 1.8rem;
    }
    .zhaoan-hero-subtitle {
        font-size: 0.95rem;
    }
    .zhaoan-hero-stats {
        gap: 20px;
    }
    .zhaoan-hero-stat-num {
        font-size: 1.5rem;
    }
    .zhaoan-hero-logo {
        height: 40px;
    }

    .zhaoan-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .zhaoan-solutions-wrapper {
        grid-template-columns: 1fr;
    }
    .zhaoan-compare {
        grid-template-columns: 1fr;
    }
    .zhaoan-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .zhaoan-process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .zhaoan-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .zhaoan-news-grid {
        grid-template-columns: 1fr;
    }
    .zhaoan-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .zhaoan-float-btns {
        right: 12px;
        bottom: 80px;
    }
    .zhaoan-float-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .zhaoan-consult-bar {
        display: flex;
    }
    .zhaoan-hero-cta .zhaoan-btn {
        min-width: 140px;
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .zhaoan-hero-title {
        font-size: 1.5rem;
    }
    .zhaoan-hero-logo {
        height: 34px;
    }
    .zhaoan-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .zhaoan-hero-cta .zhaoan-btn {
        width: 100%;
        max-width: 280px;
    }
    .zhaoan-hero-stats {
        gap: 14px;
    }
    .zhaoan-hero-stat-num {
        font-size: 1.3rem;
    }
    .zhaoan-hero-stat-label {
        font-size: 0.75rem;
    }
    .zhaoan-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zhaoan-process-steps {
        grid-template-columns: 1fr;
    }
    .zhaoan-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zhaoan-compare-card {
        padding: 22px 18px;
    }
    .zhaoan-service-card {
        padding: 24px 20px;
    }
    .zhaoan-consult-bar {
        padding: 10px 16px;
    }
    .zhaoan-consult-text {
        font-size: 0.8rem;
    }
    .zhaoan-consult-call {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}