/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.zfc053container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.zfc053header {
    background-color: #00B900;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.zfc053header .zfc053container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zfc053logo h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 汉堡菜单按钮 */
.zfc053menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.zfc053menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.zfc053main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.zfc053main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.zfc053main-nav a:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 主要内容区域 */
main {
    margin-top: 70px;
}

/* 英雄区域 */
.zfc053hero {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    padding: 6rem 0 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.zfc053hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zfc053hero-text {
    z-index: 2;
}

.zfc053hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.zfc053hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.zfc053hero-image {
    position: relative;
    z-index: 1;
}

.zfc053hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.zfc053floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 按钮样式 */
.zfc053btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    margin: 0 0.5rem;
}

.zfc053btn:hover {
    transform: translateY(-2px);
}

.zfc053btn-primary {
    background-color: white;
    color: #00B900;
}

.zfc053btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* 特色功能区域 */
.zfc053features {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zfc053features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zfc053features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.zfc053feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.zfc053feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.zfc053feature-card.zfc053primary {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.zfc053feature-card.zfc053primary h3,
.zfc053feature-card.zfc053primary .zfc053feature-icon {
    color: white;
}

.zfc053feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.zfc053feature-card h3 {
    color: #00B900;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.zfc053feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.zfc053feature-details {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.zfc053feature-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.zfc053feature-details li:before {
    content: "✓";
    color: #00B900;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zfc053feature-card.zfc053primary .zfc053feature-details li {
    color: rgba(255, 255, 255, 0.9);
}

.zfc053feature-card.zfc053primary .zfc053feature-details li:before {
    color: white;
}

/* 响应式设计优化 */
/* 大屏幕 (1200px以上) */
@media (min-width: 1200px) {
    .zfc053features-grid {
        gap: 2.5rem;
    }
    
    .zfc053feature-card {
        padding: 2.5rem;
    }
}

/* 中等屏幕 (992px - 1199px) */
@media (max-width: 1199px) {
    .zfc053features-grid {
        gap: 2rem;
    }
    
    .zfc053feature-card {
        padding: 2rem;
    }
}

/* 平板设备 (768px - 991px) */
@media (max-width: 991px) {
    .zfc053menu-toggle {
        display: block;
    }

    .zfc053main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #00B900;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .zfc053main-nav.zfc053active {
        right: 0;
    }

    .zfc053main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .zfc053main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .zfc053main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* 汉堡菜单动画 */
    .zfc053menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .zfc053menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .zfc053menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* 遮罩层 */
    .zfc053nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .zfc053nav-overlay.zfc053active {
        display: block;
    }

    .zfc053features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .zfc053feature-card {
        padding: 1.8rem;
    }
    
    .zfc053feature-icon {
        font-size: 2.2rem;
    }
    
    .zfc053feature-card h3 {
        font-size: 1.3rem;
    }
}

/* 大手机 (576px - 767px) */
@media (max-width: 767px) {
    .zfc053features {
        padding: 3rem 0;
    }
    
    .zfc053features h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .zfc053features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .zfc053feature-card {
        padding: 1.5rem;
    }
    
    .zfc053feature-icon {
        font-size: 2rem;
    }
    
    .zfc053feature-card h3 {
        font-size: 1.2rem;
    }
    
    .zfc053feature-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .zfc053feature-details li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

/* 小手机 (575px以下) */
@media (max-width: 575px) {
    .zfc053logo h1 {
        font-size: 1.2rem;
    }

    .zfc053main-nav {
        width: 100%;
        max-width: none;
    }

    .zfc053main-nav a {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .zfc053features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .zfc053feature-card {
        padding: 1.5rem;
    }
    
    .zfc053feature-icon {
        font-size: 1.8rem;
    }
    
    .zfc053feature-card h3 {
        font-size: 1.1rem;
    }
    
    .zfc053feature-card p {
        font-size: 0.9rem;
    }
    
    .zfc053feature-details li {
        font-size: 0.85rem;
    }
}

/* 指南区域样式 */
.zfc053guide {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zfc053guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zfc053guide-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.zfc053guide-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.zfc053guide-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zfc053guide-steps {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.zfc053guide-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.zfc053guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.zfc053step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.zfc053step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.zfc053guide-step h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.zfc053guide-step p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.zfc053step-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: left;
    width: 100%;
}

.zfc053step-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.9rem;
}

.zfc053step-details li:before {
    content: "✓";
    color: #00B900;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zfc053guide-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zfc053guide-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.zfc053card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.zfc053card-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.zfc053card-body {
    padding: 1.5rem;
}

.zfc053system-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zfc053system-tab {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.zfc053system-tab.zfc053active {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.zfc053tab-icon {
    font-size: 1.2rem;
}

.zfc053system-content {
    display: none;
}

.zfc053system-content.zfc053active {
    display: block;
}

.zfc053system-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfc053system-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.zfc053system-list li:before {
    content: "•";
    color: #00B900;
    position: absolute;
    left: 0;
}

.zfc053tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfc053tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.zfc053tips-list li:last-child {
    margin-bottom: 0;
}

.zfc053tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.zfc053tips-list p {
    margin: 0;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .zfc053guide-requirements {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .zfc053guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zfc053guide-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .zfc053guide-step {
        padding: 1.5rem;
    }

    .zfc053step-icon {
        font-size: 2rem;
    }

    .zfc053step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .zfc053guide-step h4 {
        font-size: 1.2rem;
    }

    .zfc053guide-step p {
        font-size: 0.9rem;
    }

    .zfc053step-details li {
        font-size: 0.85rem;
    }
}

/* 动画效果 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zfc053guide-step {
    animation: slideIn 0.5s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.zfc053system-content {
    animation: fadeIn 0.3s ease-out forwards;
}

/* 页脚样式 */
.zfc053footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* 版本信息样式 */
.zfc053version-info {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.zfc053version-info p {
    margin: 0.5rem 0;
}

/* 版本说明区域 */
.zfc053version {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.zfc053version h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zfc053version-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zfc053version-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.zfc053version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.zfc053version-card.zfc053primary {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.zfc053version-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.zfc053version-card.zfc053primary .zfc053version-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.zfc053version-icon {
    font-size: 2rem;
}

.zfc053version-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

.zfc053version-card.zfc053primary .zfc053version-header h3 {
    color: white;
}

.zfc053version-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: auto;
}

.zfc053version-content {
    padding: 1.5rem;
}

.zfc053version-info {
    margin-bottom: 1.5rem;
}

.zfc053version-number,
.zfc053version-date {
    margin: 0.5rem 0;
    color: #666;
}

.zfc053version-card.zfc053primary .zfc053version-number,
.zfc053version-card.zfc053primary .zfc053version-date {
    color: rgba(255,255,255,0.9);
}

.zfc053version-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.zfc053version-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.zfc053version-features li:before {
    content: "✓";
    color: #00B900;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.zfc053version-card.zfc053primary .zfc053version-features li {
    color: rgba(255,255,255,0.9);
}

.zfc053version-card.zfc053primary .zfc053version-features li:before {
    color: white;
}

.zfc053version-requirements {
    background: rgba(0,0,0,0.03);
    padding: 1rem;
    border-radius: 10px;
}

.zfc053version-card.zfc053primary .zfc053version-requirements {
    background: rgba(255,255,255,0.1);
}

.zfc053version-requirements h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.1rem;
}

.zfc053version-card.zfc053primary .zfc053version-requirements h4 {
    color: white;
}

.zfc053version-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfc053version-requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.zfc053version-requirements li:before {
    content: "•";
    color: #00B900;
    position: absolute;
    left: 0;
}

.zfc053version-card.zfc053primary .zfc053version-requirements li {
    color: rgba(255,255,255,0.9);
}

.zfc053version-card.zfc053primary .zfc053version-requirements li:before {
    color: white;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zfc053version-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .zfc053version-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zfc053version {
        padding: 3rem 0;
    }

    .zfc053version h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .zfc053version-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .zfc053version-header {
        padding: 1.2rem;
    }

    .zfc053version-content {
        padding: 1.2rem;
    }

    .zfc053version-icon {
        font-size: 1.8rem;
    }

    .zfc053version-header h3 {
        font-size: 1.2rem;
    }

    .zfc053version-features li,
    .zfc053version-requirements li {
        font-size: 0.9rem;
    }
}

/* 系统要求样式 */
.zfc053system-requirements {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.zfc053system-requirements h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.zfc053requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zfc053requirement-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.zfc053requirement-item h4 {
    color: #00B900;
    margin-bottom: 1rem;
}

.zfc053requirement-item ul {
    list-style: none;
    padding-left: 1rem;
}

.zfc053requirement-item ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.zfc053requirement-item ul li:before {
    content: "✓";
    color: #00B900;
    position: absolute;
    left: 0;
}

/* 更新下载按钮样式 */
.zfc053download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zfc053feature-card {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.zfc053version-card {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

/* 指南区域响应式设计 */
/* 大屏幕 (1200px以上) */
@media (min-width: 1200px) {
    .zfc053guide-wrapper {
        gap: 2.5rem;
    }

    .zfc053guide-main,
    .zfc053guide-side {
        padding: 2.5rem;
    }

    .zfc053step-card {
        padding: 2rem;
    }

    .zfc053step-content h3 {
        font-size: 1.4rem;
    }
}

/* 中等屏幕 (992px - 1199px) */
@media (max-width: 1199px) {
    .zfc053guide-wrapper {
        gap: 2rem;
    }

    .zfc053guide-main,
    .zfc053guide-side {
        padding: 2rem;
    }

    .zfc053step-card {
        padding: 1.8rem;
    }
}

/* 平板设备 (768px - 991px) */
@media (max-width: 991px) {
    .zfc053guide-wrapper {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .zfc053guide-main,
    .zfc053guide-side {
        padding: 1.8rem;
    }

    .zfc053guide-steps {
        gap: 1.5rem;
    }

    .zfc053step-card {
        padding: 1.5rem;
    }

    .zfc053requirements-tabs {
        flex-wrap: wrap;
    }

    .zfc053tab {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

/* 大手机 (576px - 767px) */
@media (max-width: 767px) {
    .zfc053guide {
        padding: 2.5rem 0;
    }

    .zfc053guide h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .zfc053guide-main,
    .zfc053guide-side {
        padding: 1.5rem;
    }

    .zfc053guide-steps {
        gap: 1.2rem;
    }

    .zfc053step-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }

    .zfc053step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .zfc053step-content h3 {
        font-size: 1.2rem;
    }

    .zfc053step-content p {
        font-size: 0.95rem;
    }

    .zfc053step-details li {
        font-size: 0.9rem;
    }

    .zfc053requirements-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .zfc053tab {
        width: 100%;
        padding: 0.8rem;
    }

    .zfc053requirement-card {
        padding: 1.2rem;
    }

    .zfc053requirement-card h4 {
        font-size: 1.1rem;
    }

    .zfc053requirement-card li {
        font-size: 0.9rem;
    }

    .zfc053tips-list li {
        padding: 0.8rem;
    }

    .zfc053tip-icon {
        font-size: 1.3rem;
    }

    .zfc053tips-list p {
        font-size: 0.9rem;
    }
}

/* 小手机 (575px以下) */
@media (max-width: 575px) {
    .zfc053guide {
        padding: 2rem 0;
    }

    .zfc053guide h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .zfc053guide-main,
    .zfc053guide-side {
        padding: 1.2rem;
    }

    .zfc053guide-steps {
        gap: 1rem;
    }

    .zfc053step-card {
        padding: 1rem;
    }

    .zfc053step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .zfc053step-content h3 {
        font-size: 1.1rem;
    }

    .zfc053step-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .zfc053step-details li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .zfc053system-requirements h3,
    .zfc053guide-tips h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .zfc053tab {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .zfc053tab-icon {
        font-size: 1.1rem;
    }

    .zfc053requirement-card {
        padding: 1rem;
    }

    .zfc053requirement-card h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .zfc053requirement-card li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .zfc053tips-list li {
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .zfc053tip-icon {
        font-size: 1.2rem;
    }

    .zfc053tips-list p {
        font-size: 0.85rem;
    }
}

/* 动画效果 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zfc053step-card {
    animation: slideIn 0.5s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.zfc053tab-content {
    animation: fadeIn 0.3s ease-out forwards;
}

/* 交互效果 */
.zfc053tab {
    position: relative;
    overflow: hidden;
}

.zfc053tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00B900;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zfc053tab:hover::after {
    transform: scaleX(1);
}

.zfc053tab.zfc053active::after {
    transform: scaleX(1);
}

.zfc053step-card {
    position: relative;
    overflow: hidden;
}

.zfc053step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00B900, #00A000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zfc053step-card:hover::before {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .zfc053header .zfc053container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .zfc053main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .zfc053hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .zfc053hero-text h2 {
        font-size: 2.5rem;
    }

    .zfc053hero-image {
        order: -1;
    }

    .zfc053hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .zfc053features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .zfc053version-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfc053guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .zfc053guide-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zfc053container {
        padding: 0 15px;
    }

    .zfc053hero {
        padding: 4rem 0 2rem;
    }

    .zfc053hero-text h2 {
        font-size: 2rem;
    }

    .zfc053hero-text p {
        font-size: 1.1rem;
    }

    .zfc053hero-image img {
        max-width: 250px;
    }

    .zfc053download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .zfc053btn {
        width: 100%;
        text-align: center;
    }

    .zfc053features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .zfc053version-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .zfc053guide-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .zfc053system-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .zfc053system-tab {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .zfc053header {
        padding: 0.8rem 0;
    }

    .zfc053logo h1 {
        font-size: 1.2rem;
    }

    .zfc053main-nav ul {
        gap: 0.5rem;
    }

    .zfc053main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .zfc053hero {
        padding: 3rem 0 2rem;
    }

    .zfc053hero-text h2 {
        font-size: 1.8rem;
    }

    .zfc053hero-text p {
        font-size: 1rem;
    }

    .zfc053hero-image img {
        max-width: 200px;
    }

    .zfc053version-info {
        font-size: 0.9rem;
    }

    .features h2,
    .version h2,
    .zfc053guide h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .zfc053feature-card,
    .zfc053version-card,
    .zfc053guide-card {
        padding: 1.2rem;
    }

    .zfc053feature-icon,
    .zfc053version-icon,
    .zfc053step-icon {
        font-size: 1.8rem;
    }

    .zfc053feature-card h3,
    .zfc053version-header h3,
    .zfc053guide-step h4 {
        font-size: 1.1rem;
    }

    .zfc053feature-card p,
    .zfc053version-content p,
    .zfc053guide-step p {
        font-size: 0.9rem;
    }

    .zfc053feature-details li,
    .zfc053version-features li,
    .zfc053step-details li {
        font-size: 0.85rem;
    }

    .zfc053tips-list li {
        padding: 0.8rem;
    }

    .zfc053tip-icon {
        font-size: 1.2rem;
    }

    .zfc053tips-list p {
        font-size: 0.85rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .zfc053container {
        max-width: 1400px;
    }

    .zfc053hero-content {
        gap: 4rem;
    }

    .zfc053hero-text h2 {
        font-size: 3.5rem;
    }

    .zfc053hero-text p {
        font-size: 1.4rem;
    }

    .zfc053hero-image img {
        max-width: 450px;
    }

    .zfc053features-grid,
    .zfc053version-grid {
        gap: 2.5rem;
    }

    .zfc053feature-card,
    .zfc053version-card {
        padding: 2.5rem;
    }

    .zfc053guide-steps {
        gap: 2rem;
    }

    .zfc053guide-step {
        padding: 2rem;
    }
}

/* 动画优化 */
@media (prefers-reduced-motion: reduce) {
    .floating,
    .zfc053feature-card,
    .zfc053version-card,
    .zfc053guide-step {
        animation: none;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #fff;
    }

    .zfc053feature-card,
    .zfc053version-card,
    .zfc053guide-card {
        background-color: #2d2d2d;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .zfc053feature-card p,
    .zfc053version-content p,
    .zfc053guide-step p {
        color: #ccc;
    }

    .zfc053feature-details li,
    .zfc053version-features li,
    .zfc053step-details li {
        color: #ddd;
    }

    .zfc053system-tab {
        background-color: #333;
        color: #fff;
    }

    .zfc053tips-list li {
        background-color: #333;
    }
}

/* 下载中心样式 */
.zfc053download {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zfc053download h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zfc053download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zfc053download-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.zfc053download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.zfc053download-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.zfc053download-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
}

.zfc053download-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.zfc053download-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
}

.zfc053download-info p {
    margin: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.zfc053download-card .zfc053btn {
    width: 100%;
    margin-top: auto;
}

/* 下载中心响应式设计 */
@media (max-width: 1200px) {
    .zfc053download-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .zfc053download-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .zfc053download {
        padding: 3rem 0;
    }

    .zfc053download h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .zfc053download-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .zfc053download-card {
        padding: 1.5rem;
    }

    .zfc053download-icon {
        font-size: 2.5rem;
    }

    .zfc053download-card h3 {
        font-size: 1.2rem;
    }

    .zfc053download-card p {
        font-size: 0.9rem;
    }

    .zfc053download-info {
        padding: 0.8rem;
    }

    .zfc053download-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .zfc053download {
        padding: 2rem 0;
    }

    .zfc053download h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .zfc053download-card {
        padding: 1.2rem;
    }

    .zfc053download-icon {
        font-size: 2rem;
    }

    .zfc053download-card h3 {
        font-size: 1.1rem;
    }

    .zfc053download-info {
        padding: 0.7rem;
    }
}

/* 友情链接样式 */
.zfc053friend-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zfc053friend-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.zfc053friend-links li {
    margin: 0;
}

.zfc053friend-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.zfc053friend-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 友情链接响应式设计 */
@media (max-width: 768px) {
    .zfc053friend-links ul {
        gap: 0.5rem;
    }

    .zfc053friend-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .zfc053friend-links {
        margin: 1.5rem 0;
    }

    .zfc053friend-links ul {
        flex-direction: column;
        align-items: center;
    }

    .zfc053friend-links a {
        display: block;
        width: 100%;
        text-align: center;
    }
} 