:root {
    --primary: #2B3A67;
    --secondary: #14B8A6;
    --accent: #F59E0B;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--light);
}

.z740f8container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.z740f8section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4B5563;
}

/* 头部样式 */
.z740f8site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
}

.z740f8top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
}

.z740f8top-notice {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    display: block;
}

.z740f8main-nav {
    padding: 12px 0;
}

.z740f8main-nav .z740f8container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo a {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.z740f8logo a {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.z740f8nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.z740f8menu-toggle {
    display: none;
}

.z740f8nav-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.z740f8nav-list a:hover {
    color: var(--accent);
}

.z740f8nav-list li.z740f8this > a,
.z740f8nav-list li.z740f8this a {
    color: var(--accent);
    font-weight: 600;
}

/* 英雄区域 */
.z740f8hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.z740f8hero .z740f8container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z740f8hero-content {
    flex: 1;
    max-width: 600px;
}

.z740f8hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z740f8hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.z740f8hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.z740f8hero-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.z740f8quick-download {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.z740f8quick-btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z740f8quick-btn.z740f8android {
    background: var(--accent);
    color: var(--white);
}

.z740f8quick-btn.z740f8ios {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.z740f8quick-btn.z740f8register {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.z740f8quick-btn.z740f8register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.z740f8quick-btn.z740f8register:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.2);
}

.z740f8quick-btn.z740f8register:hover::before {
    opacity: 1;
}

.z740f8quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.z740f8hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.z740f8stat-item {
    text-align: center;
}

.z740f8stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* 版本选择区域 */
.z740f8versions {
    padding: 6rem 0;
    background: var(--white);
}

.z740f8version-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z740f8version-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.z740f8version-card:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
    }

    .z740f8menu-toggle {
        display: block;
        width: 24px;
        height: 18px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }

    .z740f8menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--dark);
        position: absolute;
        left: 0;
        top: 8px;
        transition: all 0.3s;
    }

    .z740f8menu-toggle::before,
    .z740f8menu-toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--dark);
        left: 0;
        transition: all 0.3s;
    }

    .z740f8menu-toggle::before {
        top: 0;
    }

    .z740f8menu-toggle::after {
        bottom: 0;
    }

    .z740f8menu-toggle.z740f8active span {
        opacity: 0;
    }

    .z740f8menu-toggle.z740f8active::before {
        transform: rotate(45deg);
        top: 8px;
    }

    .z740f8menu-toggle.z740f8active::after {
        transform: rotate(-45deg);
        bottom: 8px;
    }

    .z740f8nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .z740f8nav-list.z740f8active {
        display: flex;
    }

    .z740f8nav-list li {
        width: 100%;
    }

    .z740f8nav-list a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light);
    }

    .z740f8hero .z740f8container {
        flex-direction: column;
        text-align: center;
    }
    
    .z740f8hero-content {
        max-width: 100%;
    }
    
    .z740f8hero-image {
        margin-top: 30px;
    }

    .z740f8hero h1 {
        font-size: 2rem;
    }

    .z740f8hero-desc {
        font-size: 1rem;
    }

    .z740f8quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .z740f8quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .z740f8hero-stats {
        grid-template-columns: 1fr;
    }

    .z740f8download-cards,
    .z740f8features-grid,
    .z740f8guide-steps,
    .z740f8security-grid,
    .z740f8footer-grid {
        grid-template-columns: 1fr;
    }

    .z740f8footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .z740f8footer-col {
        text-align: center;
    }

    .z740f8quick-btn.z740f8register {
        border-width: 1px;
        font-size: 14px;
    }
}

/* 下载区域样式 */
.z740f8download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z740f8download-framework {
    max-width: 1000px;
    margin: 0 auto;
}

.z740f8framework-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.z740f8download-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.z740f8download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.z740f8card-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.z740f8platform-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
}

.z740f8card-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.z740f8card-body {
    padding: 1.5rem;
}

.z740f8version-info {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.z740f8version-number {
    display: block;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.z740f8version-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.z740f8version-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.z740f8version-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.z740f8download-actions {
    text-align: center;
}

.z740f8download-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.z740f8download-btn:hover {
    background: #e08c00;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8download-section {
        padding: 3rem 0;
    }

    .z740f8framework-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z740f8card-header {
        padding: 1.25rem;
    }

    .z740f8platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .z740f8card-body {
        padding: 1.25rem;
    }

    .z740f8version-features li {
        font-size: 0.9rem;
    }

    .z740f8download-btn {
        padding: 0.625rem 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z740f8framework-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 特色功能区域 */
.z740f8features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z740f8features-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.z740f8features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z740f8feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.z740f8feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z740f8feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent);
}

.z740f8feature-content {
    text-align: center;
}

.z740f8feature-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.z740f8feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z740f8feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.z740f8feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.z740f8feature-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8features-section {
        padding: 4rem 0;
    }

    .z740f8features-framework {
        padding: 1rem;
    }

    .z740f8features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z740f8feature-card {
        padding: 1.5rem;
    }

    .z740f8feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z740f8feature-content h3 {
        font-size: 1.25rem;
    }

    .z740f8feature-content p {
        font-size: 0.9rem;
    }

    .z740f8feature-list li {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z740f8features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 安装教程区域 */
.z740f8guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z740f8guide-framework {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.z740f8guide-timeline {
    position: relative;
    padding: 2rem 0;
}

.z740f8guide-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.z740f8guide-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.z740f8guide-step:last-child {
    margin-bottom: 0;
}

.z740f8step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--white);
    z-index: 1;
}

.z740f8step-content {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.z740f8guide-step:nth-child(odd) .z740f8step-content {
    margin-right: auto;
}

.z740f8guide-step:nth-child(even) .z740f8step-content {
    margin-left: auto;
}

.z740f8step-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z740f8step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.z740f8step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
}

.z740f8step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.z740f8step-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.z740f8step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.z740f8feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8guide-section {
        padding: 4rem 0;
    }

    .z740f8guide-framework {
        padding: 1rem;
    }

    .z740f8guide-timeline::before {
        left: 20px;
    }

    .z740f8guide-step {
        margin-bottom: 2rem;
    }

    .z740f8step-number {
        left: 20px;
        transform: none;
    }

    .z740f8step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .z740f8step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .z740f8step-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .z740f8step-features {
        justify-content: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z740f8guide-timeline::before {
        left: 30px;
    }

    .z740f8step-number {
        left: 30px;
        transform: none;
    }

    .z740f8step-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
}

/* 安全保障区域 */
.z740f8security-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z740f8security-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.z740f8security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z740f8security-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.z740f8security-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z740f8security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent);
}

.z740f8security-content {
    text-align: center;
}

.z740f8security-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.z740f8security-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z740f8security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.z740f8feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.z740f8feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8security-section {
        padding: 4rem 0;
    }

    .z740f8security-framework {
        padding: 1rem;
    }

    .z740f8security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z740f8security-card {
        padding: 1.5rem;
    }

    .z740f8security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z740f8security-content h3 {
        font-size: 1.25rem;
    }

    .z740f8security-content p {
        font-size: 0.9rem;
    }

    .z740f8feature-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z740f8security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 页脚样式 */
.z740f8site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.z740f8footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.z740f8footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.z740f8footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.z740f8footer-col ul {
    list-style: none;
}

.z740f8footer-col ul li {
    margin-bottom: 0.75rem;
}

.z740f8footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.z740f8footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.z740f8related-links {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.z740f8copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* 广告区域样式 */
.z740f8ad-section {
    padding: 40px 0;
    background: var(--background);
}

.z740f8ad-section .z740f8container {
    text-align: center;
}

/* 友情链接和相关站点样式 */
.z740f8related-links {
    padding: 40px 0;
    background: var(--section-bg);
}

.z740f8friend-links {
    margin-bottom: 30px;
}

.z740f8related-sites ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.z740f8related-sites li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    background: var(--background);
    transition: var(--transition);
}

.z740f8related-sites li a:hover {
    color: var(--secondary-color);
    box-shadow: var(--card-shadow);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8related-sites ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* 底部导航样式 */
.z740f8footer-nav {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--light-text);
}

.z740f8footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.z740f8footer-nav-column h4 {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.z740f8footer-nav-column ul {
    list-style: none;
}

.z740f8footer-nav-column ul li {
    margin-bottom: 12px;
}

.z740f8footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.z740f8footer-nav-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* 调整页脚样式 */
.z740f8site-footer {
    background: #162b33; /* 稍深一点的背景色 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z740f8footer-nav {
        padding: 40px 0;
    }

    .z740f8footer-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .z740f8footer-nav-column {
        text-align: center;
    }

    .z740f8footer-nav-column h4 {
        font-size: 16px;
    }

    .z740f8footer-nav-column ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .z740f8footer-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* PC端导航样式（1200px以上） */
@media screen and (min-width: 1201px) {
    .z740f8container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .z740f8nav-toggle {
        display: none;
    }

    .z740f8nav-menu {
        display: flex !important;
        gap: 30px;
    }
}

/* 平板端适配（768px - 1200px） */
@media screen and (max-width: 1200px) {
    .z740f8container {
        max-width: 100%;
        padding: 0 30px;
    }

    .z740f8banner-content h1 {
        font-size: 40px;
    }

    .z740f8features-grid,
    .z740f8download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动端适配（768px以下） */
@media screen and (max-width: 768px) {
    .z740f8main-nav {
        padding: 8px 0;
    }

    .z740f8main-nav .z740f8container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .z740f8menu-toggle {
        width: 24px;
        height: 20px;
    }

    .z740f8nav-list {
        padding: 10px 0;
    }

    .z740f8nav-list a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .z740f8hero {
        padding: 100px 0 60px;
    }

    .z740f8hero h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .z740f8hero-desc {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .z740f8quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .z740f8quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .z740f8hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 2rem;
    }

    .z740f8download-section {
        padding: 3rem 0;
    }

    .z740f8download-framework {
        padding: 0 15px;
    }

    .z740f8framework-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z740f8download-card {
        margin: 0;
    }

    .z740f8card-header {
        padding: 1.25rem;
    }

    .z740f8platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .z740f8card-body {
        padding: 1.25rem;
    }

    .z740f8version-info {
        padding: 0.75rem;
    }

    .z740f8version-features li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .z740f8download-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .z740f8features-section {
        padding: 3rem 0;
    }

    .z740f8features-framework {
        padding: 0 15px;
    }

    .z740f8features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z740f8feature-card {
        padding: 1.5rem;
    }

    .z740f8feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z740f8feature-content h3 {
        font-size: 18px;
    }

    .z740f8feature-content p {
        font-size: 14px;
    }

    .z740f8feature-list li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .z740f8guide-section {
        padding: 3rem 0;
    }

    .z740f8guide-simple-steps {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 15px;
    }

    .z740f8guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }

    .z740f8step-num {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .z740f8step-title {
        font-size: 16px;
    }

    .z740f8step-desc {
        font-size: 14px;
    }

    .z740f8security-section {
        padding: 3rem 0;
    }

    .z740f8security-framework {
        padding: 0 15px;
    }

    .z740f8security-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z740f8security-card {
        padding: 1.5rem;
    }

    .z740f8security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z740f8security-content h3 {
        font-size: 18px;
    }

    .z740f8security-content p {
        font-size: 14px;
    }

    .z740f8feature-item {
        font-size: 14px;
    }

    .z740f8site-footer {
        padding: 40px 0 20px;
    }

    .z740f8footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .z740f8footer-col h4 {
        margin-bottom: 1rem;
    }

    .z740f8footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .z740f8footer-col ul li {
        margin-bottom: 0.5rem;
    }

    .z740f8footer-col ul li a {
        font-size: 14px;
    }

    .z740f8copyright {
        font-size: 13px;
        margin-top: 20px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-width: 360px) {
    .z740f8container {
        padding: 0 12px;
    }

    .z740f8banner-content h1 {
        font-size: 24px;
    }

    .z740f8intro-text {
        font-size: 14px;
    }

    .z740f8btn-primary, .z740f8btn-outline {
        padding: 10px 15px;
        font-size: 14px;
    }

    .z740f8download-card,
    .z740f8feature-card,
    .z740f8security-card,
    .z740f8guide-simple-step {
        padding: 1rem;
    }

    .z740f8card-header h3,
    .z740f8feature-content h3,
    .z740f8security-content h3 {
        font-size: 16px;
    }

    .z740f8version-features li,
    .z740f8feature-list li,
    .z740f8feature-item {
        font-size: 13px;
    }
}

/* 按钮样式 */
.z740f8btn-download,
.z740f8btn-guide {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z740f8btn-download {
    background: var(--accent);
    color: var(--white);
}

.z740f8btn-guide {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* 简洁版安装教程样式 */
.z740f8guide-simple-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 0 0;
    flex-wrap: wrap;
}

.z740f8guide-simple-step {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    transition: background 0.2s, transform 0.2s;
}

.z740f8guide-simple-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.z740f8step-num {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.z740f8step-info {
    flex: 1;
}

.z740f8step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.z740f8step-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .z740f8guide-simple-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .z740f8guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }
}

/* ========== 常见问题（首页） ========== */
.z740f8faq-section {
    padding: 4rem 0;
    background: var(--white);
    color: var(--dark);
}

.z740f8faq-section h2 {
    color: var(--primary);
}

.z740f8faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.z740f8faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
    background: var(--light);
}

.z740f8faq-q {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 0;
    list-style: none;
}

.z740f8faq-item summary::-webkit-details-marker {
    display: none;
}

.z740f8faq-q::before {
    content: "＋";
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--accent);
    font-weight: bold;
}

.z740f8faq-item[open] .z740f8faq-q::before {
    content: "－";
}

.z740f8faq-a {
    padding: 0 0 1rem 1.75rem;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ========== 首页资讯板块（5×2） ========== */
.z740f8home-articles-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
    color: var(--dark);
}

.z740f8home-articles-section h2 {
    color: var(--primary);
}

.z740f8home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.z740f8home-article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.z740f8home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.z740f8home-article-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
}

.z740f8home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z740f8home-article-title {
    margin: 0;
    padding: 0.75rem 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.z740f8home-article-title a {
    color: var(--dark);
    text-decoration: none;
}

.z740f8home-article-title a:hover {
    color: var(--accent);
}

/* ========== 内页通用布局 ========== */
.z740f8body-inner .z740f8main-inner {
    padding-top: 88px;
    min-height: 60vh;
}

.z740f8inner-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
}

.z740f8inner-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.z740f8inner-desc {
    opacity: 0.85;
    font-size: 0.95rem;
    max-width: 720px;
    line-height: 1.6;
}

.z740f8layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.z740f8layout-main {
    min-width: 0;
}

/* ========== 文章详情 ========== */
.z740f8article-view {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.z740f8article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.z740f8article-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.z740f8article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.z740f8article-meta small {
    color: #9ca3af;
}

.z740f8article-litpic-wrap {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    max-height: 420px;
}

.z740f8article-litpic {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.z740f8article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

.z740f8article-body img {
    max-width: 100%;
    height: auto;
}

.z740f8article-gallery {
    margin-top: 2rem;
}

.z740f8article-figure {
    margin: 1rem 0;
}

.z740f8article-figure img {
    max-width: 100%;
    border-radius: 8px;
}

.z740f8article-figure figcaption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.z740f8article-tags {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.z740f8meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
}

.z740f8tagitem a {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: var(--light);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
}

.z740f8tagitem a:hover {
    background: rgba(245, 158, 11, 0.15);
}

.z740f8prenext {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.6;
    width: 100%;
}

.z740f8prenext ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.z740f8prenext li {
    flex: 1 1 42%;
    min-width: 0;
}

.z740f8prenext table {
    width: 100%;
    border-collapse: collapse;
}

.z740f8prenext td {
    width: 50%;
    padding: 0.35rem 0;
    vertical-align: top;
}

.z740f8prenext a {
    color: var(--primary);
    text-decoration: none;
}

.z740f8prenext a:hover {
    color: var(--accent);
}

.z740f8related-wrap {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.z740f8related-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.z740f8related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z740f8related-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.z740f8related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

.z740f8related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z740f8related-text p {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.z740f8related-link {
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.z740f8related-link:hover {
    color: var(--accent);
}

/* ========== 列表页 ========== */
.z740f8list-articles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.z740f8list-row {
    display: flex;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.z740f8list-thumb-wrap {
    flex-shrink: 0;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
    aspect-ratio: 16 / 9;
}

.z740f8list-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z740f8list-main {
    flex: 1;
    min-width: 0;
}

.z740f8list-head {
    margin-bottom: 0.35rem;
}

.z740f8list-type {
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.z740f8list-type a {
    color: var(--secondary);
    text-decoration: none;
}

.z740f8list-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.z740f8list-title:hover {
    color: var(--accent);
}

.z740f8list-info {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.z740f8list-info span {
    margin-right: 1rem;
}

.z740f8list-intro {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ========== 分页（左右分布） ========== */
.z740f8pagebar {
    margin-top: 2rem;
}

.z740f8pages {
    width: 100%;
}

.z740f8pages-inner {
    width: 100%;
}

.z740f8pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem 0.75rem;
    list-style: none;
    padding: 0.75rem 1rem;
    margin: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.z740f8pagelist li {
    margin: 0;
}

.z740f8pagelist a,
.z740f8pagelist span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.z740f8pagelist a {
    color: var(--primary);
    text-decoration: none;
}

.z740f8pagelist a:hover {
    background: var(--light);
}

/* ========== 侧栏 ========== */
.z740f8sidebar {
    position: sticky;
    top: 100px;
}

.z740f8sidebar-block {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
}

.z740f8sidebar-title {
    font-size: 1rem;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
}

.z740f8sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z740f8sidebar-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.z740f8sidebar-item:last-child {
    border-bottom: none;
}

.z740f8sidebar-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7eb;
}

.z740f8sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z740f8sidebar-link {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--dark);
    text-decoration: none;
}

.z740f8sidebar-link:hover {
    color: var(--accent);
}

.z740f8powerby {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.z740f8powerby a {
    color: var(--primary);
}

/* ========== 内页响应式 ========== */
@media (max-width: 1100px) {
    .z740f8home-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z740f8layout {
        grid-template-columns: 1fr;
    }

    .z740f8sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .z740f8home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .z740f8faq-section {
        padding: 3rem 0;
    }

    .z740f8home-articles-section {
        padding: 3rem 0;
    }

    .z740f8article-view {
        padding: 1.25rem;
    }

    .z740f8article-title {
        font-size: 1.35rem;
    }

    .z740f8prenext td {
        display: block;
        width: 100%;
    }

    .z740f8prenext li {
        flex-basis: 100%;
    }

    .z740f8list-row {
        flex-direction: column;
    }

    .z740f8list-thumb-wrap {
        width: 100%;
        max-width: none;
    }

    .z740f8sidebar {
        grid-template-columns: 1fr;
    }

    .z740f8pagelist {
        justify-content: center;
    }

    .z740f8inner-hero {
        padding: 2rem 0 1.5rem;
    }

    .z740f8inner-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .z740f8home-articles-grid {
        grid-template-columns: 1fr;
    }

    .z740f8related-item {
        flex-direction: column;
    }

    .z740f8related-thumb {
        width: 100%;
        height: 160px;
    }
}

