/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .z2033bnav-link,
    .z2033bform-button,
    .z2033bservice-card,
    .z2033badvantage-item,
    .z2033bcontact-card {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }

    .z2033bform-input:focus,
    .z2033bform-textarea:focus,
    .z2033bform-select:focus {
        font-size: 16px; /* 防止iOS自动缩放 */
    }
}

.z2033bcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 头部样式 */
.z2033bheader {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* PC端导航布局 */
.z2033bheader .z2033bcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.z2033bnav {
    overflow-x: visible;
    overflow-y: visible;
}

.z2033bnav::-webkit-scrollbar {
    height: 2px;
}

.z2033bnav::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.z2033bnav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.z2033blogo-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z2033blogo-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.z2033bnav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

.z2033bnav-item {
    flex-shrink: 0;
}

.z2033bnav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    padding: 5px 0;
    display: block;
    white-space: nowrap;
}

.z2033bnav-link:hover {
    opacity: 0.8;
    border-bottom: 2px solid #fff;
}

/* 英雄区块 */
.z2033bhero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.z2033bhero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.z2033bhero-content {
    text-align: left;
}

.z2033bhero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}

.z2033bhero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    animation: z2033bfloat 3s ease-in-out infinite;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@keyframes z2033bfloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.z2033bhero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.z2033bhero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.8;
}

.z2033bhero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 992px) {
    .z2033bhero-features {
        grid-template-columns: 1fr;
    }

    .z2033bframework-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .z2033bframework-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .z2033bcomparison-header,
    .z2033bcomparison-row {
        grid-template-columns: 1.2fr 1.4fr 1.4fr;
    }

    .z2033bprocess-timeline::before {
        left: 40px;
    }

    .z2033bstep-number {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 26px;
    }

    .z2033bstep-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .z2033bprocess-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .z2033bcontact-framework {
        gap: 30px;
    }

    .z2033bcontact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .z2033bcontact-form-wrapper {
        position: static;
    }

    .z2033bservices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z2033bhero-wrapper {
        gap: 35px;
    }
}

/* 横屏手机优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .z2033bhero {
        padding: 40px 0;
    }

    .z2033bhero-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .z2033bhero-content {
        text-align: left;
    }

    .z2033bhero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.z2033bfeature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.z2033bfeature-item > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z2033bfeature-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.z2033bfeature-text {
    font-size: 16px;
    font-weight: bold;
}

.z2033bfeature-detail {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.5;
}

/* 区块标题 */
.z2033bsection-header {
    text-align: center;
    margin-bottom: 50px;
}

.z2033bsection-title {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: bold;
}

.z2033bsection-subtitle {
    font-size: 18px;
    color: #666;
}

/* 服务项目 */
.z2033bservices {
    padding: 80px 0;
    background: #fff;
}

.z2033bservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.z2033bservice-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.z2033bservice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.z2033bservice-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.z2033bservice-title {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: bold;
}

.z2033bservice-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.z2033bservice-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.z2033bservice-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.z2033bservice-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.z2033bservice-note {
    margin-top: 20px;
    padding: 12px;
    background: #f0f4ff;
    border-left: 3px solid #667eea;
    border-radius: 5px;
    font-size: 14px;
    color: #1e3c72;
    font-weight: 500;
}

/* 核心优势 */
.z2033badvantages {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* 对比表格框架 */
.z2033badvantages-comparison {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.z2033bcomparison-header,
.z2033bcomparison-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr;
    border-bottom: 1px solid #e8e8e8;
}

.z2033bcomparison-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: bold;
}

.z2033bcomparison-row:last-child {
    border-bottom: none;
}

.z2033bcomparison-row:nth-child(even) {
    background: #f9f9f9;
}

.z2033bcomparison-row:hover {
    background: #f0f4ff;
}

.z2033bcomparison-col {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.6;
}

.z2033bcomparison-label {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
}

.z2033bcomparison-header .z2033bcomparison-label {
    background: transparent;
    color: #fff;
}

.z2033bcomparison-others {
    color: #888;
}

.z2033bcomparison-us {
    color: #1e3c72;
    font-weight: 500;
}

.z2033bcheck-mark {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
    margin-right: 8px;
}

/* 框架式优势展示 */
.z2033badvantages-framework {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z2033bframework-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 35px;
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.z2033bframework-icon {
    font-size: 64px;
    line-height: 1;
}

.z2033bframework-content {
    flex: 1;
}

.z2033bframework-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.z2033bframework-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.z2033bstat-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.z2033bstat-value {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z2033bstat-text {
    font-size: 13px;
    opacity: 0.9;
}

.z2033bframework-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

/* 优势卡片网格 */
.z2033bframework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.z2033bframework-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e8e8e8;
}

.z2033bframework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.z2033bcard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.z2033bcard-icon {
    font-size: 32px;
    line-height: 1;
}

.z2033bcard-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin: 0;
}

.z2033bcard-body {
    flex: 1;
}

.z2033bcard-highlight {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 12px;
}

.z2033bcard-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 服务流程 */
.z2033bprocess {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* 流程时间轴框架 */
.z2033bprocess-timeline {
    position: relative;
    padding: 20px 0;
}

.z2033bprocess-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.z2033bprocess-step {
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

.z2033bprocess-step:last-child {
    margin-bottom: 0;
}

.z2033bstep-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.z2033bstep-number {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 3;
    border: 5px solid #fff;
}

.z2033bstep-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.z2033bprocess-step:hover .z2033bstep-content {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
    border-color: #667eea;
}

.z2033bstep-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.z2033bstep-icon {
    font-size: 36px;
    line-height: 1;
}

.z2033bstep-title {
    font-size: 22px;
    color: #1e3c72;
    font-weight: bold;
    margin: 0;
    flex: 1;
}

.z2033bstep-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.z2033bbadge-free {
    background: #e8f5e9;
    color: #2e7d32;
}

.z2033bbadge-expert {
    background: #e3f2fd;
    color: #1976d2;
}

.z2033bbadge-secure {
    background: #fff3e0;
    color: #f57c00;
}

.z2033bbadge-fast {
    background: #f3e5f5;
    color: #7b1fa2;
}

.z2033bbadge-success {
    background: #e8f5e9;
    color: #388e3c;
}

.z2033bstep-desc {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
}

.z2033bstep-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
}

.z2033bdetail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.z2033bdetail-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.z2033bdetail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.z2033bvalue-highlight {
    color: #667eea;
    font-size: 15px;
}

/* 流程总结卡片 */
.z2033bprocess-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.z2033bsummary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s;
}

.z2033bsummary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.z2033bsummary-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.z2033bsummary-content {
    flex: 1;
}

.z2033bsummary-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.z2033bsummary-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}


/* 联系我们 */
.z2033bcontact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* 联系框架布局 */
.z2033bcontact-framework {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* 联系信息卡片网格 */
.z2033bcontact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.z2033bcontact-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.z2033bcontact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.z2033bcard-icon-wrapper {
    margin-bottom: 15px;
}

.z2033bcard-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.z2033bcard-content {
    flex: 1;
}

.z2033bcard-title {
    font-size: 18px;
    color: #1e3c72;
    font-weight: bold;
    margin-bottom: 12px;
}

.z2033bcard-phone,
.z2033bcard-time,
.z2033bcard-area-text,
.z2033bcard-promise-text {
    font-size: 22px;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 8px;
}

.z2033bcard-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.z2033bcard-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.z2033bcard-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.z2033bfeature-tag {
    padding: 4px 10px;
    background: #f0f4ff;
    color: #667eea;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 表单区域 */
.z2033bcontact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
    position: sticky;
    top: 100px;
}

.z2033bform-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.z2033bform-title {
    font-size: 24px;
    color: #1e3c72;
    font-weight: bold;
    margin-bottom: 8px;
}

.z2033bform-subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.z2033bform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.z2033bform-group {
    margin-bottom: 18px;
}

.z2033bform-label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.z2033brequired {
    color: #f44336;
}

.z2033bform-input,
.z2033bform-textarea,
.z2033bform-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
    box-sizing: border-box;
}

.z2033bform-input:focus,
.z2033bform-textarea:focus,
.z2033bform-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.z2033bform-textarea {
    resize: vertical;
    min-height: 120px;
}

.z2033bform-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.z2033bform-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.z2033btip-item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.z2033bform-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.z2033bform-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.z2033bbutton-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.z2033bform-button:hover .z2033bbutton-icon {
    transform: translateX(3px);
}

/* 页脚 */
.z2033bfooter {
    background: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
}

.z2033bfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z2033bfooter-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.z2033bfooter-text {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 14px;
}

.z2033bfooter-list {
    list-style: none;
}

.z2033bfooter-list li {
    padding: 8px 0;
    opacity: 0.9;
    font-size: 14px;
}

.z2033bfooter-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z2033bfooter-copyright {
    opacity: 0.8;
    font-size: 14px;
}

/* PC端大屏幕优化 */
@media (min-width: 1400px) {
    .z2033bcontainer {
        max-width: 1400px;
    }

    .z2033bhero-title {
        font-size: 48px;
    }

    .z2033bsection-title {
        font-size: 40px;
    }
}

/* 平板端优化 */
@media (max-width: 1200px) and (min-width: 993px) {
    .z2033bhero-wrapper {
        gap: 50px;
    }

    .z2033bservices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 移动端：导航栏紧贴logo下方，横向排列 */
    .z2033bheader .z2033bcontainer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .z2033blogo {
        width: 100%;
        margin-bottom: 8px;
    }

    .z2033bnav {
        width: 100%;
        margin-top: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .z2033bnav-list {
        justify-content: flex-start;
        gap: 18px;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        min-width: max-content;
    }

    .z2033bnav-item {
        flex-shrink: 0;
    }

    .z2033bnav-link {
        font-size: 13px;
        padding: 3px 0;
        border: none;
        background: none;
        text-decoration: none;
        border-bottom: none;
        border-radius: 0;
        white-space: nowrap;
    }

    .z2033bnav-link:hover {
        border-bottom: none;
        background: none;
        opacity: 0.9;
    }

    .z2033bhero-title {
        font-size: 28px;
    }

    .z2033bhero {
        padding: 35px 0;
    }

    .z2033bhero-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z2033bhero-content {
        text-align: center;
    }

    .z2033bhero-subtitle {
        font-size: 16px;
    }

    .z2033bhero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z2033bfeature-item {
        min-width: auto;
        width: 100%;
    }

    .z2033bhero-image {
        order: -1;
    }

    .z2033bhero-img {
        max-width: 80%;
    }

    .z2033bsection-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .z2033bsection-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .z2033bservices {
        padding: 50px 0;
    }

    .z2033bservice-card {
        padding: 25px;
    }

    .z2033bservice-title {
        font-size: 20px;
    }

    .z2033bservice-desc {
        font-size: 14px;
    }

    .z2033bservices-grid {
        grid-template-columns: 1fr;
    }

    .z2033badvantages {
        padding: 50px 0;
    }

    .z2033badvantages-comparison {
        margin-bottom: 30px;
    }

    .z2033bcomparison-header,
    .z2033bcomparison-row {
        grid-template-columns: 1fr;
        display: block;
    }

    .z2033bcomparison-col {
        padding: 12px 15px;
        border-bottom: 1px solid #e8e8e8;
    }

    .z2033bcomparison-header .z2033bcomparison-col {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .z2033bcomparison-row .z2033bcomparison-label {
        font-weight: bold;
        background: #e8e8e8;
        border-bottom: none;
    }

    .z2033bcomparison-row:last-child .z2033bcomparison-col:last-child {
        border-bottom: none;
    }

    .z2033bframework-primary {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .z2033bframework-icon {
        font-size: 48px;
        margin: 0 auto;
    }

    .z2033bframework-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .z2033bframework-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .z2033bframework-title {
        font-size: 24px;
    }

    .z2033bstat-value {
        font-size: 28px;
    }

    .z2033bprocess {
        padding: 50px 0;
    }

    .z2033bprocess-timeline::before {
        left: 35px;
        top: 60px;
        bottom: 60px;
    }

    .z2033bstep-wrapper {
        gap: 20px;
    }

    .z2033bstep-number {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 24px;
        border-width: 3px;
    }

    .z2033bstep-content {
        padding: 20px 25px;
    }

    .z2033bstep-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .z2033bstep-icon {
        font-size: 28px;
    }

    .z2033bstep-title {
        font-size: 18px;
    }

    .z2033bstep-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z2033bprocess-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .z2033bcontact {
        padding: 50px 0;
    }

    .z2033bcontact-framework {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z2033bcontact-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .z2033bcontact-form-wrapper {
        position: static;
        padding: 30px;
    }

    .z2033bform-row {
        grid-template-columns: 1fr;
    }

    .z2033bform-group {
        margin-bottom: 16px;
    }

    .z2033bform-input,
    .z2033bform-textarea,
    .z2033bform-select {
        font-size: 16px;
    }

    .z2033bheader {
        padding: 15px 0;
    }

    .z2033blogo-text {
        font-size: 24px;
    }

    .z2033blogo-subtitle {
        font-size: 12px;
    }

    .z2033bnav-link {
        font-size: 14px;
    }

    .z2033bfooter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z2033bfooter-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .z2033blogo-text {
        font-size: 22px;
    }

    .z2033bheader {
        padding: 12px 0;
    }

    .z2033bheader .z2033bcontainer {
        gap: 0;
    }

    .z2033bnav {
        margin-top: 6px;
    }

    .z2033bnav-list {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        min-width: max-content;
    }

    .z2033bnav-item {
        flex-shrink: 0;
    }

    .z2033bnav-link {
        text-align: left;
        padding: 3px 0;
        background: none;
        border-radius: 0;
        border: none;
        border-bottom: none;
        font-size: 12px;
        text-decoration: none;
        white-space: nowrap;
    }

    .z2033bnav-link:hover {
        border-bottom: none;
        background: none;
        opacity: 0.9;
    }

    .z2033bhero {
        padding: 30px 0;
    }

    .z2033bhero-wrapper {
        gap: 20px;
    }

    .z2033bhero-title {
        margin-bottom: 12px;
    }

    .z2033bhero-subtitle {
        margin-bottom: 12px;
    }

    .z2033bhero-features {
        margin-top: 20px;
        gap: 15px;
    }

    .z2033bhero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .z2033bhero-subtitle {
        font-size: 15px;
    }

    .z2033bhero-img {
        max-width: 90%;
    }

    .z2033bhero-image {
        padding: 5px;
    }

    .z2033bservices,
    .z2033badvantages,
    .z2033bprocess,
    .z2033bcontact {
        padding: 35px 0;
    }

    .z2033bcontact-cards {
        gap: 15px;
    }

    .z2033bcontact-card {
        padding: 20px;
    }

    .z2033bcard-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .z2033bcard-phone,
    .z2033bcard-time,
    .z2033bcard-area-text,
    .z2033bcard-promise-text {
        font-size: 18px;
    }

    .z2033bcontact-form-wrapper {
        padding: 25px 20px;
    }

    .z2033bform-title {
        font-size: 20px;
    }

    .z2033bform-subtitle {
        font-size: 13px;
    }

    .z2033bprocess-timeline::before {
        left: 25px;
        display: none;
    }

    .z2033bstep-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .z2033bstep-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 20px;
        margin: 0 auto;
    }

    .z2033bstep-content {
        padding: 18px 20px;
        text-align: center;
    }

    .z2033bstep-header {
        justify-content: center;
        text-align: center;
    }

    .z2033bstep-title {
        font-size: 17px;
    }

    .z2033bstep-desc {
        font-size: 14px;
    }

    .z2033bprocess-summary {
        margin-top: 30px;
    }

    .z2033bsummary-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .z2033bsummary-icon {
        font-size: 36px;
        margin: 0 auto;
    }

    .z2033bcomparison-col {
        font-size: 14px;
        padding: 10px 12px;
    }

    .z2033bframework-primary {
        padding: 25px 20px;
    }

    .z2033bframework-card {
        padding: 20px;
    }

    .z2033bcard-title {
        font-size: 16px;
    }

    .z2033bcard-highlight {
        font-size: 16px;
    }

    .z2033bcard-desc {
        font-size: 13px;
    }

    .z2033bframework-primary {
        padding: 20px;
    }

    .z2033bframework-title {
        font-size: 20px;
    }

    .z2033bstat-value {
        font-size: 24px;
    }

    .z2033badvantages {
        padding: 40px 0;
    }

    .z2033bprocess {
        padding: 40px 0;
    }

    .z2033bcontact {
        padding: 40px 0;
    }

    .z2033bservice-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .z2033bstep-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .z2033bform-button {
        font-size: 15px;
        padding: 14px;
        min-height: 44px; /* 触摸友好的最小高度 */
    }

    .z2033bform-input,
    .z2033bform-textarea,
    .z2033bform-select {
        min-height: 44px; /* 触摸友好的最小高度 */
        font-size: 16px; /* 防止iOS自动缩放 */
    }

    .z2033bform-textarea {
        min-height: 100px;
    }

    .z2033bcontainer {
        padding: 0 15px;
    }

    .z2033bheader {
        padding: 12px 0;
    }

    .z2033blogo-text {
        font-size: 20px;
    }

    .z2033bnav-list {
        gap: 12px;
        padding-bottom: 3px;
    }

    .z2033bnav-link {
        font-size: 12px;
        padding: 3px 0;
    }
}

