/* 全局样式重置 */
* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background-color: #00B900;
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.logo-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.main-nav a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 主要内容区域 */
main {
    margin-top: 65px;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .line-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: white;
    color: #00B900;
    margin-right: 1rem;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* 特性区域 */
.features {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    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;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card.primary {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.feature-card.primary .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card.primary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-card.primary p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #00B900;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.feature-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.feature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .version-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo-desc {
        font-size: 0.7rem;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    main {
        margin-top: 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image .line-logo {
        max-height: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .requirements-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .guide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #00B900;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.4rem 0;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-desc {
        font-size: 0.65rem;
    }

    .main-nav ul {
        gap: 0.8rem;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    main {
        margin-top: 55px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image .line-logo {
        max-height: 150px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .download-header {
        padding: 1rem;
    }

    .download-content {
        padding: 1rem;
    }

    .download-icon {
        font-size: 2rem;
    }

    .download-header h3 {
        font-size: 1.1rem;
    }

    .requirements-header {
        padding: 1rem;
    }

    .requirements-content {
        padding: 1rem;
    }

    .requirements-header h3 {
        font-size: 1.1rem;
    }

    .faq-header {
        padding: 1rem;
    }

    .faq-content {
        padding: 1rem;
    }

    .faq-header h3 {
        font-size: 1.1rem;
    }

    .guide-header {
        padding: 1rem;
    }

    .guide-content {
        padding: 1rem;
    }

    .guide-header h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .main-nav {
        width: 100%;
        max-width: none;
    }
}

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 优化导航栏在移动端的显示 */
@media (max-width: 768px) {
    .main-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .main-nav ul {
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .main-nav::-webkit-scrollbar {
        height: 3px;
    }

    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
}

/* 优化图片加载 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化按钮在移动端的触摸区域 */
@media (max-width: 480px) {
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 版本信息区域 */
.versions {
    padding: 4rem 0;
    background-color: #fff;
}

.versions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.version-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.version-card, .update-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.version-header, .update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.version-header h3, .update-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.version-date, .update-date {
    color: #666;
    font-size: 0.9rem;
}

.version-content, .update-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.version-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.version-platform:hover {
    transform: translateX(5px);
}

.platform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 10px;
}

.platform-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.version-number {
    color: #00B900;
    font-weight: bold;
    margin: 0;
    font-size: 0.9rem;
}

.version-size {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.update-item:hover {
    transform: translateX(5px);
}

.update-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
}

.update-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.update-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 版本信息响应式设计 */
@media (max-width: 1200px) {
    .version-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .version-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .version-card, .update-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .versions {
        padding: 3rem 0;
    }

    .versions h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .version-card, .update-card {
        padding: 1.5rem;
    }

    .version-header, .update-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .version-header h3, .update-header h3 {
        font-size: 1.3rem;
    }

    .version-platform, .update-item {
        padding: 0.8rem;
    }

    .platform-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .update-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .platform-info h4, .update-info h4 {
        font-size: 1rem;
    }

    .version-number, .version-size, .update-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .versions {
        padding: 2rem 0;
    }

    .versions h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .version-wrapper {
        gap: 1.5rem;
    }

    .version-card, .update-card {
        padding: 1.2rem;
    }

    .version-header h3, .update-header h3 {
        font-size: 1.2rem;
    }

    .version-date, .update-date {
        font-size: 0.8rem;
    }

    .version-platform, .update-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .platform-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .update-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .platform-info h4, .update-info h4 {
        font-size: 0.95rem;
    }

    .version-number, .version-size, .update-info p {
        font-size: 0.8rem;
    }
}

/* 下载中心区域 */
.download-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.download-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-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;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.download-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.download-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.download-badge {
    background: white;
    color: #00B900;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.download-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.download-info {
    text-align: center;
}

.download-info p {
    margin: 0.5rem 0;
    color: #666;
}

.version-info {
    color: #00B900;
    font-weight: 500;
}

.download-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.download-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

.btn-download {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #00B900;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background: #00A000;
}

/* 系统要求区域 */
.requirements {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.requirements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.requirements-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-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;
}

.requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.requirements-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.requirements-header .platform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.requirements-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.requirements-content {
    padding: 1.5rem;
}

.requirement-group {
    margin-bottom: 2rem;
}

.requirement-group:last-child {
    margin-bottom: 0;
}

.requirement-group h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-label {
    color: #666;
    font-size: 0.95rem;
}

.requirement-value {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 常见问题区域 */
.faq {
    padding: 4rem 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-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;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.faq-content {
    padding: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.question-icon {
    width: 24px;
    height: 24px;
    background: #00B900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 2.5rem;
}

.answer-icon {
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-answer p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南区域 */
.guide {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.guide-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-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;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guide-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.guide-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.guide-content {
    padding: 1.5rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.guide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #00B900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.step-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.feature-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南响应式设计 */
@media (max-width: 1024px) {
    .guide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide-main .guide-card {
        max-width: 800px;
        margin: 0 auto;
    }

    .guide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide {
        padding: 3rem 0;
    }

    .guide h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .guide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .guide-header {
        padding: 1.2rem;
    }

    .guide-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .guide-header h3 {
        font-size: 1.3rem;
    }

    .guide-content {
        padding: 1.2rem;
    }

    .guide-step, .feature-item {
        gap: 0.8rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .step-info h4, .feature-info h4 {
        font-size: 1rem;
    }

    .step-info p, .feature-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .guide {
        padding: 2rem 0;
    }

    .guide h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .guide-header {
        padding: 1rem;
    }

    .guide-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .guide-header h3 {
        font-size: 1.2rem;
    }

    .guide-content {
        padding: 1rem;
    }

    .guide-step, .feature-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .step-info h4, .feature-info h4 {
        font-size: 0.95rem;
    }

    .step-info p, .feature-info p {
        font-size: 0.85rem;
    }
}

/* 页脚样式 */
.footer {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-links {
    text-align: center;
}

.footer-links h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00B900;
}

.footer-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-info a {
    color: #00B900;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-info {
        font-size: 0.85rem;
    }
}

/* 导航当前栏目高亮（与 channel currentcss 对应） */
.main-nav li.nav-this > a {
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    padding-bottom: 2px;
}

/* 首页文章资讯板块：桌面端一行 5 条，共两行 */
.home-articles {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.home-articles h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    color: #333;
}

.home-articles .section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.home-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-article-thumb {
    aspect-ratio: 220 / 140;
    overflow: hidden;
    background: #eee;
}

.home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-article-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.45;
    padding: 0.75rem 0.85rem 1rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-article-link:hover .home-article-title {
    color: #00B900;
}

/* 内页：主栏 + 侧栏 */
.page-inner {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}

.page-main {
    min-width: 0;
}

/* 文章详情 */
.article-detail-header {
    margin-bottom: 1.25rem;
}

.article-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.article-meta a {
    color: #00B900;
    text-decoration: none;
}

.article-meta a:hover {
    text-decoration: underline;
}

.article-detail-title {
    font-size: 1.75rem;
    color: #222;
    line-height: 1.35;
    margin: 0 0 0.75rem;
}

.zbf39cmeta-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zbf39cmeta-tags .zbf39ctagitem a {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: #eef9ee;
    color: #00A000;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
}

.zbf39cmeta-tags .zbf39ctagitem a:hover {
    background: #00B900;
    color: #fff;
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

.article-tags-php {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.article-tags-php a {
    margin-right: 0.35rem;
    color: #008800;
}

.article-detail-thumb {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

.article-detail-thumb img[src=""],
.article-detail-thumb img:not([src]) {
    display: none;
}

.article-detail-body {
    font-size: 1rem;
    color: #333;
    line-height: 1.75;
}

.article-detail-body img {
    max-width: 100%;
    height: auto;
}

.article-detail-gallery {
    margin-top: 2rem;
}

.article-gallery-item {
    margin-bottom: 1.25rem;
}

.article-gallery-item figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.35rem;
}

.article-prenext {
    margin: 2.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-prenext-inner {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 常见上一篇/下一篇输出：单列或 ul 两列，避免重复套一层再各调一次 prenext */
.article-prenext-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.article-prenext-inner li {
    flex: 1 1 200px;
    min-width: 0;
}

.article-prenext-inner a {
    color: #00B900;
    text-decoration: none;
}

.article-prenext-inner a:hover {
    text-decoration: underline;
}

.block-title {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00B900;
}

.article-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-related-item {
    margin-bottom: 1rem;
}

.article-related-link {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-decoration: none;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.article-related-link:hover {
    border-color: #00B900;
    box-shadow: 0 4px 12px rgba(0, 185, 0, 0.12);
}

.article-related-thumb {
    flex-shrink: 0;
    width: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.article-related-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.article-related-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.article-related-title {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

.article-related-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

/* 侧栏（内容页与列表页共用） */
.page-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.sidebar-panel-title {
    margin: 0;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #00B900, #00A000);
}

.sidebar-panel-title a {
    color: #fff;
    text-decoration: none;
}

.sidebar-panel-title a:hover {
    text-decoration: underline;
}

.sidebar-panel-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    max-height: 520px;
    overflow-y: auto;
}

.sidebar-panel-item {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-panel-item:last-child {
    border-bottom: none;
}

.sidebar-article-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
    color: #333;
    font-size: 0.82rem;
    line-height: 1.35;
}

.sidebar-article-row:hover {
    background: #f6fff6;
}

.sidebar-article-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-text {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 列表页 */
.list-page-header {
    margin-bottom: 1.5rem;
}

.list-page-title {
    font-size: 1.75rem;
    color: #222;
    margin: 0 0 0.5rem;
}

.list-page-box {
    margin-bottom: 1.5rem;
}

.list-page-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-page-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.list-page-item:first-child {
    padding-top: 0;
}

.list-page-thumb {
    flex-shrink: 0;
    width: 200px;
    max-width: 40%;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.list-page-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.list-page-body {
    flex: 1;
    min-width: 0;
}

.list-page-meta {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}

.list-page-type {
    color: #00B900;
    text-decoration: none;
}

.list-page-type:hover {
    text-decoration: underline;
}

.list-page-item-title {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.list-page-item-title a {
    color: #222;
    text-decoration: none;
}

.list-page-item-title a:hover {
    color: #00B900;
}

.list-page-intro {
    margin: 0;
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
}

/* 列表翻页：左右分布（上一页偏左，下一页偏右，中间自适应） */
.list-page-bar {
    margin-top: 1rem;
}

.list-pagination-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.list-pagination-wrap .list-pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem 0.5rem;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
}

.list-pagination-wrap .list-pagelist > li {
    flex: 0 0 auto;
}

.list-pagination-wrap .list-pagelist a,
.list-pagination-wrap .list-pagelist span {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
}

.list-pagination-wrap .list-pagelist a:hover {
    background: #eef9ee;
    color: #00B900;
}

/* 常见分页类名兼容：将首项信息区与末区拉开 */
.list-pagination-wrap .pagelist .pageinfo,
.list-pagination-wrap .pagelist .thisclass {
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .home-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
        order: 2;
    }

    .page-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .home-articles {
        padding: 3rem 0;
    }

    .home-articles h2 {
        font-size: 1.65rem;
    }

    .home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .article-detail-title {
        font-size: 1.45rem;
    }

    .list-page-item {
        flex-direction: column;
    }

    .list-page-thumb {
        width: 100%;
        max-width: 100%;
    }

    .article-related-link {
        flex-direction: column;
    }

    .article-related-thumb {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .home-articles-grid {
        grid-template-columns: 1fr;
    }

    .article-prenext-inner ul {
        flex-direction: column;
    }
}