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