/* 网易新闻风格样式 */
:root {
    --primary-color: #D33B30;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --border-color: #e5e5e5;
    --hover-color: #f5f5f5;
    --max-width: 1000px;
    --header-height: 50px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #f8f8f8;
}

a {
    color: var(--text-color);
    text-decoration: none;
}
/* 添加一个类，用于白色文字
 */
.white {
    color: #fff;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* 头部样式 */
.ne-header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.ne-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.ne-logo {
    display: inline-flex;
    align-items: center;
    height: 40px;
    position: relative;
    text-decoration: none;
    margin-right: 30px;
    transition: opacity 0.3s;
}

.ne-logo:hover {
    opacity: 0.85;
}

.ne-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3b5998 0%, #4f78c4 100%);
    position: relative;
    overflow: hidden;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.ne-logo-icon::before {
    content: "N";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.ne-logo-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 16px;
    background: rgba(255,255,255,0.15);
    transform: skewX(-15deg);
}

.ne-logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ne-logo-text span {
    color: #3b5998;
}

/* 深色模式适配 */
@media (prefers-color-scheme: dark) {
    .ne-logo-text {
        color: #f0f0f0;
    }
}

/* 导航样式优化 */
.ne-nav {
    background: var(--primary-color);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 99;
    overflow: hidden;
}

.ne-nav::before,
.ne-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.ne-nav::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color) 0%, rgba(211, 59, 48, 0) 100%);
}

.ne-nav::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color) 0%, rgba(211, 59, 48, 0) 100%);
}

.ne-nav.show-left-indicator::before {
    opacity: 1;
}

.ne-nav.show-right-indicator::after {
    opacity: 1;
}

.ne-nav-list {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    align-items: center;
    height: 46px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    position: relative;
}

.ne-nav-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.ne-nav-item {
    position: relative;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.ne-nav-item a {
    display: block;
    padding: 0 20px;
    line-height: 46px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.ne-nav-item a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.ne-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.ne-nav-item:hover a::after {
    width: 100%;
}

.ne-nav-item.active a {
    color: #fff;
    font-weight: 600;
}

.ne-nav-item.active a::after {
    width: 100%;
    background-color: #fff;
}

/* 添加动画效果 */
@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ne-nav-item {
    animation: navItemFadeIn 0.3s ease forwards;
}

.ne-nav-item:nth-child(n) {
    animation-delay: calc(0.1s * var(--i, 0));
}

/* 添加下拉阴影效果 */
.ne-nav.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 搜索框样式 */
.ne-search {
    margin-left: 20px;
}

.ne-search form {
    display: flex;
    align-items: center;
}

.ne-search-input {
    width: 200px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    outline: none;
}

.ne-search-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: -32px;
    color: var(--light-text);
}

/* 主内容区域样式 */
.ne-main {
    padding: calc(var(--header-height) + 46px + 10px) 0 20px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 50px - 100px);
}

.ne-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.ne-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 15px;
}

/* 头条新闻区域 */
.ne-headlines {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 10px;
    height: 400px;
}

/* 主要头条 */
.ne-headline-main {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    height: 100%;
}

.ne-headline-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ne-headline-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ne-headline-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(211,59,48,0.9);
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
    z-index: 1;
}

.ne-headline-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 15px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: #fff;
}

.ne-headline-title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.ne-headline-summary {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 次要头条 */
.ne-headline-sub {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    height: 100%;
}

.ne-headline-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    height: 100%;
}

.ne-headline-item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ne-headline-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ne-headline-item-category {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(211,59,48,0.9);
    color: #fff;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 12px;
    z-index: 1;
}

.ne-headline-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: #fff;
}

.ne-headline-item-title {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.3;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.ne-headline-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.8;
}

/* 新闻列表样式 */
.ne-news-list {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    padding: 12px;
}

.ne-news-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ne-news-image {
    flex-shrink: 0;
}

.ne-news-image img {
    width: 160px;
    height: 106px;
    border-radius: 4px;
    object-fit: cover;
}

.ne-news-info {
    flex: 1;
    min-width: 0;
}

.ne-news-title {
    font-size: 16px;
    margin: 0 0 8px;
    line-height: 1.4;
}

.ne-news-summary {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 无图新闻样式 */
.ne-news-item:not(:has(.ne-news-image)) {
    grid-template-columns: 1fr;
}

/* 侧边栏样式 */
.ne-sidebar {
    width: 280px;
}

.ne-sidebar-title {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    padding-bottom: 10px;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ne-sidebar-title i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* 热门排行样式 */
.ne-hot-rank {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.ne-hot-rank:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.ne-rank-list {
    counter-reset: rank;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ne-rank-item {
    position: relative;
    padding: 12px 0 12px 36px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    counter-increment: rank;
    transition: all 0.25s ease;
}

.ne-rank-item:hover {
    background-color: rgba(0,0,0,0.02);
    padding-left: 40px;
}

.ne-rank-item:last-child {
    border-bottom: none;
}

.ne-rank-item::before {
    content: counter(rank);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #999;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.ne-rank-item:nth-child(1)::before {
    background: linear-gradient(135deg, #ff3019 0%, #cf0404 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(230, 33, 23, 0.2);
}

.ne-rank-item:nth-child(2)::before {
    background: linear-gradient(135deg, #ff8c00 0%, #f26522 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(242, 101, 34, 0.2);
}

.ne-rank-item:nth-child(3)::before {
    background: linear-gradient(135deg, #ffd700 0%, #f9bc2c 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(249, 188, 44, 0.2);
}

.ne-rank-item:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.ne-rank-link {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
    margin-bottom: 3px;
}

.ne-rank-link:hover {
    color: var(--primary-color);
}

.ne-rank-top .ne-rank-link {
    font-weight: 500;
}

.ne-rank-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ne-rank-meta i {
    margin-right: 3px;
    font-size: 11px;
    opacity: 0.8;
}

.ne-rank-meta span {
    display: flex;
    align-items: center;
}

.ne-rank-category {
    color: var(--primary-color);
}

.ne-rank-time i, 
.ne-rank-views i {
    color: #aaa;
}

/* 热门标签样式 */
.ne-hot-tags {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.ne-tag-cloud {
    gap: 8px;
}

.ne-tag-item {
    padding: 4px 10px;
    font-size: 12px;
}

.ne-empty-message {
    color: #999;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .ne-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .ne-headlines {
        height: auto;
        grid-template-columns: 1fr;
    }
    
    .ne-headline-main {
        height: 360px;
    }
    
    .ne-headline-sub {
        grid-template-rows: none;
        grid-template-columns: repeat(3, 1fr);
        height: 200px;
    }
}

@media (max-width: 768px) {
    .ne-content {
        grid-template-columns: 1fr;
    }
    
    .ne-headline-sub {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ne-news-image img {
        width: 120px;
        height: 80px;
    }
    
    .ne-news-title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .ne-headline-main {
        height: 240px;
    }
    
    .ne-headline-sub {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .ne-headline-item {
        height: 180px;
    }
    
    .ne-headline-title {
        font-size: 18px;
    }
}

/* 分页样式 */
.ne-pagination {
    margin-top: 30px;
    text-align: center;
}

.ne-pagination a,
.ne-pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
}

.ne-pagination .current {
    background: #e50012;
    color: #fff;
}

.ne-pagination .prev,
.ne-pagination .next {
    font-weight: normal;
}

.ne-pagination .disabled {
    color: #999;
    cursor: not-allowed;
}

.ne-pagination .ellipsis {
    color: #999;
    cursor: default;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .ne-pagination {
        font-size: 13px;
    }
    
    .ne-pagination a,
    .ne-pagination span {
        min-width: 28px;
        height: 28px;
        margin: 0 2px;
        padding: 0 8px;
    }
}

/* 页脚样式 */
.ne-footer {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 40px;
}

.ne-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.ne-footer-links {
    margin-bottom: 20px;
}

.ne-footer-links a {
    margin: 0 15px;
    color: var(--light-text);
}

.ne-footer-copyright {
    color: var(--lighter-text);
    font-size: 12px;
}

/* 返回顶部按钮 */
.ne-back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.ne-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .ne-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .ne-headlines {
        grid-template-columns: 1fr;
    }
    
    .ne-headline-main {
        margin-bottom: 10px;
    }
    
    .ne-headline-sub {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ne-content {
        grid-template-columns: 1fr;
    }
    
    .ne-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .ne-headline-title {
        font-size: 16px;
    }
    
    .ne-headline-summary {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .ne-headline-sub {
        grid-template-columns: 1fr;
    }
    
    .ne-news-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ne-news-image {
        width: 100%;
        height: 200px;
    }
    
    .ne-news-title {
        font-size: 16px;
    }
    
    .ne-news-summary {
        -webkit-line-clamp: 2;
    }
    
    .ne-nav-list {
        display: none;
    }
}

@media (max-width: 576px) {
    .ne-search {
        display: none;
    }
    
    .ne-headline-title {
        font-size: 20px;
    }
}

/* 空状态提示 */
.ne-empty-message {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 14px;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .ne-content {
        grid-template-columns: 1fr;
    }
    
    .ne-sidebar {
        order: -1;
    }
}

@media (max-width: 480px) {
    .ne-main {
        padding: 15px 0 30px;
    }
    
    .ne-container {
        padding: 0 10px;
    }
    
    .ne-news-list,
    .ne-sidebar > div {
        padding: 10px 15px;
    }
    
    .ne-news-image {
        height: 180px;
    }

    .ne-headlines {
        padding: 10px;
    }

    .ne-headline-content {
        padding: 40px 15px 15px;
    }

    .ne-headline-sub {
        grid-template-columns: 1fr;
    }
}

/* 分类页面样式 */
.ne-category {
    margin-top: 20px;
}

.ne-category-header {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ne-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.ne-category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

/* 分类列表样式 */
.ne-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ne-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.ne-category-item:last-child {
    border-bottom: none;
}

.ne-category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ne-category-item a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.ne-category-item.active a {
    color: var(--primary-color);
    font-weight: 500;
}

.ne-category-count {
    color: #999;
    font-size: 12px;
}

/* 相关推荐样式 */
.ne-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ne-related-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ne-related-item:last-child {
    border-bottom: none;
}

.ne-related-num {
    width: 18px;
    height: 18px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    margin-right: 10px;
    flex-shrink: 0;
}

.ne-related-item.ne-related-top .ne-related-num {
    background: var(--primary-color);
    color: #fff;
}

.ne-related-link {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ne-related-link:hover {
    color: var(--primary-color);
}

/* 标签云样式优化 */
.ne-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ne-tag-item {
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ne-tag-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.ne-tag-count {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .ne-category-header {
        padding: 15px;
    }
    
    .ne-category-title {
        font-size: 20px;
    }
    
    .ne-related-item {
        padding: 10px 0;
    }
    
    .ne-tag-item {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* 新闻详情页样式 */
.ne-news-detail {
    margin-top: 20px;
}

.ne-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.ne-article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.ne-article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin: 0 0 15px;
}

.ne-article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999;
    font-size: 14px;
}

.ne-article-source {
    color: var(--primary-color);
}

.ne-article-summary {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.ne-article-image {
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

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

.ne-image-caption {
    font-size: 13px;
    color: #999;
    text-align: center;
    padding: 8px 0;
    background: #f8f8f8;
}

.ne-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

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

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

.ne-article-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.ne-article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ne-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ne-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .ne-article {
        padding: 20px;
    }

    .ne-article-title {
        font-size: 22px;
    }

    .ne-article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ne-article-summary {
        font-size: 15px;
        padding: 12px 15px;
    }

    .ne-article-content {
        font-size: 15px;
    }
    
    .ne-comments {
        padding: 20px;
    }
    
    .ne-comments-section {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .ne-article {
        padding: 15px;
    }

    .ne-article-title {
        font-size: 20px;
    }

    .ne-article-meta {
        font-size: 13px;
    }
    
    .ne-comments {
        padding: 15px;
    }
}

/* 体育新闻固定展示区域 */
.ne-sports-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ne-sports-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
}

.ne-sports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ne-sports-title {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.ne-sports-title i {
    color: #e50012;
    margin-right: 8px;
}

.ne-sports-more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ne-sports-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ne-sports-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ne-sports-item:last-child {
    border-bottom: none;
}

.ne-sports-item-image img {
    width: 100px;
    height: 67px;
    border-radius: 4px;
    object-fit: cover;
}

.ne-sports-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ne-sports-item-title {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.ne-sports-item-title a {
    color: #333;
    text-decoration: none;
}

.ne-sports-item-meta {
    font-size: 12px;
    color: #999;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .ne-sports-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ne-sports-card {
        padding: 15px;
    }

    .ne-sports-item {
        flex-direction: column;
    }

    .ne-sports-item-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .ne-sports-card {
        padding: 12px;
    }

    .ne-sports-header {
        margin-bottom: 12px;
    }

    .ne-sports-title {
        font-size: 16px;
    }
}

/* 快捷导航样式 */
.ne-quick-nav {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: fixed;
    top: calc(var(--header-height) + 46px);
    left: 0;
    right: 0;
    z-index: 98;
}

.ne-quick-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}

.ne-quick-nav-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ne-quick-nav-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.ne-quick-nav-item i {
    margin-right: 6px;
    font-size: 16px;
}

/* 篮球新闻展示区域 */
.ne-basketball-section {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ne-basketball-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ne-basketball-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.ne-basketball-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ne-basketball-title img {
    width: 20px;
    height: 20px;
}

.ne-basketball-more {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ne-basketball-content {
    padding: 15px;
}

.ne-basketball-main {
    margin-bottom: 15px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.ne-basketball-main-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ne-basketball-main-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 12px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.ne-basketball-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ne-basketball-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ne-basketball-item-image {
    width: 100px;
    height: 66px;
    border-radius: 4px;
    object-fit: cover;
}

.ne-basketball-item-info {
    flex: 1;
    min-width: 0;
}

.ne-basketball-item-title {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ne-basketball-item-meta {
    font-size: 12px;
    color: #999;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .ne-basketball-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ne-quick-nav {
        display: none;
    }
    
    .ne-basketball-main-image {
        height: 160px;
    }
    
    .ne-basketball-item-image {
        width: 90px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .ne-basketball-header {
        padding: 10px;
    }
    
    .ne-basketball-content {
        padding: 10px;
    }
    
    .ne-basketball-main-image {
        height: 140px;
    }
}

/* 添加NBA和CBA的logo样式 */
.ne-basketball-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* NBA和CBA的logo样式 */
.ne-logo-nba,
.ne-logo-cba {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-right: 8px;
}

.ne-logo-nba {
    background: linear-gradient(135deg, #1d428a 0%, #1d428a 50%, #c8102e 50%, #c8102e 100%);
}

.ne-logo-cba {
    background: linear-gradient(135deg, #de2910 0%, #de2910 50%, #ffde00 50%, #ffde00 100%);
}

.ne-logo-nba::before,
.ne-logo-cba::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* 搜索页面样式 */
.ne-search-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + 46px + 15px) 15px 30px;
}

.ne-search-header {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.ne-search-info {
    flex: 1;
    min-width: 300px;
}

.ne-search-title {
    font-size: 20px;
    margin: 0 0 8px;
    color: #333;
}

.ne-search-stats {
    color: #999;
    font-size: 13px;
}

.ne-search-form {
    width: 350px;
    max-width: 100%;
}

.ne-search-input-group {
    display: flex;
    position: relative;
    width: 100%;
}

.ne-search-page-input {
    flex: 1;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 0 50px 0 15px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s;
}

.ne-search-page-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(211, 59, 48, 0.1);
}

.ne-search-page-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.ne-search-page-btn:hover {
    background: #c12c2c;
}

.ne-search-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}

.ne-search-results {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 20px;
}

.ne-search-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ne-search-item:first-child {
    padding-top: 0;
}

.ne-search-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ne-search-item-image {
    flex-shrink: 0;
}

.ne-search-item-image img {
    width: 180px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
}

.ne-search-item-info {
    flex: 1;
    min-width: 0;
}

.ne-search-item-title {
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.ne-search-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.ne-search-item-title a:hover {
    color: var(--primary-color);
}

.ne-search-item-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ne-search-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.ne-search-item-meta span {
    display: flex;
    align-items: center;
}

.ne-search-item-meta i {
    margin-right: 5px;
}

.ne-search-item-category a {
    color: var(--primary-color);
}

.ne-search-sidebar {
    align-self: start;
}

.ne-search-sidebar > div {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 15px;
    margin-bottom: 20px;
}

.ne-hot-searches {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ne-hot-search-item {
    margin-bottom: 12px;
}

.ne-hot-search-item:last-child {
    margin-bottom: 0;
}

.ne-hot-search-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.ne-hot-search-link:hover {
    padding-left: 5px;
    color: var(--primary-color);
}

.ne-hot-search-num {
    width: 22px;
    height: 22px;
    background: #f5f5f5;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #999;
}

.ne-hot-search-item:nth-child(1) .ne-hot-search-num {
    background: #e74c3c;
    color: #fff;
}

.ne-hot-search-item:nth-child(2) .ne-hot-search-num {
    background: #e67e22;
    color: #fff;
}

.ne-hot-search-item:nth-child(3) .ne-hot-search-num {
    background: #f1c40f;
    color: #fff;
}

.ne-hot-search-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ne-hot-search-count {
    color: #999;
    font-size: 12px;
}

.ne-search-history-clear {
    float: right;
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.ne-search-history-clear:hover {
    color: var(--primary-color);
}

.ne-search-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ne-search-history-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ne-search-history-item:last-child {
    margin-bottom: 0;
}

.ne-search-history-link {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    padding: 5px 0;
}

.ne-search-history-link i {
    color: #999;
    margin-right: 8px;
}

.ne-search-history-link:hover {
    color: var(--primary-color);
}

.ne-search-history-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.ne-search-history-remove:hover {
    background: #f5f5f5;
    color: #999;
}

.ne-empty-search {
    padding: 40px 0;
    text-align: center;
}

.ne-empty-icon {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 20px;
}

.ne-empty-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
}

.ne-empty-tips {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    text-align: left;
}

.ne-empty-tips p {
    margin: 0 0 10px;
    color: #666;
}

.ne-empty-tips ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.ne-empty-tips li {
    margin-bottom: 5px;
}

.ne-empty-tips a {
    color: var(--primary-color);
}

.ne-search-welcome {
    text-align: center;
    padding: 60px 0;
}

.ne-search-welcome-icon {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}

.ne-search-welcome-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px;
}

.ne-search-welcome-text {
    color: #999;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .ne-search-content {
        grid-template-columns: 1fr;
    }
    
    .ne-search-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ne-search-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ne-search-form {
        width: 100%;
    }
    
    .ne-search-item {
        flex-direction: column;
    }
    
    .ne-search-item-image {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ne-search-item-image img {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .ne-search-page {
        padding-top: calc(var(--header-height) + 46px + 10px);
    }
    
    .ne-search-header {
        padding: 15px;
    }
    
    .ne-search-results {
        padding: 15px;
    }
}

/* 移动端头条轮播样式 */
.ne-headline-mobile {
    display: none;
    position: relative;
    margin-bottom: 15px;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.ne-headline-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.ne-headline-swiper-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.ne-headline-swiper-slide.active {
    opacity: 1;
    z-index: 2;
}

.ne-headline-swiper-dots {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.ne-headline-swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.ne-headline-swiper-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .ne-headlines {
        display: none;
    }
    
    .ne-headline-mobile {
        display: block;
    }
}

/* 评论区底部样式 */
.ne-comments-section {
    max-width: var(--max-width);
    margin: 0 auto 30px;
    clear: both;
}

.ne-comments {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
}

/* 评论区样式 */
.ne-comments {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.ne-comments .ne-section-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

/* 评论排序 */
.ne-comment-sort {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.ne-comment-sort-item {
    padding: 6px 12px;
    cursor: pointer;
    position: relative;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
}

.ne-comment-sort-item:hover {
    color: #3377ff;
    background-color: rgba(51, 119, 255, 0.05);
}

.ne-comment-sort-item.active {
    color: #3377ff;
    font-weight: 500;
}

.ne-comment-sort-item.active:after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #3377ff;
}

/* 评论表单 */
.ne-comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.ne-comment-input-group {
    display: flex;
    flex-direction: column;
}

.ne-comment-input-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #666;
}

.ne-comment-input {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.ne-comment-input:focus {
    border-color: #3377ff;
    outline: none;
}

.ne-comment-textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 15px;
    font-size: 14px;
}

.ne-comment-textarea:focus {
    border-color: #3377ff;
    outline: none;
}

.ne-comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ne-comment-tips {
    color: #999;
    font-size: 13px;
}

.ne-comment-submit {
    background-color: #3377ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.ne-comment-submit:hover {
    background-color: #2266ee;
}

.ne-comment-submit:disabled {
    background-color: #a0c0ff;
    cursor: not-allowed;
}

/* 评论列表 */
.ne-comment-list {
    margin-bottom: 20px;
}

.ne-comment {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ne-comment:last-child {
    border-bottom: none;
}

.ne-comment-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3377ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
    flex-shrink: 0;
}

.ne-comment-body {
    flex: 1;
}

.ne-comment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.ne-comment-name {
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.ne-comment-date {
    color: #999;
    font-size: 13px;
}

.ne-comment-content {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
    font-size: 14px;
    word-break: break-word;
}

.ne-comment-actions {
    display: flex;
    gap: 15px;
}

.ne-comment-action {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s;
}

.ne-comment-action i {
    margin-right: 5px;
    transition: transform 0.2s;
}

.ne-comment-action:hover {
    color: #3377ff;
}

.ne-comment-action:hover i {
    transform: scale(1.2);
}

/* 点赞状态 */
.ne-comment-action.liked {
    color: #3377ff;
}

.ne-comment-action.liked i {
    animation: likeAnimation 0.4s ease;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* 评论分页 */
.ne-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ne-pagination a,
.ne-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.ne-pagination a {
    background-color: #f5f5f5;
    color: #666;
    cursor: pointer;
}

.ne-pagination a:hover {
    background-color: #e0e0e0;
    color: #333;
}

.ne-pagination .current {
    background-color: #3377ff;
    color: white;
}

.ne-pagination .disabled {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.ne-pagination .ellipsis {
    background: none;
    padding: 0 5px;
}

/* 加载和空状态 */
.ne-comment-loading,
.ne-comment-empty {
    padding: 30px 0;
    text-align: center;
    color: #999;
}

.ne-comment-loading i {
    margin-right: 5px;
}

.ne-comment-empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ddd;
}

.ne-comment-empty-text {
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ne-comment-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ne-comment-form-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .ne-comment-tips {
        margin-bottom: 10px;
    }
    
    .ne-comment-img {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .ne-pagination {
        gap: 3px;
    }
    
    .ne-pagination a,
    .ne-pagination span {
        min-width: 28px;
        height: 28px;
        font-size: 13px;
    }
} 