/* 全局样式重置 */
* {
    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;
}

/* 容器 */
.ze5f52container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.ze5f52header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.ze5f52header .ze5f52container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.ze5f52logo h1 {
    font-size: 24px;
    color: #2c3e50;
}

.ze5f52main-nav ul {
    display: flex;
    list-style: none;
}

.ze5f52main-nav li {
    margin-left: 30px;
}

.ze5f52main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.ze5f52main-nav a:hover {
    color: #3498db;
}

/* 英雄区域 */
.ze5f52hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.ze5f52hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ze5f52hero-left {
    flex: 1;
    max-width: 600px;
}

.ze5f52hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ze5f52hero-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;
}

.ze5f52hero-image:hover {
    transform: translateY(-5px);
}

.ze5f52hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.ze5f52hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.ze5f52hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.ze5f52stat-item {
    text-align: center;
}

.ze5f52stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ze5f52stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* 按钮样式 */
.ze5f52btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.ze5f52btn-primary {
    background-color: #e74c3c;
    color: white;
}

.ze5f52btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 20px;
}

.ze5f52btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 特点部分 */
.ze5f52features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ze5f52section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.ze5f52section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ze5f52features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.ze5f52feature-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;
}

.ze5f52feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ze5f52feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.ze5f52feature-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);
}

.ze5f52feature-card h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.ze5f52feature-card > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.ze5f52feature-content {
    text-align: left;
}

.ze5f52feature-list {
    display: grid;
    gap: 20px;
}

.ze5f52feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ze5f52feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ze5f52feature-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.ze5f52feature-item-content {
    flex: 1;
}

.ze5f52feature-item-content h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.ze5f52feature-item-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* 功能展示 */
.ze5f52functions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ze5f52functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ze5f52function-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;
}

.ze5f52function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ze5f52function-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.ze5f52function-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.ze5f52function-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);
}

.ze5f52function-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.ze5f52function-content {
    padding: 30px;
}

.ze5f52function-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ze5f52function-item:last-child {
    margin-bottom: 0;
}

.ze5f52function-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ze5f52function-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);
}

.ze5f52function-item-content {
    flex: 1;
}

.ze5f52function-item-content h4 {
    color: #2c3e50;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.ze5f52function-item-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* 下载中心 */
.ze5f52download {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ze5f52download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ze5f52download-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;
}

.ze5f52download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ze5f52download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.ze5f52download-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.ze5f52download-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);
}

.ze5f52download-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.ze5f52download-subtitle {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.ze5f52download-content {
    padding: 30px;
}

.ze5f52version-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.ze5f52version-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ze5f52version-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.ze5f52version-label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.ze5f52version-value {
    display: block;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
}

.ze5f52download-features {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.ze5f52feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ze5f52feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ze5f52feature-icon {
    color: #2ecc71;
    font-size: 18px;
}

.ze5f52feature-text {
    color: #2c3e50;
    font-size: 14px;
}

.ze5f52system-requirements {
    margin-bottom: 20px;
}

.ze5f52system-requirements h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 10px;
}

.ze5f52system-requirements ul {
    list-style: none;
    padding: 0;
}

.ze5f52system-requirements li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.ze5f52system-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

.ze5f52btn-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;
}

.ze5f52btn-download:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ze5f52btn-icon {
    font-size: 20px;
}

.ze5f52mobile-download-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ze5f52btn-apple {
    background: #000;
}

.ze5f52btn-apple:hover {
    background: #333;
}

.ze5f52btn-android {
    background: #3ddc84;
}

.ze5f52btn-android:hover {
    background: #2bb673;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .ze5f52download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze5f52download-grid {
        grid-template-columns: 1fr;
    }

    .ze5f52download-card {
        margin-bottom: 20px;
    }

    .ze5f52download-header {
        padding: 20px;
    }

    .ze5f52download-content {
        padding: 20px;
    }

    .ze5f52version-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ze5f52container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .ze5f52download-grid,
    .ze5f52guide-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .ze5f52download-card,
    .ze5f52guide-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;
    }

    .ze5f52download-header,
    .ze5f52guide-header,
    .ze5f52download-content,
    .ze5f52guide-content {
        padding: 15px !important;
        margin: 0 !important;
    }

    .ze5f52download-header h3,
    .ze5f52guide-content h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        text-align: left !important;
    }

    .ze5f52download-content p,
    .ze5f52guide-content p {
        font-size: 13px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .ze5f52guide-steps,
    .ze5f52guide-tip {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ze5f52step-item {
        margin: 0 !important;
        padding: 8px 0 !important;
    }
}

/* 使用指南 */
.ze5f52guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ze5f52guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ze5f52guide-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;
}

.ze5f52guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ze5f52guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.ze5f52guide-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
}

.ze5f52guide-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);
}

.ze5f52guide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    opacity: 0.2;
}

.ze5f52guide-content {
    padding: 30px;
}

.ze5f52guide-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0 0 10px 0;
    text-align: center;
}

.ze5f52guide-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.ze5f52guide-steps {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.ze5f52step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ze5f52step-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ze5f52step-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);
}

.ze5f52step-text {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

.ze5f52guide-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #e8f4fd;
    border-radius: 10px;
    margin-top: 20px;
}

.ze5f52tip-icon {
    font-size: 20px;
    color: #3498db;
}

.ze5f52tip-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .ze5f52guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze5f52guide-grid {
        grid-template-columns: 1fr;
    }

    .ze5f52guide-card {
        margin-bottom: 20px;
    }

    .ze5f52guide-header {
        padding: 20px;
    }

    .ze5f52guide-content {
        padding: 20px;
    }

    .ze5f52step-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .ze5f52guide-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .ze5f52guide-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;
    }
    .ze5f52guide-header,
    .ze5f52guide-content {
        padding: 15px !important;
    }
    .ze5f52guide-content h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        word-break: break-all;
    }
    .ze5f52guide-content p, .ze5f52step-text, .ze5f52tip-text {
        font-size: 13px !important;
        word-break: break-all;
    }
    .ze5f52guide-steps, .ze5f52guide-tip {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .ze5f52step-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 8px 0 !important;
    }
}

/* FAQ部分 */
.ze5f52faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ze5f52faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ze5f52faq-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;
}

.ze5f52faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.ze5f52faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.ze5f52faq-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.ze5f52faq-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);
}

.ze5f52faq-header h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 0;
}

.ze5f52faq-content {
    padding: 30px;
}

.ze5f52faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.ze5f52faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.ze5f52faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ze5f52faq-question:hover {
    transform: translateX(5px);
}

.ze5f52question-icon {
    font-size: 24px;
    color: #3498db;
}

.ze5f52question-text {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 500;
}

.ze5f52faq-answer {
    padding-left: 39px;
}

.ze5f52faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ze5f52answer-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.ze5f52tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ze5f52tip-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ze5f52tip-icon {
    font-size: 20px;
    color: #3498db;
}

.ze5f52tip-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .ze5f52faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze5f52faq-grid {
        grid-template-columns: 1fr;
    }

    .ze5f52faq-card {
        margin-bottom: 20px;
    }

    .ze5f52faq-header {
        padding: 20px;
    }

    .ze5f52faq-content {
        padding: 20px;
    }

    .ze5f52answer-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ze5f52faq-header {
        padding: 15px;
    }

    .ze5f52faq-icon {
        font-size: 36px;
        padding: 10px;
    }

    .ze5f52faq-header h3 {
        font-size: 20px;
    }

    .ze5f52faq-content {
        padding: 15px;
    }

    .ze5f52question-text {
        font-size: 16px;
    }

    .ze5f52faq-answer p {
        font-size: 14px;
    }

    .ze5f52tip-item {
        padding: 8px;
    }

    .ze5f52tip-icon {
        font-size: 16px;
    }

    .ze5f52tip-text {
        font-size: 12px;
    }
}

/* 页脚 */
.ze5f52footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.ze5f52footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ze5f52footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.ze5f52footer-section ul {
    list-style: none;
}

.ze5f52footer-section ul li {
    margin-bottom: 10px;
}

.ze5f52footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.ze5f52footer-section a:hover {
    opacity: 1;
}

.ze5f52footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .ze5f52container {
        padding: 0 20px;
    }

    .ze5f52hero-content {
        flex-direction: column;
        text-align: center;
    }

    .ze5f52hero-left {
        margin-bottom: 40px;
    }

    .ze5f52hero-stats {
        justify-content: center;
    }

    .ze5f52hero-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .ze5f52hero-image {
        width: 100%;
        height: auto;
    }

    .ze5f52features-grid,
    .ze5f52functions-grid,
    .ze5f52advantages-grid,
    .ze5f52cases-grid,
    .ze5f52partners-grid,
    .ze5f52download-grid,
    .ze5f52guide-grid,
    .ze5f52faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ze5f52header {
        padding: 15px 0;
    }

    .ze5f52header .ze5f52container {
        height: 60px;
    }

    .ze5f52logo h1 {
        font-size: 20px;
    }

    .ze5f52main-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;
    }

    .ze5f52main-nav.ze5f52active {
        display: block;
    }

    .ze5f52main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .ze5f52main-nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .ze5f52main-nav a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }

    .ze5f52mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        color: #2c3e50;
    }

    .ze5f52section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .ze5f52section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .ze5f52features-grid,
    .ze5f52functions-grid,
    .ze5f52download-grid,
    .ze5f52guide-grid,
    .ze5f52faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ze5f52feature-card,
    .ze5f52function-card,
    .ze5f52download-card,
    .ze5f52guide-card,
    .ze5f52faq-card {
        margin-bottom: 20px;
    }

    .ze5f52hero {
        padding: 100px 0 60px;
    }

    .ze5f52hero h2 {
        font-size: 32px;
    }

    .ze5f52hero p {
        font-size: 16px;
    }

    .ze5f52hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ze5f52stat-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 140px;
    }

    .ze5f52stat-number {
        font-size: 24px;
    }

    .ze5f52stat-label {
        font-size: 14px;
    }

    .ze5f52btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .ze5f52footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .ze5f52footer-section ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ze5f52container {
        padding: 0 15px;
    }

    .ze5f52header .ze5f52container {
        height: 50px;
    }

    .ze5f52logo h1 {
        font-size: 18px;
    }

    .ze5f52main-nav {
        top: 50px;
    }

    .ze5f52section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ze5f52section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ze5f52hero {
        padding: 80px 0 40px;
    }

    .ze5f52hero h2 {
        font-size: 28px;
    }

    .ze5f52hero p {
        font-size: 14px;
    }

    .ze5f52hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .ze5f52stat-item {
        flex: 1 1 100%;
    }

    .ze5f52cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ze5f52btn {
        width: 100%;
    }

    .feature-header,
    .ze5f52function-header,
    .ze5f52download-header,
    .ze5f52guide-header,
    .ze5f52faq-header {
        padding: 15px;
    }

    .ze5f52feature-icon,
    .ze5f52function-icon,
    .ze5f52download-icon,
    .ze5f52guide-icon,
    .ze5f52faq-icon {
        font-size: 32px;
        padding: 10px;
    }

    .ze5f52feature-content,
    .ze5f52function-content,
    .ze5f52download-content,
    .ze5f52guide-content,
    .ze5f52faq-content {
        padding: 15px;
    }

    .ze5f52feature-item,
    .ze5f52function-item,
    .ze5f52download-item,
    .ze5f52guide-item,
    .ze5f52faq-item {
        padding: 10px;
    }

    .ze5f52mobile-download-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .ze5f52btn-download {
        width: 100%;
    }
}

/* 添加移动端菜单按钮样式 */
.ze5f52mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    .ze5f52mobile-menu-btn {
        display: block;
    }
}

/* 优化触摸设备体验 */
@media (hover: none) {
    .ze5f52feature-card:hover,
    .ze5f52function-card:hover,
    .ze5f52advantage-card:hover,
    .ze5f52case-card:hover,
    .ze5f52partner-card:hover,
    .ze5f52download-card:hover,
    .ze5f52guide-card:hover,
    .ze5f52faq-card:hover {
        transform: none;
    }

    .ze5f52btn:hover {
        transform: none;
    }

    .ze5f52feature-item:hover,
    .ze5f52function-item:hover,
    .ze5f52advantage-item:hover,
    .case-item:hover,
    .partner-item:hover,
    .ze5f52download-item:hover,
    .ze5f52guide-item:hover,
    .ze5f52faq-item:hover {
        transform: none;
    }
} 