.news-banner {
    background: #0084fe;
    width: 100%;
    min-width: 1200px;
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

.news-banner .news-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.news-banner .news-banner-title {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.news-banner .news-banner-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-top: 12px;
    line-height: 1.6;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.news-list .news-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eef1f5;
    transition: all 0.2s ease;
}

.news-list .news-item:first-child {
    padding-top: 0;
}

.news-list .news-item:hover {
    background: #f7f9fb;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    border-bottom-color: transparent;
}

.news-list .news-item-thumb {
    flex-shrink: 0;
    width: 260px;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef1f5;
}

.news-list .news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-list .news-item:hover .news-item-thumb img {
    transform: scale(1.05);
}

.news-list .news-item-thumb .no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0084fe, #0076ec);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.news-list .news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.news-list .news-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list .news-item-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-list .news-item-title a:hover {
    color: #0084fe;
}

.news-list .news-item-meta {
    font-size: 14px;
    color: #a1afc2;
    margin-bottom: 12px;
}

.news-list .news-item-meta span {
    margin-right: 20px;
}

.news-list .news-item-excerpt {
    font-size: 15px;
    color: #6b7b8d;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list .news-item-readmore {
    margin-top: 12px;
}

.news-list .news-item-readmore a {
    display: inline-block;
    color: #0084fe;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-list .news-item-readmore a:hover {
    color: #0076ec;
    transform: translateX(4px);
}

.news-list .news-item-readmore a::after {
    content: ' →';
    transition: margin 0.2s ease;
}

.news-list .news-item-readmore a:hover::after {
    margin-left: 4px;
}

.news-empty {
    text-align: center;
    padding: 80px 40px;
    color: #a1afc2;
    font-size: 16px;
}

.news-pagination {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.news-pagination .pagination-inner {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-pagination .page-item {
    display: inline-block;
}

.news-pagination .page-item a,
.news-pagination .page-item span {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #4e4e4e;
    text-decoration: none;
    background: #f7f9fb;
    transition: all 0.2s ease;
}

.news-pagination .page-item a:hover {
    background: #0084fe;
    color: #fff;
}

.news-pagination .page-item.active span,
.news-pagination .page-item.active a {
    background: #0084fe;
    color: #fff;
    font-weight: 700;
}

.news-pagination .page-item .dots {
    background: transparent;
    color: #a1afc2;
}

.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef1f5;
}

.article-header .article-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-header .article-meta {
    font-size: 14px;
    color: #a1afc2;
}

.article-header .article-meta span {
    margin: 0 12px;
}

.article-header .article-meta span:first-child {
    margin-left: 0;
}

.article-header .article-meta span:last-child {
    margin-right: 0;
}

.article-header .article-category a {
    color: #0084fe;
    text-decoration: none;
    font-weight: 600;
}

.article-header .article-category a:hover {
    text-decoration: underline;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 17px;
    color: #333;
    line-height: 1.9;
    word-wrap: break-word;
}

.article-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 32px 0 12px;
    line-height: 1.4;
}

.article-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 24px 0 10px;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content a {
    color: #0084fe;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content ul,
.article-content ol {
    margin: 16px 0 20px 24px;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 8px;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content blockquote {
    border-left: 4px solid #0084fe;
    background: #f7f9fb;
    padding: 16px 24px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 24px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
}

.article-content code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e74c3c;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: #e0e0e0;
}

.article-nav {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #eef1f5;
}

.article-nav .nav-prev,
.article-nav .nav-next {
    flex: 1;
    min-width: 0;
}

.article-nav .nav-next {
    text-align: right;
}

.article-nav a {
    display: block;
    text-decoration: none;
    padding: 16px 20px;
    background: #f7f9fb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.article-nav a:hover {
    background: #0084fe;
}

.article-nav .nav-label {
    font-size: 12px;
    color: #a1afc2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.article-nav a:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.article-nav .nav-title {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.article-nav a:hover .nav-title {
    color: #fff;
}

.article-nav .nav-disabled {
    display: block;
    padding: 16px 20px;
    background: #f7f9fb;
    border-radius: 8px;
    opacity: 0.4;
    cursor: default;
}

.article-nav .nav-disabled .nav-label {
    font-size: 12px;
    color: #a1afc2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.article-nav .nav-disabled .nav-title {
    font-size: 15px;
    color: #a1afc2;
    font-weight: 600;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .news-banner {
        min-width: auto;
        padding-top: 1.2rem;
        padding-bottom: 0.4rem;
    }

    .news-banner .news-banner-inner {
        padding: 0.6rem 0.3rem 0.4rem;
    }

    .news-banner .news-banner-title {
        font-size: 0.48rem;
    }

    .news-banner .news-banner-desc {
        font-size: 0.28rem;
        margin-top: 0.1rem;
    }

    .news-list {
        padding: 0.4rem 0.3rem;
    }

    .news-list .news-item {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.3rem 0;
    }

    .news-list .news-item:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .news-list .news-item-thumb {
        width: 100%;
        height: 3.6rem;
    }

    .news-list .news-item-title {
        font-size: 0.32rem;
    }

    .news-list .news-item-meta {
        font-size: 0.24rem;
    }

    .news-list .news-item-excerpt {
        font-size: 0.26rem;
    }

    .news-pagination {
        padding: 0 0.3rem;
        margin: 0.3rem auto 0.6rem;
    }

    .news-pagination .page-item a,
    .news-pagination .page-item span {
        min-width: 0.6rem;
        height: 0.6rem;
        line-height: 0.6rem;
        padding: 0 0.16rem;
        font-size: 0.24rem;
    }

    .article-container {
        padding: 0.4rem 0.3rem;
    }

    .article-header .article-title {
        font-size: 0.44rem;
    }

    .article-header .article-meta {
        font-size: 0.24rem;
    }

    .article-content {
        font-size: 0.28rem;
    }

    .article-content h2 {
        font-size: 0.38rem;
    }

    .article-content h3 {
        font-size: 0.34rem;
    }

    .article-content h4 {
        font-size: 0.3rem;
    }

    .article-nav {
        flex-direction: column;
        padding: 0.3rem 0.3rem 0.6rem;
        gap: 0.2rem;
    }

    .article-nav .nav-next {
        text-align: left;
    }
}