/* 全局样式重置 */
* {
    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: 1rem 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.5rem;
    font-weight: bold;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.main-nav a:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 主要内容区域 */
main {
    margin-top: 70px;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    padding: 6rem 0 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    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;
    margin: 0 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: white;
    color: #00B900;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* 平板设备 (768px - 991px) */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .main-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);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* 汉堡菜单动画 */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* 遮罩层 */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* 小手机 (575px 及以下) */
@media (max-width: 575px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .main-nav {
        width: 100%;
        max-width: none;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* 指南区域样式 */
.guide {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.guide-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.guide-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-steps {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guide-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;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.step-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;
}

.guide-step h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
}

.guide-step p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    text-align: left;
    width: 100%;
}

.step-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.9rem;
}

.step-details li:before {
    content: "✓";
    color: #00B900;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.guide-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.card-header h4 {
    margin: 0;
    font-size: 1.3rem;
}

.card-body {
    padding: 1.5rem;
}

.system-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.system-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;
}

.system-tab.active {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.tab-icon {
    font-size: 1.2rem;
}

.system-content {
    display: none;
}

.system-content.active {
    display: block;
}

.system-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.system-list li:before {
    content: "•";
    color: #00B900;
    position: absolute;
    left: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tips-list p {
    margin: 0;
    color: #555;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .guide-requirements {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .guide-step {
        padding: 1.5rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .guide-step h4 {
        font-size: 1.2rem;
    }

    .guide-step p {
        font-size: 0.9rem;
    }

    .step-details li {
        font-size: 0.85rem;
    }
}

/* 动画效果 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.guide-step {
    animation: slideIn 0.5s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.system-content {
    animation: fadeIn 0.3s ease-out forwards;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* 版本信息样式 */
.version-info {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.version-info p {
    margin: 0.5rem 0;
}

/* 更新下载按钮样式 */
.download-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);
    }
}

@media (max-width: 991px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .guide-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .system-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .system-tab {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .header {
        padding: 0.8rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .main-nav ul {
        gap: 0.5rem;
    }

    .main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 200px;
    }

    .version-info {
        font-size: 0.9rem;
    }

    .guide h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .guide-card {
        padding: 1.2rem;
    }

    .step-icon {
        font-size: 1.8rem;
    }

    .guide-step h4 {
        font-size: 1.1rem;
    }

    .guide-step p {
        font-size: 0.9rem;
    }

    .step-details li {
        font-size: 0.85rem;
    }

    .tips-list li {
        padding: 0.8rem;
    }

    .tip-icon {
        font-size: 1.2rem;
    }

    .tips-list p {
        font-size: 0.85rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        gap: 4rem;
    }

    .hero-text h2 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1.4rem;
    }

    .hero-image img {
        max-width: 450px;
    }

    .guide-steps {
        gap: 2rem;
    }

    .guide-step {
        padding: 2rem;
    }
}

/* 动画优化 */
@media (prefers-reduced-motion: reduce) {
    .floating,
    .guide-step {
        animation: none;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #fff;
    }

    .guide-card {
        background-color: #2d2d2d;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .guide-step {
        background-color: #2d2d2d;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .guide-step p {
        color: #ccc;
    }

    .step-details li {
        color: #ddd;
    }

    .system-tab {
        background-color: #333;
        color: #fff;
    }

    .tips-list li {
        background-color: #333;
    }
}

/* 下载中心样式 */
.download {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.download h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-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;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.download-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
}

.download-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.download-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
}

.download-info p {
    margin: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.download-card .btn {
    width: 100%;
    margin-top: auto;
}

/* 下载中心响应式设计 */
@media (max-width: 1200px) {
    .download-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .download {
        padding: 3rem 0;
    }

    .download h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .download-card {
        padding: 1.5rem;
    }

    .download-icon {
        font-size: 2.5rem;
    }

    .download-card h3 {
        font-size: 1.2rem;
    }

    .download-card p {
        font-size: 0.9rem;
    }

    .download-info {
        padding: 0.8rem;
    }

    .download-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .download {
        padding: 2rem 0;
    }

    .download h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .download-card {
        padding: 1.2rem;
    }

    .download-icon {
        font-size: 2rem;
    }

    .download-card h3 {
        font-size: 1.1rem;
    }

    .download-info {
        padding: 0.7rem;
    }
}

/* 友情链接样式 */
.friend-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);
}

.friend-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.friend-links li {
    margin: 0;
}

.friend-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.friend-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* 友情链接响应式设计 */
@media (max-width: 768px) {
    .friend-links ul {
        gap: 0.5rem;
    }

    .friend-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .friend-links {
        margin: 1.5rem 0;
    }

    .friend-links ul {
        flex-direction: column;
        align-items: center;
    }

    .friend-links a {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ========== 内页 / 文章 / 列表 / 首页文章板块 ========== */
.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.9;
}

.main-nav .main-nav-list {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem 0.75rem;
    row-gap: 0.5rem;
}

.main-nav .z89ec6this > a,
.main-nav li.z89ec6this > a,
.z89ec6nav-item.z89ec6this > a {
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

/* 首页文章资讯 */
.home-articles {
    padding: 4rem 0;
    background: #f9f9f9;
}

.home-articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.home-articles-lead {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.home-article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.home-article-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eee;
}

.home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-article-info {
    padding: 0.75rem 0.85rem 1rem;
}

.home-article-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 0.35rem;
}

.home-article-title a {
    color: #222;
    text-decoration: none;
}

.home-article-title a:hover {
    color: #00B900;
}

.home-article-type {
    font-size: 0.75rem;
}

.home-article-type a {
    color: #888;
    text-decoration: none;
}

.home-article-type a:hover {
    color: #00B900;
}

/* 内页主布局 */
.inner-main-wrap {
    padding: 2rem 0 3rem;
    background: #f5f5f5;
}

.inner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    align-items: start;
}

.inner-content {
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 2rem 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.inner-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1rem;
    margin: 0 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00B900;
    color: #333;
}

.sidebar-thumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-thumb-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
}

.sidebar-thumb-list .sb-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 58px;
    overflow: hidden;
    border-radius: 6px;
    background: #eee;
}

.sidebar-thumb-list .sb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-thumb-list .sb-title {
    flex: 1;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
}

.sidebar-thumb-list .sb-title:hover {
    color: #00B900;
}

/* 文章页 */
.article-breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.article-breadcrumb a {
    color: #00B900;
    text-decoration: none;
}

.article-breadcrumb .sep {
    margin: 0 0.35rem;
    color: #ccc;
}

.article-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    color: #222;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.article-meta a {
    color: #00B900;
    text-decoration: none;
}

.article-litpic-wrap {
    margin: 0 0 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.article-litpic-wrap img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.typography {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    word-wrap: break-word;
}

.typography img {
    max-width: 100%;
    height: auto;
}

.article-gallery-item {
    margin: 1rem 0;
}

.article-gallery-item img {
    max-width: 100%;
    border-radius: 8px;
}

.article-gallery .cap {
    display: block;
    font-size: 0.88rem;
    color: #666;
    margin-top: 0.35rem;
}

.z89ec6diyfield {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.z89ec6meta-tags.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.z89ec6tagitem a {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: #f0f9f0;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #00A000;
    text-decoration: none;
}

.article-prenext {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
    font-size: 0.92rem;
}

.prenext-row {
    margin-bottom: 0.5rem;
}

.pn-label {
    color: #888;
    margin-right: 0.25rem;
}

.block-title {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.thumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thumb-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.thumb-list-img {
    flex: 0 0 140px;
    width: 140px;
    height: 84px;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.thumb-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-list-title {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.thumb-list-title:hover {
    color: #00B900;
}

.thumb-list-desc {
    font-size: 0.88rem;
    color: #666;
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

/* 列表页 */
.list-page-header {
    margin-bottom: 1.25rem;
}

.list-page-title {
    font-size: 1.65rem;
    margin: 0;
    color: #222;
}

.list-slide-banner {
    margin-bottom: 1.25rem;
}

.list-thumb-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-thumb-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.list-thumb-item:last-child {
    border-bottom: none;
}

.list-thumb-link {
    flex: 0 0 200px;
    width: 200px;
    max-width: 40%;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.list-thumb-link img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.list-thumb-body {
    flex: 1;
    min-width: 0;
}

.list-typeline {
    font-size: 0.8rem;
    margin: 0 0 0.35rem;
    color: #888;
}

.list-typeline a {
    color: #00B900;
    text-decoration: none;
}

.list-thumb-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.35rem;
}

.list-thumb-title:hover {
    color: #00B900;
}

.list-thumb-meta {
    font-size: 0.82rem;
    color: #999;
    margin: 0 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.list-thumb-intro {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* 分页：左右区域 + 中部页码 */
.pagebar-outer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.pagebar-lr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.pagebar-lr .pagelist,
.pagebar-center .pagelist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.35rem 0.5rem;
    align-items: center;
}

.pagebar-lr-left .pagelist {
    justify-content: flex-start;
}

.pagebar-lr-right .pagelist {
    justify-content: flex-end;
}

.pagebar-center .pagelist {
    justify-content: center;
}

.pagebar-lr-left,
.pagebar-lr-right {
    flex: 1;
    min-width: 140px;
}

.pagebar-lr-right {
    text-align: right;
}

.zzpages.z89ec6pages a,
.zzpages.z89ec6pages li,
.pagebar-outer .pagelist a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.pagebar-outer .pagelist a:hover {
    color: #00B900;
}

.list-extra-arclist,
.list-extra-bodydemo {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #e0e0e0;
}

.bodydemo-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bodydemo-list li {
    margin-bottom: 1rem;
}

.bodydemo-list a {
    font-weight: 600;
    color: #00B900;
    text-decoration: none;
}

.bodydemo-snippet {
    font-size: 0.88rem;
    color: #666;
    margin: 0.35rem 0 0;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    .home-articles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .inner-layout {
        grid-template-columns: 1fr;
    }

    .inner-sidebar {
        order: 2;
    }

    .inner-content {
        order: 1;
    }

    .home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .list-thumb-item {
        flex-direction: column;
    }

    .list-thumb-link {
        max-width: 100%;
        width: 100%;
        flex: none;
    }
}

@media (max-width: 767px) {
    .home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .inner-content {
        padding: 1.25rem 1rem 1.5rem;
    }

    .article-title {
        font-size: 1.35rem;
    }

    .thumb-list-item {
        flex-direction: column;
    }

    .thumb-list-img {
        width: 100%;
        flex: none;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .pagebar-lr {
        flex-direction: column;
        align-items: stretch;
    }

    .pagebar-lr-right {
        text-align: left;
    }

    .pagebar-lr-right .pagelist {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .home-articles {
        padding: 2.5rem 0;
    }

    .home-articles-grid {
        grid-template-columns: 1fr;
    }

    .home-articles h2 {
        font-size: 1.5rem;
    }
}