: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);
}

.zcdaebcontainer {
    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);
}

.zcdaebsection-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 */
.zcdaebhero {
    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;
}

.zcdaebhero-content {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.zcdaebhero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.zcdaebhero-image {
    margin: 2rem 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.zcdaebplatform-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zcdaebfeatures-image {
    text-align: center;
    margin: 2rem 0;
}

.zcdaebfeatures-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zcdaebhero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.zcdaebcta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.zcdaebcta-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;
}

.zcdaebcta-btn.zcdaebandroid {
    background: var(--success-color);
    color: white;
}

.zcdaebcta-btn.zcdaebios {
    background: white;
    color: var(--primary-color);
}

.zcdaebcta-btn:hover {
    transform: translateY(-2px);
}

/* Hero Stats */
.zcdaebhero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.zcdaebstat-item {
    text-align: center;
}

.zcdaebstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.zcdaebstat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Keyword Cloud Section */
.zcdaebkeyword-cloud {
    padding: 40px 0;
    background: var(--light-bg);
}

.zcdaebcloud-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 */
.zcdaebdownload-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zcdaebversion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zcdaebversion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.zcdaebcard-header {
    padding: 1.5rem;
    color: white;
}

.zcdaebcard-header.zcdaebandroid {
    background: var(--success-color);
}

.zcdaebcard-header.zcdaebios {
    background: var(--primary-color);
}

.zcdaebcard-content {
    padding: 1.5rem;
}

.zcdaebcard-content p {
    margin-bottom: 1rem;
}

.zcdaebcard-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.zcdaebcard-content li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.zcdaebdownload-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;
}

.zcdaebdownload-btn:hover {
    background: var(--secondary-color);
}

/* Features Section */
.zcdaebfeatures-section {
    padding: 80px 0;
}

.zcdaebfeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zcdaebfeature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.zcdaebfeature-item:hover {
    transform: translateY(-5px);
}

.zcdaebfeature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--light-bg);
    border-radius: 50%;
}

/* Products Section */
.zcdaebproducts-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zcdaebproduct-tabs {
    /* 结构样式 */
}

.zcdaebtab-content {
    /* 结构样式 */
}

.zcdaebactive {
    /* 激活样式 */
}

.zcdaebproduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zcdaebproduct-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.zcdaebproduct-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.zcdaebproduct-card ul {
    list-style: none;
    margin-top: 1rem;
}

.zcdaebproduct-card li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Guide Section */
.zcdaebguide-section {
    padding: 80px 0;
}

.zcdaebguide-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zcdaebtimeline-item {
    text-align: center;
    position: relative;
}

.zcdaebtimeline-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 */
.zcdaebabout-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.zcdaebabout-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zcdaebabout-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zcdaebstat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.zcdaebnumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.zcdaeblabel {
    color: var(--light-text);
}

/* Download Reminder Section */
.zcdaebdownload-reminder {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.zcdaebreminder-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zcdaebreminder-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.zcdaebreminder-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.zcdaebreminder-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;
}

.zcdaebreminder-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Links Section */
.zcdaeblinks-section {
    padding: 40px 0;
    background: white;
}

.zcdaeblinks-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.zcdaebrelated-sites {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.zcdaebrelated-sites a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.875rem;
}

/* Ad Section */
.zcdaebad-section {
    padding: 20px 0;
    text-align: center;
    background: var(--light-bg);
}

/* Footer */
.zcdaebsite-footer {
    background: var(--text-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.zcdaebfooter-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;
    }

    .zcdaebhero-image {
        max-width: 90%;
        margin: 1rem 0;
    }
    
    .zcdaebfeatures-image {
        margin: 1.5rem 0;
    }

    .zcdaebhero h1 {
        font-size: 2rem;
    }

    .zcdaebhero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .zcdaebcta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .zcdaebcta-btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .zcdaebabout-stats {
        grid-template-columns: 1fr;
    }
    
    .zcdaebcloud-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zcdaebcontainer {
        padding: 0 1rem;
    }

    .zcdaebhero {
        padding: 100px 0 40px;
    }

    .zcdaebfeature-item,
    .zcdaebproduct-card,
    .zcdaebversion-card {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

.zcdaeb {
    /* Add any additional styles here */
} 
