﻿: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);
}

.container {
    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;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4B5563;
}

/* 头部样式 */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
}

.top-notice {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    display: block;
}

.main-nav {
    padding: 12px 0;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--accent);
}

/* 英雄区域 */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.quick-download {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.quick-btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.quick-btn.android {
    background: var(--accent);
    color: var(--white);
}

.quick-btn.ios {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.quick-btn.register {
    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;
}

.quick-btn.register::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;
}

.quick-btn.register:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.2);
}

.quick-btn.register:hover::before {
    opacity: 1;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* 版本选择区域 */
.versions {
    padding: 6rem 0;
    background: var(--white);
}

.version-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.version-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.version-card:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
    }

    .menu-toggle {
        display: block;
        width: 24px;
        height: 18px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--dark);
        position: absolute;
        left: 0;
        top: 8px;
        transition: all 0.3s;
    }

    .menu-toggle::before,
    .menu-toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--dark);
        left: 0;
        transition: all 0.3s;
    }

    .menu-toggle::before {
        top: 0;
    }

    .menu-toggle::after {
        bottom: 0;
    }

    .menu-toggle.active span {
        opacity: 0;
    }

    .menu-toggle.active::before {
        transform: rotate(45deg);
        top: 8px;
    }

    .menu-toggle.active::after {
        transform: rotate(-45deg);
        bottom: 8px;
    }

    .nav-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);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light);
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .download-cards,
    .features-grid,
    .guide-steps,
    .security-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col {
        text-align: center;
    }

    .quick-btn.register {
        border-width: 1px;
        font-size: 14px;
    }
}

/* 下载区域样式 */
.download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.download-framework {
    max-width: 1000px;
    margin: 0 auto;
}

.framework-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.download-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);
}

.download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-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);
}

.card-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

.version-info {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.version-number {
    display: block;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.version-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.version-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.version-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.download-actions {
    text-align: center;
}

.download-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;
}

.download-btn:hover {
    background: #e08c00;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .download-section {
        padding: 3rem 0;
    }

    .framework-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-header {
        padding: 1.25rem;
    }

    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .version-features li {
        font-size: 0.9rem;
    }

    .download-btn {
        padding: 0.625rem 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .framework-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 特色功能区域 */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.features-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-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);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-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);
}

.feature-content {
    text-align: center;
}

.feature-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .features-section {
        padding: 4rem 0;
    }

    .features-framework {
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 安装教程区域 */
.guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.guide-framework {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.guide-timeline {
    position: relative;
    padding: 2rem 0;
}

.guide-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.guide-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.guide-step:last-child {
    margin-bottom: 0;
}

.step-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;
}

.step-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;
}

.guide-step:nth-child(odd) .step-content {
    margin-right: auto;
}

.guide-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
}

.step-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;
}

.step-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-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) {
    .guide-section {
        padding: 4rem 0;
    }

    .guide-framework {
        padding: 1rem;
    }

    .guide-timeline::before {
        left: 20px;
    }

    .guide-step {
        margin-bottom: 2rem;
    }

    .step-number {
        left: 20px;
        transform: none;
    }

    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .step-features {
        justify-content: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .guide-timeline::before {
        left: 30px;
    }

    .step-number {
        left: 30px;
        transform: none;
    }

    .step-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
}

/* 安全保障区域 */
.security-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.security-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-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);
}

.security-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.security-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);
}

.security-content {
    text-align: center;
}

.security-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .security-section {
        padding: 4rem 0;
    }

    .security-framework {
        padding: 1rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .security-card {
        padding: 1.5rem;
    }

    .security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .security-content h3 {
        font-size: 1.25rem;
    }

    .security-content p {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 页脚样式 */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.related-links {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* 广告区域样式 */
.ad-section {
    padding: 40px 0;
    background: var(--background);
}

.ad-section .container {
    text-align: center;
}

/* 友情链接和相关站点样式 */
.related-links {
    padding: 40px 0;
    background: var(--section-bg);
}

.friend-links {
    margin-bottom: 30px;
}

.related-sites ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.related-sites li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    background: var(--background);
    transition: var(--transition);
}

.related-sites li a:hover {
    color: var(--secondary-color);
    box-shadow: var(--card-shadow);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .related-sites ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* 底部导航样式 */
.footer-nav {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--light-text);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-nav-column h4 {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* 调整页脚样式 */
.site-footer {
    background: #162b33; /* 稍深一点的背景色 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-nav {
        padding: 40px 0;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-nav-column {
        text-align: center;
    }

    .footer-nav-column h4 {
        font-size: 16px;
    }

    .footer-nav-column ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* PC端导航样式（1200px以上） */
@media screen and (min-width: 1201px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        gap: 30px;
    }
}

/* 平板端适配（768px - 1200px） */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .features-grid,
    .download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动端适配（768px以下） */
@media screen and (max-width: 768px) {
    .main-nav {
        padding: 8px 0;
    }

    .main-nav .container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .menu-toggle {
        width: 24px;
        height: 20px;
    }

    .nav-list {
        padding: 10px 0;
    }

    .nav-list a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 2rem;
    }

    .download-section {
        padding: 3rem 0;
    }

    .download-framework {
        padding: 0 15px;
    }

    .framework-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .download-card {
        margin: 0;
    }

    .card-header {
        padding: 1.25rem;
    }

    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .version-info {
        padding: 0.75rem;
    }

    .version-features li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .download-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .features-section {
        padding: 3rem 0;
    }

    .features-framework {
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .guide-section {
        padding: 3rem 0;
    }

    .guide-simple-steps {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 15px;
    }

    .guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }

    .step-num {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 14px;
    }

    .security-section {
        padding: 3rem 0;
    }

    .security-framework {
        padding: 0 15px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .security-card {
        padding: 1.5rem;
    }

    .security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .security-content h3 {
        font-size: 18px;
    }

    .security-content p {
        font-size: 14px;
    }

    .feature-item {
        font-size: 14px;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        margin-bottom: 0.5rem;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
        margin-top: 20px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .intro-text {
        font-size: 14px;
    }

    .btn-primary, .btn-outline {
        padding: 10px 15px;
        font-size: 14px;
    }

    .download-card,
    .feature-card,
    .security-card,
    .guide-simple-step {
        padding: 1rem;
    }

    .card-header h3,
    .feature-content h3,
    .security-content h3 {
        font-size: 16px;
    }

    .version-features li,
    .feature-list li,
    .feature-item {
        font-size: 13px;
    }
}

/* 按钮样式 */
.btn-download,
.btn-guide {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-download {
    background: var(--accent);
    color: var(--white);
}

.btn-guide {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* 简洁版安装教程样式 */
.guide-simple-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 0 0;
    flex-wrap: wrap;
}

.guide-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;
}

.guide-simple-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.step-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;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .guide-simple-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }
}

/* 图标样式 */
.icon-question::before {
    content: "?";
    font-weight: bold;
}

.icon-android::before {
    content: "\f17b";
    font-family: "FontAwesome";
}

.icon-ios::before {
    content: "\f179";
    font-family: "FontAwesome";
}

.icon-shield::before {
    content: "\f132";
    font-family: "FontAwesome";
}

.icon-trade::before {
    content: "\f0d6";
    font-family: "FontAwesome";
}

.icon-chart::before {
    content: "\f080";
    font-family: "FontAwesome";
}

.icon-encrypt::before {
    content: "\f023";
    font-family: "FontAwesome";
}

.icon-wallet::before {
    content: "\f555";
    font-family: "FontAwesome";
}

/* FAQ模块样式 */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-framework {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon i {
    color: var(--white);
    font-size: 24px;
}

.faq-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
}

.faq-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.faq-loading {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.faq-loading p {
    color: #6b7280;
    font-size: 1rem;
}

/* FAQ模块响应式设计 */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .faq-icon i {
        font-size: 20px;
    }
    
    .faq-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .faq-content p {
        margin-bottom: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 市场行情模块样式 */
.market-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.market-framework {
    max-width: 1200px;
    margin: 0 auto;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.market-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.market-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.market-rank {
    font-size: 1.2rem;
    font-weight: bold;
    color: #9ca3af;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.market-info {
    display: flex;
    flex-direction: column;
}

.market-symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}

.market-name {
    font-size: 0.9rem;
    color: #6b7280;
}

.market-card-body {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.market-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark);
}

.market-cap {
    font-size: 0.9rem;
    color: #6b7280;
}

.market-card-footer {
    margin-top: auto;
}

.market-change {
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

.market-change.positive {
    color: #10b981;
    background-color: #d1fae5;
}

.market-change.negative {
    color: #ef4444;
    background-color: #fee2e2;
}

.market-change i {
    margin-right: 5px;
}

.market-loading {
    text-align: center;
    padding: 40px 0;
}

/* 箭头图标 */
.icon-arrow-up::before {
    content: '\\25B2'; /* 实心向上箭头 */
}

.icon-arrow-down::before {
    content: '\\25BC'; /* 实心向下箭头 */
}

@media (max-width: 768px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
} 

