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