/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 容器 */
.z2b9ebcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z2b9ebheader {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.z2b9ebheader .z2b9ebcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.z2b9eblogo h1 {
    font-size: 24px;
    color: #2c3e50;
}

.z2b9ebmain-nav ul {
    display: flex;
    list-style: none;
}

.z2b9ebmain-nav li {
    margin-left: 30px;
}

.z2b9ebmain-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.z2b9ebmain-nav a:hover {
    color: #3498db;
}

/* 英雄区域 */
.z2b9ebhero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.z2b9ebhero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z2b9ebhero-left {
    flex: 1;
    max-width: 600px;
}

.z2b9ebhero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z2b9ebhero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.z2b9ebhero-image:hover {
    transform: translateY(-5px);
}

.z2b9ebhero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.z2b9ebhero-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.z2b9ebhero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.z2b9ebstat-item {
    text-align: center;
}

.z2b9ebstat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.z2b9ebstat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* 按钮样式 */
.z2b9ebbtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z2b9ebbtn-primary {
    background-color: #e74c3c;
    color: white;
}

.z2b9ebbtn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 20px;
}

.z2b9ebbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 特点部分 */
.z2b9ebfeatures {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.z2b9ebsection-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.z2b9ebsection-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.z2b9ebfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.z2b9ebfeature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.z2b9ebfeature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.z2b9ebfeature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.z2b9ebfeature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z2b9ebfeature-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.z2b9ebfeature-card > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.z2b9ebfeature-content {
    text-align: left;
}

.z2b9ebfeature-list {
    display: grid;
    gap: 20px;
}

.z2b9ebfeature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.z2b9ebfeature-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.z2b9ebfeature-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.z2b9ebfeature-item-content {
    flex: 1;
}

.z2b9ebfeature-item-content h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.z2b9ebfeature-item-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* 功能展示 */
.z2b9ebfunctions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z2b9ebfunctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.z2b9ebfunction-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.z2b9ebfunction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.z2b9ebfunction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.z2b9ebfunction-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.z2b9ebfunction-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z2b9ebfunction-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.z2b9ebfunction-content {
    padding: 30px;
}

.z2b9ebfunction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.z2b9ebfunction-item:last-child {
    margin-bottom: 0;
}

.z2b9ebfunction-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.z2b9ebfunction-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.z2b9ebfunction-item-content {
    flex: 1;
}

.z2b9ebfunction-item-content h4 {
    color: #2c3e50;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.z2b9ebfunction-item-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* 下载中心 */
.z2b9ebdownload {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z2b9ebdownload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.z2b9ebdownload-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.z2b9ebdownload-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.z2b9ebdownload-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.z2b9ebdownload-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.z2b9ebdownload-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z2b9ebdownload-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.z2b9ebdownload-subtitle {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.z2b9ebdownload-content {
    padding: 30px;
}

.z2b9ebversion-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.z2b9ebversion-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.z2b9ebversion-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.z2b9ebversion-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.z2b9ebversion-value {
    display: block;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
}

.z2b9ebdownload-features {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.z2b9ebfeature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.z2b9ebfeature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.z2b9ebfeature-icon {
    color: #2ecc71;
    font-size: 18px;
}

.z2b9ebfeature-text {
    color: #2c3e50;
    font-size: 14px;
}

.z2b9ebsystem-requirements {
    margin-bottom: 20px;
}

.z2b9ebsystem-requirements h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 10px;
}

.z2b9ebsystem-requirements ul {
    list-style: none;
    padding: 0;
}

.z2b9ebsystem-requirements li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.z2b9ebsystem-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

.z2b9ebbtn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.z2b9ebbtn-download:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.z2b9ebbtn-icon {
    font-size: 20px;
}

.z2b9ebmobile-download-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.z2b9ebbtn-apple {
    background: #000;
}

.z2b9ebbtn-apple:hover {
    background: #333;
}

.z2b9ebbtn-android {
    background: #3ddc84;
}

.z2b9ebbtn-android:hover {
    background: #2bb673;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .z2b9ebdownload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z2b9ebdownload-grid {
        grid-template-columns: 1fr;
    }

    .z2b9ebdownload-card {
        margin-bottom: 20px;
    }

    .z2b9ebdownload-header {
        padding: 20px;
    }

    .z2b9ebdownload-content {
        padding: 20px;
    }

    .z2b9ebversion-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .z2b9ebcontainer {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .z2b9ebdownload-grid,
    .z2b9ebguide-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .z2b9ebdownload-card,
    .z2b9ebguide-card {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        background: white !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }

    .z2b9ebdownload-header,
    .z2b9ebguide-header,
    .z2b9ebdownload-content,
    .z2b9ebguide-content {
        padding: 15px !important;
        margin: 0 !important;
    }

    .z2b9ebdownload-header h3,
    .z2b9ebguide-content h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        text-align: left !important;
    }

    .z2b9ebdownload-content p,
    .z2b9ebguide-content p {
        font-size: 13px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .z2b9ebguide-steps,
    .z2b9ebguide-tip {
        margin: 0 !important;
        padding: 0 !important;
    }

    .z2b9ebstep-item {
        margin: 0 !important;
        padding: 8px 0 !important;
    }
}

/* 使用指南 */
.z2b9ebguide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z2b9ebguide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.z2b9ebguide-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.z2b9ebguide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.z2b9ebguide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.z2b9ebguide-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
}

.z2b9ebguide-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z2b9ebguide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    opacity: 0.2;
}

.z2b9ebguide-content {
    padding: 30px;
}

.z2b9ebguide-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 10px 0;
    text-align: center;
}

.z2b9ebguide-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.z2b9ebguide-steps {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.z2b9ebstep-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.z2b9ebstep-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.z2b9ebstep-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.z2b9ebstep-text {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

.z2b9ebguide-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #e8f4fd;
    border-radius: 10px;
    margin-top: 20px;
}

.z2b9ebtip-icon {
    font-size: 20px;
    color: #3498db;
}

.z2b9ebtip-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .z2b9ebguide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z2b9ebguide-grid {
        grid-template-columns: 1fr;
    }

    .z2b9ebguide-card {
        margin-bottom: 20px;
    }

    .z2b9ebguide-header {
        padding: 20px;
    }

    .z2b9ebguide-content {
        padding: 20px;
    }

    .z2b9ebstep-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .z2b9ebguide-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .z2b9ebguide-card {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        margin-bottom: 0 !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        padding: 0 !important;
        background: white !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
    .z2b9ebguide-header,
    .z2b9ebguide-content {
        padding: 15px !important;
    }
    .z2b9ebguide-content h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        word-break: break-all;
    }
    .z2b9ebguide-content p, .z2b9ebstep-text, .z2b9ebtip-text {
        font-size: 13px !important;
        word-break: break-all;
    }
    .z2b9ebguide-steps, .z2b9ebguide-tip {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .z2b9ebstep-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 8px 0 !important;
    }
}

/* FAQ部分 */
.z2b9ebfaq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z2b9ebfaq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.z2b9ebfaq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.z2b9ebfaq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.z2b9ebfaq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.z2b9ebfaq-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.z2b9ebfaq-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.z2b9ebfaq-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.z2b9ebfaq-content {
    padding: 30px;
}

.z2b9ebfaq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.z2b9ebfaq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.z2b9ebfaq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z2b9ebfaq-question:hover {
    transform: translateX(5px);
}

.z2b9ebquestion-icon {
    font-size: 24px;
    color: #3498db;
}

.z2b9ebquestion-text {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
}

.z2b9ebfaq-answer {
    padding-left: 39px;
}

.z2b9ebfaq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.z2b9ebanswer-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.z2b9ebtip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.z2b9ebtip-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.z2b9ebtip-icon {
    font-size: 20px;
    color: #3498db;
}

.z2b9ebtip-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .z2b9ebfaq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z2b9ebfaq-grid {
        grid-template-columns: 1fr;
    }

    .z2b9ebfaq-card {
        margin-bottom: 20px;
    }

    .z2b9ebfaq-header {
        padding: 20px;
    }

    .z2b9ebfaq-content {
        padding: 20px;
    }

    .z2b9ebanswer-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .z2b9ebfaq-header {
        padding: 15px;
    }

    .z2b9ebfaq-icon {
        font-size: 36px;
        padding: 10px;
    }

    .z2b9ebfaq-header h3 {
        font-size: 20px;
    }

    .z2b9ebfaq-content {
        padding: 15px;
    }

    .z2b9ebquestion-text {
        font-size: 16px;
    }

    .z2b9ebfaq-answer p {
        font-size: 14px;
    }

    .z2b9ebtip-item {
        padding: 8px;
    }

    .z2b9ebtip-icon {
        font-size: 16px;
    }

    .z2b9ebtip-text {
        font-size: 12px;
    }
}

/* 页脚 */
.z2b9ebfooter {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.z2b9ebfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.z2b9ebfooter-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.z2b9ebfooter-section ul {
    list-style: none;
}

.z2b9ebfooter-section ul li {
    margin-bottom: 10px;
}

.z2b9ebfooter-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.z2b9ebfooter-section a:hover {
    opacity: 1;
}

.z2b9ebfooter-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .z2b9ebcontainer {
        padding: 0 20px;
    }

    .z2b9ebhero-content {
        flex-direction: column;
        text-align: center;
    }

    .z2b9ebhero-left {
        margin-bottom: 40px;
    }

    .z2b9ebhero-stats {
        justify-content: center;
    }

    .z2b9ebhero-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .z2b9ebhero-image {
        width: 100%;
        height: auto;
    }

    .z2b9ebfeatures-grid,
    .z2b9ebfunctions-grid,
    .z2b9ebadvantages-grid,
    .z2b9ebcases-grid,
    .z2b9ebpartners-grid,
    .z2b9ebdownload-grid,
    .z2b9ebguide-grid,
    .z2b9ebfaq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .z2b9ebheader {
        padding: 15px 0;
    }

    .z2b9ebheader .z2b9ebcontainer {
        height: 60px;
    }

    .z2b9eblogo h1 {
        font-size: 20px;
    }

    .z2b9ebmain-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .z2b9ebmain-nav.active {
        display: block;
    }

    .z2b9ebmain-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .z2b9ebmain-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .z2b9ebmain-nav a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }

    .z2b9ebmobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        color: #2c3e50;
    }

    .z2b9ebsection-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .z2b9ebsection-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .z2b9ebfeatures-grid,
    .z2b9ebfunctions-grid,
    .z2b9ebdownload-grid,
    .z2b9ebguide-grid,
    .z2b9ebfaq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z2b9ebfeature-card,
    .z2b9ebfunction-card,
    .z2b9ebdownload-card,
    .z2b9ebguide-card,
    .z2b9ebfaq-card {
        margin-bottom: 20px;
    }

    .z2b9ebhero {
        padding: 100px 0 60px;
    }

    .z2b9ebhero h2 {
        font-size: 32px;
    }

    .z2b9ebhero p {
        font-size: 16px;
    }

    .z2b9ebhero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .z2b9ebstat-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 140px;
    }

    .z2b9ebstat-number {
        font-size: 24px;
    }

    .z2b9ebstat-label {
        font-size: 14px;
    }

    .z2b9ebbtn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .z2b9ebfooter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .z2b9ebfooter-section ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .z2b9ebcontainer {
        padding: 0 15px;
    }

    .z2b9ebheader .z2b9ebcontainer {
        height: 50px;
    }

    .z2b9eblogo h1 {
        font-size: 18px;
    }

    .z2b9ebmain-nav {
        top: 50px;
    }

    .z2b9ebsection-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .z2b9ebsection-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .z2b9ebhero {
        padding: 80px 0 40px;
    }

    .z2b9ebhero h2 {
        font-size: 28px;
    }

    .z2b9ebhero p {
        font-size: 14px;
    }

    .z2b9ebhero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .z2b9ebstat-item {
        flex: 1 1 100%;
    }

    .z2b9ebcta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .z2b9ebbtn {
        width: 100%;
    }

    .z2b9ebfeature-header,
    .z2b9ebfunction-header,
    .z2b9ebdownload-header,
    .z2b9ebguide-header,
    .z2b9ebfaq-header {
        padding: 15px;
    }

    .z2b9ebfeature-icon,
    .z2b9ebfunction-icon,
    .z2b9ebdownload-icon,
    .z2b9ebguide-icon,
    .z2b9ebfaq-icon {
        font-size: 32px;
        padding: 10px;
    }

    .z2b9ebfeature-content,
    .z2b9ebfunction-content,
    .z2b9ebdownload-content,
    .z2b9ebguide-content,
    .z2b9ebfaq-content {
        padding: 15px;
    }

    .z2b9ebfeature-item,
    .z2b9ebfunction-item,
    .z2b9ebdownload-item,
    .z2b9ebguide-item,
    .z2b9ebfaq-item {
        padding: 10px;
    }

    .z2b9ebmobile-download-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .z2b9ebbtn-download {
        width: 100%;
    }
}

/* 添加移动端菜单按钮样式 */
.z2b9ebmobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    .z2b9ebmobile-menu-btn {
        display: block;
    }
}

/* 优化触摸设备体验 */
@media (hover: none) {
    .z2b9ebfeature-card:hover,
    .z2b9ebfunction-card:hover,
    .z2b9ebadvantage-card:hover,
    .z2b9ebcase-card:hover,
    .z2b9ebpartner-card:hover,
    .z2b9ebdownload-card:hover,
    .z2b9ebguide-card:hover,
    .z2b9ebfaq-card:hover {
        transform: none;
    }

    .z2b9ebbtn:hover {
        transform: none;
    }

    .z2b9ebfeature-item:hover,
    .z2b9ebfunction-item:hover,
    .z2b9ebadvantage-item:hover,
    .z2b9ebcase-item:hover,
    .z2b9ebpartner-item:hover,
    .z2b9ebdownload-item:hover,
    .z2b9ebguide-item:hover,
    .z2b9ebfaq-item:hover {
        transform: none;
    }
} 