:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-bg: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px 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", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.zf267dcontainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.zf267dsection-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-text);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.zf267dhero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0 2rem 0;
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.zf267dhero-content {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.zf267dhero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.zf267dhero-image {
    margin: 2rem 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.zf267dplatform-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zf267dfeatures-image {
    text-align: center;
    margin: 2rem 0;
}

.zf267dfeatures-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zf267dhero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.zf267dcta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.zf267dcta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
}

.zf267dcta-btn.zf267dandroid {
    background: var(--success-color);
    color: white;
}

.zf267dcta-btn.zf267dios {
    background: white;
    color: var(--primary-color);
}

.zf267dcta-btn:hover {
    transform: translateY(-2px);
}

/* Hero Stats */
.zf267dhero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.zf267dstat-item {
    text-align: center;
}

.zf267dstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.zf267dstat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Keyword Cloud Section */
.zf267dkeyword-cloud {
    padding: 40px 0;
    background: var(--light-bg);
}

.zf267dcloud-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Download Section */
.zf267ddownload-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zf267dversion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf267dversion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.zf267dcard-header {
    padding: 1.5rem;
    color: white;
}

.zf267dcard-header.zf267dandroid {
    background: var(--success-color);
}

.zf267dcard-header.zf267dios {
    background: var(--primary-color);
}

.zf267dcard-content {
    padding: 1.5rem;
}

.zf267dcard-content p {
    margin-bottom: 1rem;
}

.zf267dcard-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.zf267dcard-content li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.zf267ddownload-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.zf267ddownload-btn:hover {
    background: var(--secondary-color);
}

/* Features Section */
.zf267dfeatures-section {
    padding: 80px 0;
}

.zf267dfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf267dfeature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.zf267dfeature-item:hover {
    transform: translateY(-5px);
}

.zf267dfeature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--light-bg);
    border-radius: 50%;
}

/* Products Section */
.zf267dproducts-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zf267dproduct-tabs {
    /* 结构样式 */
}

.zf267dtab-content {
    /* 结构样式 */
}

.zf267dactive {
    /* 激活样式 */
}

.zf267dproduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf267dproduct-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.zf267dproduct-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.zf267dproduct-card ul {
    list-style: none;
    margin-top: 1rem;
}

.zf267dproduct-card li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Guide Section */
.zf267dguide-section {
    padding: 80px 0;
}

.zf267dguide-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf267dtimeline-item {
    text-align: center;
    position: relative;
}

.zf267dtimeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

/* About Section */
.zf267dabout-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zf267dabout-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zf267dabout-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf267dstat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.zf267dnumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.zf267dlabel {
    color: var(--light-text);
}

/* Download Reminder Section */
.zf267ddownload-reminder {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.zf267dreminder-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zf267dreminder-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.zf267dreminder-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.zf267dreminder-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zf267dreminder-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Links Section */
.zf267dlinks-section {
    padding: 40px 0;
    background: white;
}

.zf267dlinks-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.zf267drelated-sites {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.zf267drelated-sites a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.875rem;
}

/* Ad Section */
.zf267dad-section {
    padding: 20px 0;
    text-align: center;
    background: var(--light-bg);
}

/* Footer */
.zf267dsite-footer {
    background: var(--text-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.zf267dfooter-content p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        cursor: pointer;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--background);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        display: none;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .zf267dhero-image {
        max-width: 90%;
        margin: 1rem 0;
    }
    
    .zf267dfeatures-image {
        margin: 1.5rem 0;
    }

    .zf267dhero h1 {
        font-size: 2rem;
    }

    .zf267dhero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .zf267dcta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .zf267dcta-btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .zf267dabout-stats {
        grid-template-columns: 1fr;
    }
    
    .zf267dcloud-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zf267dcontainer {
        padding: 0 1rem;
    }

    .zf267dhero {
        padding: 100px 0 40px;
    }

    .zf267dfeature-item,
    .zf267dproduct-card,
    .zf267dversion-card {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

.zf267d {
    /* Add any additional styles here */
} 
