/* 重置样式 */
* {
    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;
    background-color: #f8f9fa;
}

.z90212container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z90212header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z90212header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
}

.z90212logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.z90212logo p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.z90212nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z90212nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.z90212nav a:hover {
    opacity: 0.8;
}

/* 主要内容区域 */
.z90212main {
    margin-top: 48px;
}

/* 英雄区域 */
.z90212hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.3rem 0 2.3rem 0;
    min-height: 44vh;
    display: flex;
    align-items: center;
}

.z90212hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: center;
}

.z90212hero-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.z90212hero-text p {
    font-size: 1.18rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.z90212hero-buttons {
    display: flex;
    gap: 1rem;
}

.z90212btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.z90212btn-primary {
    background: #fff;
    color: #667eea;
}

.z90212btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.z90212btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.z90212btn-secondary:hover {
    background: white;
    color: #667eea;
}

.z90212phone-mockup {
    /* background: #fff; */
    /* border-radius: 22px; */
    padding: 1.3rem;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.09); */
    text-align: center;
    color: #333;
    position: relative;
    overflow: hidden;
}

.z90212app-screenshot {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 14px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.11);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s;
}
.z90212app-screenshot:hover,
.z90212app-screenshot:active {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(102,126,234,0.18);
    z-index: 2;
}

.z90212app-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}

.z90212phone-screen h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* 下载区域 */
.z90212download-section {
    padding: 4rem 0;
    background: white;
}

.z90212download-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.z90212stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.z90212stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.z90212stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.z90212download-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.z90212download-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.z90212download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.z90212download-card.featured {
    border: 2px solid #667eea;
    position: relative;
}

.z90212download-card.featured::before {
    content: '推荐';
    position: absolute;
    top: 0;
    right: 0;
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 0 16px 0 12px;
}

.z90212card-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #f5f5f5;
}

.z90212platform-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.z90212platform-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

.z90212version-badge {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.z90212card-content {
    padding: 1rem 1.5rem;
}

.z90212card-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.z90212feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.z90212tag {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.z90212version-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.z90212version, .z90212size, .z90212date {
    color: #666;
}

.z90212card-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.z90212download-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.z90212download-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.z90212download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.z90212download-btn.secondary {
    background: #f8f9fa;
    color: #667eea;
    border: 1px solid #e9ecef;
}

.z90212download-btn.secondary:hover {
    background: #667eea;
    color: white;
}

.z90212download-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.z90212download-card.mobile {
    border: 1px solid #e9ecef;
}

.z90212download-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.z90212download-card.other {
    border: 1px solid #e9ecef;
}

.z90212download-card.other .card-header {
    padding: 1rem 1.5rem 0.8rem;
}

.z90212download-card.other .platform-icon {
    font-size: 2rem;
}

.z90212download-card.other .platform-info h3 {
    font-size: 1rem;
}

.z90212download-card.other .card-content {
    padding: 0.8rem 1.5rem;
}

.z90212download-card.other .card-footer {
    padding: 0.8rem 1.5rem 1.2rem;
}

.z90212download-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

.z90212info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.z90212info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.z90212info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.z90212info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .z90212download-main-grid,
    .z90212download-mobile-grid {
        grid-template-columns: 1fr;
    }
    
    .z90212download-other-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z90212download-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .z90212download-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .z90212download-other-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        padding: 1rem 1rem 0.8rem;
    }
    
    .card-content {
        padding: 0.8rem 1rem;
    }
    
    .card-footer {
        padding: 0.8rem 1rem 1rem;
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .z90212download-section {
        padding: 2rem 0;
    }
    
    .z90212download-stats {
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .download-info {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 0.7rem;
    }
    .info-item {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        text-align: center;
    }
    .info-icon {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    .info-content h4 {
        font-size: 0.98rem;
        margin-bottom: 0.2rem;
    }
    .info-content p {
        font-size: 0.85rem;
    }
}

/* 功能特色 */
.z90212features-section {
    padding: 0.6rem 0;
}

.z90212features-section .section-header {
    text-align: center;
}

.z90212features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z90212feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.z90212feature-card:hover {
    transform: translateY(-5px);
}

.z90212feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.z90212feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.z90212feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 使用指南 */
.z90212guide-section {
    padding: 5rem 0;
    background: white;
}

.z90212guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z90212step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.z90212step:hover {
    transform: translateY(-3px);
}

.z90212step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.z90212step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.z90212step-content p {
    color: #666;
    line-height: 1.5;
}

.z90212guide-extra {
    list-style: disc inside;
    padding: 0;
    margin: 0.2rem 0 0 0;
    color: #999;
    font-size: 0.75rem;
    text-align: left;
    line-height: 1.5;
}
.z90212guide-mini-card ul.guide-extra {
    width: 100%;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
}
.z90212guide-mini-card ul.guide-extra li {
    margin-left: 0.7em;
    margin-bottom: 0.1em;
}

/* 关于我们 */
.z90212about-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.z90212about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.z90212about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.z90212about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.z90212about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.z90212about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.z90212feature-dot {
    color: #667eea;
    font-weight: 700;
}

.z90212about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.z90212stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.z90212stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.z90212stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* 页脚 */
.z90212footer {
    background: #2c3e50;
    color: white;
    padding: 1.2rem 0 0.7rem;
}

.z90212footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z90212footer-section h3,
.z90212footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.z90212footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.z90212footer-section ul {
    list-style: none;
}

.z90212footer-section ul li {
    margin-bottom: 0.5rem;
}

.z90212footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.z90212footer-section ul li a:hover {
    color: #ecf0f1;
}

.z90212footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z90212nav {
        position: static;
        background: none;
        padding: 0;
        margin-top: 0.2rem;
        overflow-x: auto;
        white-space: nowrap;
        box-shadow: none;
        width: 100%;
        z-index: 1;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    .z90212nav::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Webkit */
    }
    .z90212nav ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        gap: 0.7rem;
        padding: 0;
        margin: 0;
        width: max-content;
    }
    .z90212nav li {
        display: inline-block;
        margin: 0;
        padding: 0;
    }
    .z90212nav a {
        font-size: 0.92rem;
        padding: 0.2rem 0.5rem;
        background: none;
        border: none;
        text-decoration: none;
        color: white;
        box-shadow: none;
        line-height: 1.6;
        white-space: nowrap;
        min-width: unset;
    }
    .z90212header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .z90212logo {
        margin-bottom: 0.1rem;
    }
    .z90212main {
        margin-top: 60px;
    }
    /* 移除多余的竖排样式 */
    .z90212nav.active,
    .z90212nav ul.active {
        transform: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .z90212container {
        padding: 0 15px;
    }
    
    .z90212hero {
        padding: 2rem 0;
    }
    
    .z90212hero-text h2 {
        font-size: 1.8rem;
    }
    
    .z90212btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .download-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 0.7rem 0 0.3rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    .footer-section h3, .footer-section h4 {
        margin-bottom: 0.5rem;
        font-size: 1.05rem;
    }
    .footer-section p, .footer-section ul li {
        font-size: 0.92rem;
    }
    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 0.85rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z90212download-card,
.z90212feature-card,
.z90212step {
    animation: fadeInUp 0.6s ease forwards;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* 焦点样式 */
a:focus,
button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 加载动画 */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* 新闻资讯区 */
.z90212news-section {
    padding: 4rem 0;
    background: #fff;
}
.z90212news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.z90212news-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.z90212news-item:hover {
    box-shadow: 0 8px 24px rgba(102,126,234,0.10);
}
.z90212news-item h3 {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}
.z90212news-item p {
    color: #555;
    font-size: 0.98rem;
}

/* FAQ区 */
.z90212faq-section {
    padding: 0.6rem 0;
}
.z90212faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.z90212faq-item h4 {
    color: #764ba2;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.z90212faq-item p {
    color: #444;
    font-size: 0.98rem;
}

/* 用户评价区 */
.z90212reviews-section {
    padding: 4rem 0;
    background: #fff;
}
.z90212reviews-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.z90212review-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1rem;
}
.z90212review-user {
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}
.z90212review-text {
    color: #333;
    font-style: italic;
}

/* 安全承诺区 */
.z90212security-section {
    padding: 4rem 0;
    background: #f8f9fa;
}
.z90212security-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding-left: 0;
}
.z90212security-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: #333;
    font-size: 1rem;
}
.z90212security-list li:before {
    content: '✔';
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 下载流程图区 */
.z90212flow-section {
    padding: 4rem 0;
    background: #fff;
}
.z90212flow-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.z90212flow-step {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.z90212flow-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.z90212flow-desc {
    color: #764ba2;
    font-size: 1rem;
}

/* 合作伙伴区 */
.z90212partners-section {
    padding: 0.6rem 0;
}
.z90212partners-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.z90212partner-item {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 2rem;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1rem;
}

/* 响应式：新闻、评价、流程图多列变单列 */
@media (max-width: 900px) {
    .z90212news-list,
    .z90212reviews-list {
        grid-template-columns: 1fr;
    }
    .z90212flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
}

/* 下载小卡片紧凑风格 */
.z90212download-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.z90212download-mini-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f0f0;
    min-height: 180px;
}
.z90212download-mini-card:hover {
    box-shadow: 0 8px 20px rgba(102,126,234,0.13);
    transform: translateY(-3px) scale(1.025);
}
.z90212mini-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.z90212mini-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.12rem;
}
.z90212mini-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 0.3rem;
}
.z90212mini-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.4rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}
.z90212mini-features li {
    font-size: 0.75rem;
    color: #764ba2;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.12rem 0.4rem;
    display: inline-block;
    margin: 0 auto;
}
.z90212mini-meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.4rem;
}
.z90212mini-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 0.32rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(102,126,234,0.08);
}
.z90212mini-btn:hover {
    background: #667eea;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102,126,234,0.13);
}
.z90212mini-extra {
    font-size: 0.72rem;
    color: #bbb;
    margin-bottom: 0.15rem;
    line-height: 1.4;
}
@media (max-width: 1200px) {
    .z90212download-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .z90212download-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .z90212download-card-grid {
        grid-template-columns: 1fr;
    }
    .z90212download-mini-card {
        min-height: 0;
        padding: 0.6rem 0.2rem;
    }
}

.z90212download-section .z90212section-header {
    text-align: center;
}

.z90212features-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 2rem;
}
.z90212feature-mini-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f0f0;
    min-height: 160px;
}
.z90212feature-mini-card:hover {
    box-shadow: 0 8px 20px rgba(102,126,234,0.13);
    transform: translateY(-3px) scale(1.025);
}
.z90212feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.z90212feature-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.12rem;
}
.z90212feature-desc {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 0.3rem;
}
.z90212feature-extra {
    font-size: 0.72rem;
    color: #bbb;
    margin-bottom: 0.1rem;
    line-height: 1.4;
}
@media (max-width: 1200px) {
    .z90212features-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .z90212features-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .z90212features-card-grid {
        grid-template-columns: 1fr;
    }
    .z90212feature-mini-card {
        min-height: 0;
        padding: 0.6rem 0.2rem;
    }
}

/* 新闻资讯卡片式布局 */
.z90212news-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.z90212news-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 14px 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    min-height: 140px;
    transition: box-shadow 0.2s;
}
.z90212news-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.z90212news-card-title {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a2233;
}
.z90212news-card-meta {
    font-size: 0.92rem;
    color: #888;
    margin-bottom: 8px;
}
.z90212news-card-desc {
    font-size: 0.98rem;
    color: #333;
    flex: 1;
    line-height: 1.6;
}
.z90212news-link {
    color: #2b7cff;
    text-decoration: none;
    font-size: 0.95em;
    margin-left: 4px;
}
.z90212news-link:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .z90212news-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .z90212news-card {
        padding: 12px 8px 10px 10px;
        min-height: 100px;
    }
    .z90212news-card-title {
        font-size: 1rem;
    }
    .z90212news-card-desc {
        font-size: 0.93rem;
    }
}

.z90212news-section .section-header {
    text-align: center;
}

/* FAQ卡片式布局 */
.z90212faq-section .section-header {
    text-align: center;
}
.z90212faq-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.z90212faq-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 14px 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    min-height: 100px;
    transition: box-shadow 0.2s;
}
.z90212faq-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.z90212faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2233;
    margin-bottom: 6px;
}
.z90212faq-a {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .z90212faq-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .z90212faq-card {
        padding: 12px 8px 10px 10px;
        min-height: 80px;
    }
    .z90212faq-q {
        font-size: 1rem;
    }
    .z90212faq-a {
        font-size: 0.93rem;
    }
}

/* 合作伙伴与技术支持卡片式布局 */
.z90212partners-section .section-header {
    text-align: center;
}
.z90212partners-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.z90212partners-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 14px 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    min-height: 120px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.z90212partners-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.z90212partners-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f3f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2b7cff;
    margin-bottom: 8px;
}
.z90212logo-placeholder {
    font-size: 1.2em;
}
.z90212partners-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2233;
    margin-bottom: 4px;
}
.z90212partners-desc {
    font-size: 0.97rem;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.6;
}
.z90212partners-extra {
    font-size: 0.93rem;
    color: #666;
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}
@media (max-width: 600px) {
    .z90212partners-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .z90212partners-card {
        padding: 12px 8px 10px 10px;
        min-height: 80px;
    }
    .z90212partners-logo {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .z90212partners-title {
        font-size: 1rem;
    }
    .z90212partners-desc {
        font-size: 0.93rem;
    }
}

section {
    margin: 0.6rem 0;
}
@media (max-width: 600px) {
    section {
        margin: 0.3rem 0;
    }
}

@media (max-width: 600px) {
    .z90212partners-section {
        padding: 0.3rem 0;
    }
}

@media (max-width: 600px) {
    .z90212faq-section {
        padding: 0.3rem 0;
    }
}

@media (max-width: 600px) {
    .z90212features-section {
        padding: 0.3rem 0;
    }
} 

/* 紧凑型新闻时间轴样式 */
.z90212compact-news-timeline .z90212news-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0.5rem 0 0.5rem 0.5rem;
    border-left: 3px solid #667eea;
    padding-left: 1.2rem;
}
.z90212compact-news-timeline .z90212news-timeline-item {
    position: relative;
    padding-left: 0.5rem;
}
.z90212compact-news-timeline .z90212news-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.1rem;
    top: 0.7rem;
    width: 0.7rem;
    height: 0.7rem;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
}
.z90212compact-news-timeline .z90212news-timeline-date {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 0.1rem;
}
.z90212compact-news-timeline .z90212news-timeline-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.1rem;
}
.z90212compact-news-timeline .z90212news-timeline-desc {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.2rem;
}
@media (max-width: 600px) {
    .z90212compact-news-timeline .z90212news-timeline {
        padding-left: 0.7rem;
        margin-left: 0.2rem;
        gap: 0.4rem;
    }
    .z90212compact-news-timeline .z90212news-timeline-item::before {
        left: -0.7rem;
        width: 0.5rem;
        height: 0.5rem;
    }
    .z90212compact-news-timeline .z90212news-timeline-date {
        font-size: 0.92rem;
    }
    .z90212compact-news-timeline .z90212news-timeline-title {
        font-size: 1rem;
    }
    .z90212compact-news-timeline .z90212news-timeline-desc {
        font-size: 0.92rem;
    }
} 

/* 资讯区块整体卡片化框架样式 */
.z90212compact-news-timeline {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(102,126,234,0.07);
    padding: 1.7rem 1.2rem 1.2rem 1.2rem;
    margin-top: 1.2rem;
}
@media (max-width: 600px) {
    .z90212compact-news-timeline {
        padding: 1.1rem 0.5rem 0.7rem 0.5rem;
        border-radius: 10px;
    }
} 

/* 资讯时间轴每条分隔、悬浮高亮、可点击样式 */
.z90212compact-news-timeline .z90212news-timeline-item {
    border-bottom: 1px solid #e3e8f7;
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
    cursor: pointer;
}
.z90212compact-news-timeline .z90212news-timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.z90212compact-news-timeline .z90212news-timeline-item:hover {
    background: #f6f8fe;
}
.z90212compact-news-timeline .z90212news-timeline-title a {
    color: #2b7cff;
    text-decoration: none;
    transition: color 0.2s;
}
.z90212compact-news-timeline .z90212news-timeline-title a:hover {
    color: #764ba2;
    text-decoration: underline;
} 

.z90212features-section .z90212section-header {
    text-align: center;
}
.z90212news-section .z90212section-header {
    text-align: center;
}
.z90212faq-section .z90212section-header {
    text-align: center;
} 