/* 网页2 */
.purchase-info {
    text-align: center;
}

.purchase-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.purchase-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding:30px;
    margin-bottom:30px;
    backdrop-filter: blur(10px);
}

.purchase-section h3 {
    color: #00fffb;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* 支付方式样式 */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.payment-info h4 {
    color: #00fffb;
    margin-bottom: 0.5rem;
}

.security-note {
    color: #b8f2ff;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* 使用流程样式 */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h4 {
    color: #00fffb;
    margin-bottom: 0.5rem;
}

/* 其他样式 */
.refund-policies,
.update-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.refund-item,
.update-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.refund-item:hover,
.update-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.refund-item h4,
.update-item h4 {
    color: #00fffb;
    margin-bottom: 0.5rem;
}

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

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.support-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.system-requirements ul {
    color: #e0e0e0;
    text-align: left;
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
    columns: 2;
    column-gap: 3rem;
}

.system-requirements li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    break-inside: avoid;
}

.system-requirements li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00fffb;
    font-size: 0.8rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .system-requirements ul {
        columns: 1;
    }
}

.compatibility-note {
    color: #b8f2ff;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .purchase-content {
        padding: 0 1rem;
    }
    
    .purchase-section {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* 网页2常见问题 */
.purchase-faq2 {
    padding: 1rem 0;
    text-align: center;
}

.faq-grid2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 两栏布局 */
    gap: 1.5rem;
}

.faq-item2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.faq-question2 h3 {
    color: #00fffb;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    text-align: left;
}

.faq-answer2 {
    text-align: left;
}

.faq-answer2 p {
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.faq-answer2 ul {
    color: #b8f2ff;
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.faq-answer2 li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    position: relative;
}

.faq-answer2 li::before {
    content: '▶';
    position: absolute;
    left: -1.2rem;
    color: #00fffb;
    font-size: 0.7rem;
    top: 0.1rem;
}

.faq-answer2 strong {
    color: #00fffb;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .faq-grid2 {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .faq-item2 {
        padding: 0.8rem;
    }
    
    .faq-question2 h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer2 ul {
        padding-left: 1.2rem;
    }
    
    .faq-answer2 p, .faq-answer2 ul {
        font-size: 0.85rem;
    }
}

/* 网页3 */
.detailed-features {
    padding: 4rem 0;
    text-align: center;
}

.features-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 3rem;
}

.feature-detail-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-detail-item:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.feature-detail-item h3 {
    color: #00fffb;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 0.8rem;
    text-align: left;
}

.feature-content {
    text-align: left;
}

.feature-content p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.feature-content strong {
    color: #00fffb;
    font-weight: 700;
}

.feature-content ul {
    color: #b8f2ff;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.feature-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.feature-content li::before {
    content: '▶';
    position: absolute;
    left: -1.5rem;
    color: #00fffb;
    font-size: 0.8rem;
    top: 0.2rem;
}

.feature-content li strong {
    color: #00fffb;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .features-detail-container {
        padding: 0 1rem;
    }
    
    .feature-detail-item {
        padding: 1.5rem;
    }
    
    .feature-detail-item h3 {
        font-size: 1.5rem;
    }
    
    .feature-content ul {
        padding-left: 1.5rem;
    }
}
/* 网页4 */
.news-section4 {
    max-width: 800px; /* 从1200px减小到800px */
    margin: 0 auto;
    padding: 2rem 1rem;
}

.news-header4 h2 {
    color: #00fffb;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.news-list4 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.news-item4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.news-item4:last-child {
    border-bottom: none;
}

.news-item4:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00fffb;
}

.news-title4 {
    font-size: 1rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1.5rem; /* 增加右边距，让标题和时间有更好间隔 */
    text-align: left; /* 确保左对齐 */
}

.news-time4 {
    font-size: 0.9rem;
    color: #b8f2ff;
    opacity: 0.8;
    white-space: nowrap;
    flex-shrink: 0; /* 防止时间被压缩 */
}

.news-item4:hover .news-time4 {
    color: #00fffb;
    opacity: 1;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-section4 {
        max-width: 100%;
        padding: 1.5rem 0.5rem;
    }
    
    .news-header4 h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .news-item4 {
        padding: 0.8rem 1rem;
    }
    
    .news-title4 {
        font-size: 0.9rem;
        margin-right: 1rem;
    }
    
    .news-time4 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .news-item4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .news-title4 {
        margin-right: 0;
        width: 100%;
    }
    
    .news-time4 {
        align-self: flex-end;
    }
}

/* 网页5 */
.tutorial-guide5 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tutorial-header5 h2 {
    color: #00fffb;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.intro-text5 {
    color: #e0e0e0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.tutorial-steps5 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card5 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.step-header5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number5 {
    background: #00fffb;
    color: #000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-header5 h3 {
    color: #00fffb;
    font-size: 1.3rem;
    margin: 0;
}

.step-content5 h4 {
    color: #00fffb;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
}

.step-content5 ul {
    color: #e0e0e0;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.step-content5 li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.step-section5 {
    margin-bottom: 1.5rem;
}

.step-images5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.tutorial-img5 {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.step-tip5 {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid #00fffb;
    padding: 1rem;
    margin: 1rem 0 0 0;
    color: #b8f2ff;
    font-size: 0.9rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .tutorial-guide5 {
        padding: 1rem 0.5rem;
    }
    
    .tutorial-header5 h2 {
        font-size: 1.5rem;
    }
    
    .intro-text5 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-card5 {
        padding: 1.5rem;
    }
    
    .step-header5 {
        gap: 0.8rem;
    }
    
    .step-number5 {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .step-header5 h3 {
        font-size: 1.1rem;
    }
    
    .step-images5 {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .tutorial-img5 {
        aspect-ratio: 16/9;
    }
}
/* 网页6 */
.troubleshoot-guide5 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.troubleshoot-header5 h2 {
    color: #00fffb;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.troubleshoot-intro5 {
    color: #b8f2ff;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.troubleshoot-content5 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card5 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: left;
}

.problem-header5 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.problem-icon5 {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.problem-header5 h3 {
    color: #00fffb;
    font-size: 1.3rem;
    margin: 0 0 0.3rem 0;
}

.problem-desc5 {
    color: #b8f2ff;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.quick-fix5 {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #5579a2;
}

.quick-fix5 h4 {
    color: #00aade;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.fix-steps5 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.fix-step5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
}

.step-num5 {
    background: #127990;
    color: #000;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.detail-solution5 {
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 1.2rem;
}

.detail-solution5 h4 {
    color: #00fffb;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.detail-section5 {
    margin-bottom: 1.2rem;
}

.detail-section5 h5 {
    color: #b8f2ff;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.detail-section5 p {
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.detail-section5 ul {
    color: #e0e0e0;
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.detail-section5 li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.detail-section5 strong {
    color: #00fffb;
}

.support-footer5 {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.support-footer5 p {
    color: #b8f2ff;
    margin: 0;
    line-height: 1.5;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .troubleshoot-guide5 {
        padding: 1rem 0.5rem;
    }
    
    .troubleshoot-header5 h2 {
        font-size: 1.6rem;
    }
    
    .troubleshoot-intro5 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .problem-card5 {
        padding: 1.2rem;
    }
    
    .problem-header5 {
        gap: 0.8rem;
    }
    
    .problem-icon5 {
        font-size: 1.6rem;
    }
    
    .problem-header5 h3 {
        font-size: 1.1rem;
    }
    
    .quick-fix5 {
        padding: 1rem;
    }
    
    .fix-step5 {
        gap: 0.8rem;
    }
    
    .step-num5 {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .problem-header5 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .fix-step5 {
        align-items: flex-start;
    }
    
    .fix-step5 span {
        font-size: 0.9rem;
    }
}
/* 网站7 */
.contact-section7 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.contact-header7 h2 {
    color: #00fffb;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.contact-subtitle7 {
    color: #b8f2ff;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.studio-intro7 {
    margin-bottom: 2.5rem;
}

.intro-card7 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.intro-card7 h3 {
    color: #00fffb;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.intro-card7 p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.contact-methods7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card7 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card7:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.1);
}

.contact-icon7 {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info7 h4 {
    color: #00fffb;
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
}

.contact-detail7 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 0.2rem 0;
}

.contact-desc7 {
    color: #b8f2ff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.service-features7 {
    margin-bottom: 2.5rem;
}

.service-features7 h3 {
    color: #00fffb;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.features-grid7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.feature-item7 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.feature-item7:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.1);
}

.feature-icon7 {
    font-size: 1.2rem;
}

.contact-tips7 {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.tip-card7 h4 {
    color: #00fffb;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tip-card7 ul {
    color: #e0e0e0;
    padding-left: 1.2rem;
    margin: 0;
}

.tip-card7 li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contact-section7 {
        padding: 2rem 0.5rem;
    }
    
    .contact-header7 h2 {
        font-size: 1.8rem;
    }
    
    .contact-subtitle7 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .intro-card7 {
        padding: 1.5rem;
    }
    
    .contact-methods7 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card7 {
        padding: 1.2rem;
    }
    
    .contact-icon7 {
        font-size: 1.6rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .features-grid7 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-item7 {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-tips7 {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid7 {
        grid-template-columns: 1fr;
    }
    
    .contact-card7 {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}
/* 客服 */
.qq-highlight7 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00fffb;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: glow7 2s ease-in-out infinite alternate;
}

@keyframes glow7 {
    from {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .qq-highlight7 {
        font-size: 1.5rem;
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
}
/* 文章内容区级 */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.article-meta{
    margin-bottom: 30px;
}
.article-container h1 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    text-align: center;
}

.article-container .article-date {
    font-size: 1rem;
    margin: 0.5rem 0 2rem 0;
    text-align: center;
    color: #666;
}

.article-container h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem 0;
    text-align: left;
    color: #efecee
}

.article-container h3 {
    font-size: 1.5rem;
    margin: 1.2rem 0 0.8rem 0;
    text-align: left;
}

.article-container h4 {
    font-size: 1.3rem;
    margin: 1rem 0 0.6rem 0;
    text-align: left;
}

.article-container p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    text-align: left;
    color: #babdc1;
}

/* 响应式图片基础设置 */
.article-container .article-image {
    max-width: 100%;
    height: auto;
    display: block;
}
.article-container img {
    margin: 40px auto ;
}

.article-container .image-caption {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .article-container h1 {
        font-size: 1.8rem;
    }
    
    .article-container h2 {
        font-size: 1.5rem;
    }
    
    .article-container h3 {
        font-size: 1.3rem;
    }
    
    .article-container h4 {
        font-size: 1.1rem;
    }
    
    .article-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .article-container h1 {
        font-size: 1.6rem;
    }
}
/* 分页导航 */
.pagination-span {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.pagination-span a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 41, 59, 0.9);
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(100, 116, 139, 0.3);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.pagination-span a:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-span a.active {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-color: rgba(59, 130, 246, 0.6);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.pagination-span span {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.6);
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .pagination-span {
        gap: 4px;
        padding: 8px;
        margin: 15px auto;
    }
    
    .pagination-span a,
    .pagination-span span {
        padding: 6px 12px;
        min-width: 36px;
        font-size: 0.9rem;
    }
}
/* 网页8辅助网 */
.fzw{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}