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