: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);
}

.z03ee3container {
    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;
}

.z03ee3section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4B5563;
}

/* 头部样式 */
.z03ee3site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
}

.z03ee3top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
}

.z03ee3top-notice {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    display: block;
}

.z03ee3main-nav {
    padding: 12px 0;
}

.z03ee3main-nav .z03ee3container {
    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;
}

.z03ee3logo a {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.z03ee3nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.z03ee3menu-toggle {
    display: none;
}

.z03ee3nav-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.z03ee3nav-list a:hover {
    color: var(--accent);
}

.z03ee3nav-list li.z03ee3this > a,
.z03ee3nav-list li.z03ee3this a {
    color: var(--accent);
    font-weight: 600;
}

/* 英雄区域 */
.z03ee3hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.z03ee3hero .z03ee3container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z03ee3hero-content {
    flex: 1;
    max-width: 600px;
}

.z03ee3hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z03ee3hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.z03ee3hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.z03ee3hero-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.z03ee3quick-download {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.z03ee3quick-btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z03ee3quick-btn.z03ee3android {
    background: var(--accent);
    color: var(--white);
}

.z03ee3quick-btn.z03ee3ios {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.z03ee3quick-btn.z03ee3register {
    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;
}

.z03ee3quick-btn.z03ee3register::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;
}

.z03ee3quick-btn.z03ee3register:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.2);
}

.z03ee3quick-btn.z03ee3register:hover::before {
    opacity: 1;
}

.z03ee3quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.z03ee3hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.z03ee3stat-item {
    text-align: center;
}

.z03ee3stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* 版本选择区域 */
.z03ee3versions {
    padding: 6rem 0;
    background: var(--white);
}

.z03ee3version-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z03ee3version-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.z03ee3version-card:hover {
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    h2 {
        font-size: 1.75rem;
    }

    .z03ee3menu-toggle {
        display: block;
        width: 24px;
        height: 18px;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }

    .z03ee3menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--dark);
        position: absolute;
        left: 0;
        top: 8px;
        transition: all 0.3s;
    }

    .z03ee3menu-toggle::before,
    .z03ee3menu-toggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--dark);
        left: 0;
        transition: all 0.3s;
    }

    .z03ee3menu-toggle::before {
        top: 0;
    }

    .z03ee3menu-toggle::after {
        bottom: 0;
    }

    .z03ee3menu-toggle.z03ee3active span {
        opacity: 0;
    }

    .z03ee3menu-toggle.z03ee3active::before {
        transform: rotate(45deg);
        top: 8px;
    }

    .z03ee3menu-toggle.z03ee3active::after {
        transform: rotate(-45deg);
        bottom: 8px;
    }

    .z03ee3nav-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);
    }

    .z03ee3nav-list.z03ee3active {
        display: flex;
    }

    .z03ee3nav-list li {
        width: 100%;
    }

    .z03ee3nav-list a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light);
    }

    .z03ee3hero .z03ee3container {
        flex-direction: column;
        text-align: center;
    }
    
    .z03ee3hero-content {
        max-width: 100%;
    }
    
    .z03ee3hero-image {
        margin-top: 30px;
    }

    .z03ee3hero h1 {
        font-size: 2rem;
    }

    .z03ee3hero-desc {
        font-size: 1rem;
    }

    .z03ee3quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .z03ee3quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .z03ee3hero-stats {
        grid-template-columns: 1fr;
    }

    .z03ee3download-cards,
    .z03ee3features-grid,
    .z03ee3guide-steps,
    .z03ee3security-grid,
    .z03ee3footer-grid {
        grid-template-columns: 1fr;
    }

    .z03ee3footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .z03ee3footer-col {
        text-align: center;
    }

    .z03ee3quick-btn.z03ee3register {
        border-width: 1px;
        font-size: 14px;
    }
}

/* 下载区域样式 */
.z03ee3download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z03ee3download-framework {
    max-width: 1000px;
    margin: 0 auto;
}

.z03ee3framework-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.z03ee3download-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);
}

.z03ee3download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.z03ee3card-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.z03ee3platform-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);
}

.z03ee3card-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
}

.z03ee3card-body {
    padding: 1.5rem;
}

.z03ee3version-info {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.z03ee3version-number {
    display: block;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.z03ee3version-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.z03ee3version-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.z03ee3version-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.z03ee3download-actions {
    text-align: center;
}

.z03ee3download-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;
}

.z03ee3download-btn:hover {
    background: #e08c00;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z03ee3download-section {
        padding: 3rem 0;
    }

    .z03ee3framework-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z03ee3card-header {
        padding: 1.25rem;
    }

    .z03ee3platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .z03ee3card-body {
        padding: 1.25rem;
    }

    .z03ee3version-features li {
        font-size: 0.9rem;
    }

    .z03ee3download-btn {
        padding: 0.625rem 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z03ee3framework-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 特色功能区域 */
.z03ee3features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z03ee3features-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.z03ee3features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z03ee3feature-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);
}

.z03ee3feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z03ee3feature-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);
}

.z03ee3feature-content {
    text-align: center;
}

.z03ee3feature-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.z03ee3feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z03ee3feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.z03ee3feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.z03ee3feature-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z03ee3features-section {
        padding: 4rem 0;
    }

    .z03ee3features-framework {
        padding: 1rem;
    }

    .z03ee3features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z03ee3feature-card {
        padding: 1.5rem;
    }

    .z03ee3feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z03ee3feature-content h3 {
        font-size: 1.25rem;
    }

    .z03ee3feature-content p {
        font-size: 0.9rem;
    }

    .z03ee3feature-list li {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z03ee3features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 安装教程区域 */
.z03ee3guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z03ee3guide-framework {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.z03ee3guide-timeline {
    position: relative;
    padding: 2rem 0;
}

.z03ee3guide-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.z03ee3guide-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.z03ee3guide-step:last-child {
    margin-bottom: 0;
}

.z03ee3step-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;
}

.z03ee3step-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;
}

.z03ee3guide-step:nth-child(odd) .z03ee3step-content {
    margin-right: auto;
}

.z03ee3guide-step:nth-child(even) .z03ee3step-content {
    margin-left: auto;
}

.z03ee3step-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z03ee3step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.z03ee3step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
}

.z03ee3step-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;
}

.z03ee3step-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.z03ee3step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.z03ee3feature-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) {
    .z03ee3guide-section {
        padding: 4rem 0;
    }

    .z03ee3guide-framework {
        padding: 1rem;
    }

    .z03ee3guide-timeline::before {
        left: 20px;
    }

    .z03ee3guide-step {
        margin-bottom: 2rem;
    }

    .z03ee3step-number {
        left: 20px;
        transform: none;
    }

    .z03ee3step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .z03ee3step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .z03ee3step-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .z03ee3step-features {
        justify-content: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z03ee3guide-timeline::before {
        left: 30px;
    }

    .z03ee3step-number {
        left: 30px;
        transform: none;
    }

    .z03ee3step-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
}

/* 安全保障区域 */
.z03ee3security-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.z03ee3security-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.z03ee3security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z03ee3security-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);
}

.z03ee3security-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.z03ee3security-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);
}

.z03ee3security-content {
    text-align: center;
}

.z03ee3security-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.z03ee3security-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z03ee3security-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.z03ee3feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.z03ee3feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z03ee3security-section {
        padding: 4rem 0;
    }

    .z03ee3security-framework {
        padding: 1rem;
    }

    .z03ee3security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z03ee3security-card {
        padding: 1.5rem;
    }

    .z03ee3security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z03ee3security-content h3 {
        font-size: 1.25rem;
    }

    .z03ee3security-content p {
        font-size: 0.9rem;
    }

    .z03ee3feature-item {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .z03ee3security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 页脚样式 */
.z03ee3site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.z03ee3footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.z03ee3footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.z03ee3footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.z03ee3footer-col ul {
    list-style: none;
}

.z03ee3footer-col ul li {
    margin-bottom: 0.75rem;
}

.z03ee3footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.z03ee3footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.z03ee3related-links {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.z03ee3copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* 广告区域样式 */
.z03ee3ad-section {
    padding: 40px 0;
    background: var(--background);
}

.z03ee3ad-section .z03ee3container {
    text-align: center;
}

/* 友情链接和相关站点样式 */
.z03ee3related-links {
    padding: 40px 0;
    background: var(--section-bg);
}

.z03ee3friend-links {
    margin-bottom: 30px;
}

.z03ee3related-sites ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.z03ee3related-sites li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    background: var(--background);
    transition: var(--transition);
}

.z03ee3related-sites li a:hover {
    color: var(--secondary-color);
    box-shadow: var(--card-shadow);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z03ee3related-sites ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* 底部导航样式 */
.z03ee3footer-nav {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--light-text);
}

.z03ee3footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.z03ee3footer-nav-column h4 {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.z03ee3footer-nav-column ul {
    list-style: none;
}

.z03ee3footer-nav-column ul li {
    margin-bottom: 12px;
}

.z03ee3footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.z03ee3footer-nav-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* 调整页脚样式 */
.z03ee3site-footer {
    background: #162b33; /* 稍深一点的背景色 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z03ee3footer-nav {
        padding: 40px 0;
    }

    .z03ee3footer-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .z03ee3footer-nav-column {
        text-align: center;
    }

    .z03ee3footer-nav-column h4 {
        font-size: 16px;
    }

    .z03ee3footer-nav-column ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .z03ee3footer-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* PC端导航样式（1200px以上） */
@media screen and (min-width: 1201px) {
    .z03ee3container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .z03ee3nav-toggle {
        display: none;
    }

    .z03ee3nav-menu {
        display: flex !important;
        gap: 30px;
    }
}

/* 平板端适配（768px - 1200px） */
@media screen and (max-width: 1200px) {
    .z03ee3container {
        max-width: 100%;
        padding: 0 30px;
    }

    .z03ee3banner-content h1 {
        font-size: 40px;
    }

    .z03ee3features-grid,
    .z03ee3download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动端适配（768px以下） */
@media screen and (max-width: 768px) {
    .z03ee3main-nav {
        padding: 8px 0;
    }

    .z03ee3main-nav .z03ee3container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .z03ee3menu-toggle {
        width: 24px;
        height: 20px;
    }

    .z03ee3nav-list {
        padding: 10px 0;
    }

    .z03ee3nav-list a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .z03ee3hero {
        padding: 100px 0 60px;
    }

    .z03ee3hero h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .z03ee3hero-desc {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .z03ee3quick-download {
        flex-direction: column;
        gap: 15px;
    }

    .z03ee3quick-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .z03ee3hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 2rem;
    }

    .z03ee3download-section {
        padding: 3rem 0;
    }

    .z03ee3download-framework {
        padding: 0 15px;
    }

    .z03ee3framework-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z03ee3download-card {
        margin: 0;
    }

    .z03ee3card-header {
        padding: 1.25rem;
    }

    .z03ee3platform-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .z03ee3card-body {
        padding: 1.25rem;
    }

    .z03ee3version-info {
        padding: 0.75rem;
    }

    .z03ee3version-features li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .z03ee3download-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .z03ee3features-section {
        padding: 3rem 0;
    }

    .z03ee3features-framework {
        padding: 0 15px;
    }

    .z03ee3features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z03ee3feature-card {
        padding: 1.5rem;
    }

    .z03ee3feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z03ee3feature-content h3 {
        font-size: 18px;
    }

    .z03ee3feature-content p {
        font-size: 14px;
    }

    .z03ee3feature-list li {
        font-size: 14px;
        padding: 0.4rem 0;
    }

    .z03ee3guide-section {
        padding: 3rem 0;
    }

    .z03ee3guide-simple-steps {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 15px;
    }

    .z03ee3guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }

    .z03ee3step-num {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .z03ee3step-title {
        font-size: 16px;
    }

    .z03ee3step-desc {
        font-size: 14px;
    }

    .z03ee3security-section {
        padding: 3rem 0;
    }

    .z03ee3security-framework {
        padding: 0 15px;
    }

    .z03ee3security-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .z03ee3security-card {
        padding: 1.5rem;
    }

    .z03ee3security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .z03ee3security-content h3 {
        font-size: 18px;
    }

    .z03ee3security-content p {
        font-size: 14px;
    }

    .z03ee3feature-item {
        font-size: 14px;
    }

    .z03ee3site-footer {
        padding: 40px 0 20px;
    }

    .z03ee3footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .z03ee3footer-col h4 {
        margin-bottom: 1rem;
    }

    .z03ee3footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .z03ee3footer-col ul li {
        margin-bottom: 0.5rem;
    }

    .z03ee3footer-col ul li a {
        font-size: 14px;
    }

    .z03ee3copyright {
        font-size: 13px;
        margin-top: 20px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-width: 360px) {
    .z03ee3container {
        padding: 0 12px;
    }

    .z03ee3banner-content h1 {
        font-size: 24px;
    }

    .z03ee3intro-text {
        font-size: 14px;
    }

    .z03ee3btn-primary, .z03ee3btn-outline {
        padding: 10px 15px;
        font-size: 14px;
    }

    .z03ee3download-card,
    .z03ee3feature-card,
    .z03ee3security-card,
    .z03ee3guide-simple-step {
        padding: 1rem;
    }

    .z03ee3card-header h3,
    .z03ee3feature-content h3,
    .z03ee3security-content h3 {
        font-size: 16px;
    }

    .z03ee3version-features li,
    .z03ee3feature-list li,
    .z03ee3feature-item {
        font-size: 13px;
    }
}

/* 按钮样式 */
.z03ee3btn-download,
.z03ee3btn-guide {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.z03ee3btn-download {
    background: var(--accent);
    color: var(--white);
}

.z03ee3btn-guide {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* 简洁版安装教程样式 */
.z03ee3guide-simple-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 0 0;
    flex-wrap: wrap;
}

.z03ee3guide-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;
}

.z03ee3guide-simple-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.z03ee3step-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;
}

.z03ee3step-info {
    flex: 1;
}

.z03ee3step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.z03ee3step-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .z03ee3guide-simple-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .z03ee3guide-simple-step {
        max-width: 100%;
        min-width: 0;
        padding: 1.25rem 1rem;
    }
}

/* ========== 常见问题（首页） ========== */
.z03ee3faq-section {
    padding: 4rem 0;
    background: var(--white);
    color: var(--dark);
}

.z03ee3faq-section h2 {
    color: var(--primary);
}

.z03ee3faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.z03ee3faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
    background: var(--light);
}

.z03ee3faq-q {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 0;
    list-style: none;
}

.z03ee3faq-item summary::-webkit-details-marker {
    display: none;
}

.z03ee3faq-q::before {
    content: "＋";
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--accent);
    font-weight: bold;
}

.z03ee3faq-item[open] .z03ee3faq-q::before {
    content: "－";
}

.z03ee3faq-a {
    padding: 0 0 1rem 1.75rem;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ========== 首页资讯板块（5×2） ========== */
.z03ee3home-articles-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
    color: var(--dark);
}

.z03ee3home-articles-section h2 {
    color: var(--primary);
}

.z03ee3home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.z03ee3home-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;
}

.z03ee3home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.z03ee3home-article-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
}

.z03ee3home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z03ee3home-article-title {
    margin: 0;
    padding: 0.75rem 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.z03ee3home-article-title a {
    color: var(--dark);
    text-decoration: none;
}

.z03ee3home-article-title a:hover {
    color: var(--accent);
}

/* ========== 内页通用布局 ========== */
.z03ee3body-inner .z03ee3main-inner {
    padding-top: 88px;
    min-height: 60vh;
}

.z03ee3inner-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 2.5rem 0 2rem;
    margin-bottom: 2rem;
}

.z03ee3inner-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.z03ee3inner-desc {
    opacity: 0.85;
    font-size: 0.95rem;
    max-width: 720px;
    line-height: 1.6;
}

.z03ee3layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.z03ee3layout-main {
    min-width: 0;
}

/* ========== 文章详情 ========== */
.z03ee3article-view {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.z03ee3article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.z03ee3article-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.z03ee3article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.z03ee3article-meta small {
    color: #9ca3af;
}

.z03ee3article-litpic-wrap {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    max-height: 420px;
}

.z03ee3article-litpic {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.z03ee3article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

.z03ee3article-body img {
    max-width: 100%;
    height: auto;
}

.z03ee3article-gallery {
    margin-top: 2rem;
}

.z03ee3article-figure {
    margin: 1rem 0;
}

.z03ee3article-figure img {
    max-width: 100%;
    border-radius: 8px;
}

.z03ee3article-figure figcaption {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.z03ee3article-tags {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.z03ee3meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
}

.z03ee3tagitem 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;
}

.z03ee3tagitem a:hover {
    background: rgba(245, 158, 11, 0.15);
}

.z03ee3prenext {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.6;
    width: 100%;
}

.z03ee3prenext ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.z03ee3prenext li {
    flex: 1 1 42%;
    min-width: 0;
}

.z03ee3prenext table {
    width: 100%;
    border-collapse: collapse;
}

.z03ee3prenext td {
    width: 50%;
    padding: 0.35rem 0;
    vertical-align: top;
}

.z03ee3prenext a {
    color: var(--primary);
    text-decoration: none;
}

.z03ee3prenext a:hover {
    color: var(--accent);
}

.z03ee3related-wrap {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.z03ee3related-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.z03ee3related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z03ee3related-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.z03ee3related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

.z03ee3related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z03ee3related-text p {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.z03ee3related-link {
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.z03ee3related-link:hover {
    color: var(--accent);
}

/* ========== 列表页 ========== */
.z03ee3list-articles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.z03ee3list-row {
    display: flex;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.z03ee3list-thumb-wrap {
    flex-shrink: 0;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
    aspect-ratio: 16 / 9;
}

.z03ee3list-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z03ee3list-main {
    flex: 1;
    min-width: 0;
}

.z03ee3list-head {
    margin-bottom: 0.35rem;
}

.z03ee3list-type {
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.z03ee3list-type a {
    color: var(--secondary);
    text-decoration: none;
}

.z03ee3list-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.z03ee3list-title:hover {
    color: var(--accent);
}

.z03ee3list-info {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.z03ee3list-info span {
    margin-right: 1rem;
}

.z03ee3list-intro {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ========== 分页（左右分布） ========== */
.z03ee3pagebar {
    margin-top: 2rem;
}

.z03ee3pages {
    width: 100%;
}

.z03ee3pages-inner {
    width: 100%;
}

.z03ee3pagelist {
    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);
}

.z03ee3pagelist li {
    margin: 0;
}

.z03ee3pagelist a,
.z03ee3pagelist span {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.z03ee3pagelist a {
    color: var(--primary);
    text-decoration: none;
}

.z03ee3pagelist a:hover {
    background: var(--light);
}

/* ========== 侧栏 ========== */
.z03ee3sidebar {
    position: sticky;
    top: 100px;
}

.z03ee3sidebar-block {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
}

.z03ee3sidebar-title {
    font-size: 1rem;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
}

.z03ee3sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z03ee3sidebar-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.z03ee3sidebar-item:last-child {
    border-bottom: none;
}

.z03ee3sidebar-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7eb;
}

.z03ee3sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z03ee3sidebar-link {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--dark);
    text-decoration: none;
}

.z03ee3sidebar-link:hover {
    color: var(--accent);
}

.z03ee3powerby {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.z03ee3powerby a {
    color: var(--primary);
}

/* ========== 内页响应式 ========== */
@media (max-width: 1100px) {
    .z03ee3home-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z03ee3layout {
        grid-template-columns: 1fr;
    }

    .z03ee3sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .z03ee3home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .z03ee3faq-section {
        padding: 3rem 0;
    }

    .z03ee3home-articles-section {
        padding: 3rem 0;
    }

    .z03ee3article-view {
        padding: 1.25rem;
    }

    .z03ee3article-title {
        font-size: 1.35rem;
    }

    .z03ee3prenext td {
        display: block;
        width: 100%;
    }

    .z03ee3prenext li {
        flex-basis: 100%;
    }

    .z03ee3list-row {
        flex-direction: column;
    }

    .z03ee3list-thumb-wrap {
        width: 100%;
        max-width: none;
    }

    .z03ee3sidebar {
        grid-template-columns: 1fr;
    }

    .z03ee3pagelist {
        justify-content: center;
    }

    .z03ee3inner-hero {
        padding: 2rem 0 1.5rem;
    }

    .z03ee3inner-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .z03ee3home-articles-grid {
        grid-template-columns: 1fr;
    }

    .z03ee3related-item {
        flex-direction: column;
    }

    .z03ee3related-thumb {
        width: 100%;
        height: 160px;
    }
}

