/* 新闻列表页样式 - 优雅版 */

/* 字体预加载和基础设置 */
@font-face {
    font-family: 'MicrosoftYaHei';
    src: local('Microsoft YaHei');
    font-display: block;
    size-adjust: 100%;
    font-weight: normal;
}

@font-face {
    font-family: 'MicrosoftYaHei';
    src: local('Microsoft YaHei Bold');
    font-display: block;
    size-adjust: 100%;
    font-weight: bold;
}

/* 防止字体闪烁的动画加载 */
@media screen {
    head ~ * {
        opacity: 0;
    }
    
    head ~ *:not(#preloader) { 
        animation: show 0.1s forwards 0.1s;
    }
    
    @keyframes show {
        to { opacity: 1; }
    }
}

/* 全局字体和平滑设置 */
html {
    font-size: 16px;
    font-display: swap;
}

body {
    font-family: Arial, "MicrosoftYaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* 防止字体闪烁的全局设置 */
* {
    text-rendering: optimizeSpeed;
    font-synthesis: none;
}

/* 防止FOUT/FOIT字体闪烁的类名集合 */
.news-banner-title, .news-banner-subtitle, .news-card-title,
.news-card-meta, .news-card-summary, .news-card-link,
.news-breadcrumb, .page-info, .page-link, .filter-title, .filter-category {
    font-size-adjust: 100%;
    font-variant: normal;
    text-transform: none;
    letter-spacing: normal;
}

.news-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-banner-subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Banner区域样式 */
.news-banner {
    position: relative;
    background: linear-gradient(135deg, #066edf, #007bff);
    padding: 70px 0 65px;
    margin-bottom: 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.4) 0%, rgba(0, 75, 158, 0.2) 100%);
    z-index: 1;
}

#news-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.news-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 列表区域基础容器 */
.news-list-section {
    width: 100%;
    padding-top: 0; /* 修改为0，与word.css保持一致 */
}

.news-list-section .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px 35px;
    box-sizing: border-box;
}

/* 筛选区域 - 现代风格 */
.news-filter {
  background-color: #fff;
  padding: 22px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  width: 100%;
  border: 1px solid rgba(230, 235, 245, 0.8);
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.filter-title {
  font-size: 17px;
  color: #333;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
  margin: 0;
}

.filter-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, #066edf, #2388ff);
  border-radius: 2px;
}

.filter-title i {
  margin-right: 8px;
  color: #066edf;
}

.filter-view-options {
  display: flex;
  gap: 8px;
}

.view-option {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  background: #f8f9fa;
  color: #777;
  transition: all 0.3s;
  border: 1px solid #eee;
}

.view-option:hover {
  background-color: #f0f7ff;
  color: #066edf;
  border-color: #d9edff;
}

.view-option.active {
  background: linear-gradient(135deg, #066edf, #2388ff);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
  border-color: transparent;
}

#filterCategories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-category {
  display: inline-block;
  padding: 9px 18px;
  background-color: #f8fafd;
  border-radius: 10px;
  color: #555;
  font-size: 14px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  border: 1px solid #edf2f9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.filter-category::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.filter-category:hover {
  background-color: #f0f7ff;
  color: #066edf;
  border-color: #c9e0ff;
  transform: translateY(-2px);
}

.filter-category:hover::before {
  opacity: 1;
}

.filter-category.active {
  background: linear-gradient(135deg, #066edf, #2388ff);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
  border-color: transparent;
  transform: translateY(-2px);
}

.filter-category.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: 1;
}

.filter-category i {
  margin-right: 6px;
  font-size: 14px;
  position: relative;
  top: 1px;
  transition: all 0.3s ease;
}

.filter-category.active i {
  color: #fff;
  transform: scale(1.1);
}

/* 确保active类始终应用，即使在JS加载前 */
.filter-category.active {
  background: linear-gradient(135deg, #066edf, #2388ff) !important;
  color: #fff !important;
  font-weight: 500 !important;
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25) !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
}

/* 面包屑导航 - 精美样式 */
.news-breadcrumb-wrapper,
.breadcrumb-wrapper {
    position: relative;
    z-index: 5;
    padding: 12px 0;
    margin-bottom: 20px;
    margin-top: 0;
    border-bottom: 1px solid rgba(225, 232, 240, 0.8);
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.news-breadcrumb-wrapper::before,
.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), transparent);
}

.news-breadcrumb-wrapper::after,
.breadcrumb-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(225, 232, 240, 0.5), transparent);
}

.news-breadcrumb,
.breadcrumb {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 13px;
    position: relative;
    letter-spacing: 0.2px;
}

.news-breadcrumb span.separator,
.breadcrumb span.separator {
    margin: 0 10px;
    color: #d0d0d0;
    font-size: 10px;
    font-weight: 300;
    position: relative;
    top: -1px;
    opacity: 0.9;
}

.news-breadcrumb a,
.breadcrumb a {
    color: #066edf;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 3px 0;
    font-weight: 400;
}

.news-breadcrumb a::after,
.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #066edf;
    transition: width 0.3s ease;
    opacity: 0.8;
}

.news-breadcrumb a:hover,
.breadcrumb a:hover {
    color: #066edf;
    text-decoration: none;
}

.news-breadcrumb a:hover::after,
.breadcrumb a:hover::after {
    width: 100%;
}

.news-breadcrumb a i,
.breadcrumb a i {
    margin-right: 6px;
    font-size: 12px;
    transition: transform 0.2s;
    color: #066edf;
}

.news-breadcrumb a:hover i,
.breadcrumb a:hover i {
    transform: translateX(-2px);
    color: #066edf;
}

.news-breadcrumb span:last-child,
.breadcrumb span:last-child {
    color: #066edf;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #f8fbff;
    box-shadow: 0 1px 3px rgba(0, 86, 179, 0.05);
    border-left: 2px solid #066edf;
}

/* 新闻列表通用样式 */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

/* 通用卡片样式 */
.news-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #066edf, #007bff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.12);
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-card-img::before {
    opacity: 1;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 86, 179, 0.8);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* 列表视图特有样式 */
.news-grid.list-view .news-card {
    display: flex;
    flex-direction: row;
}

.news-grid.list-view .news-card-img {
    width: 320px;
    height: 220px;
    flex-shrink: 0;
}

.news-grid.list-view .news-card-body {
    flex: 1;
}

/* 网格视图特有样式 */
.news-grid.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.news-grid.grid-view .news-card {
    flex-direction: column;
    height: 100%;
    display: flex;
}

.news-grid.grid-view .news-card-img {
    width: 100%;
    height: 200px;
}

.news-grid.grid-view .news-card-body {
    padding: 18px;
    flex: 1;
}

/* 标题和元信息样式 - 通用 */
.news-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    max-height: 50.4px; /* 1.4 * 18px * 2行 */
    overflow: hidden;
    word-wrap: break-word;
}

.news-card-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    width: 100%;
}

.news-card-title a:hover {
    color: #066edf;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.news-card-date, .news-card-views {
    display: flex;
    align-items: center;
}

.news-card-date i, .news-card-views i {
    margin-right: 5px;
    color: #999;
}

.news-card-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* 摘要链接样式 */
.news-card-summary-link {
    display: block;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.news-card-summary-link:hover .news-card-summary {
    color: #066edf;
}

.news-card-summary-link::after {
    content: '查看详情';
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    color: #066edf;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.news-card-summary-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* 分页样式 */
.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.page-info {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.page-info strong {
    color: #066edf;
    font-weight: 600;
}

.page-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.page-links a,
.page-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    line-height: 1;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

.page-links a.page-link {
    padding: 0 8px;
}

/* 当前页样式 */
.page-links span.current,
.page-links a.current {
    background: #066edf;
    border-color: #066edf;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 86, 179, 0.3);
}

/* 悬停效果 */
.page-links a:hover:not(.disabled) {
    background: #066edf;
    border-color: #066edf;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.2);
}

/* 禁用状态 */
.page-links a.disabled {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* 首页/末页按钮特殊样式 */
.page-links a[href*="page:index"],
.page-links a[href*="page:last"] {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.page-links a[href*="page:index"]:hover:not(.disabled),
.page-links a[href*="page:last"]:hover:not(.disabled) {
    background: #007bff;
    border-color: #007bff;
}

/* 上一页/下一页按钮样式 */
.page-links a[href*="page:pre"],
.page-links a[href*="page:next"] {
    background: #fff;
    border-color: #066edf;
    color: #066edf;
    font-weight: 500;
}

.page-links a[href*="page:pre"]:hover:not(.disabled),
.page-links a[href*="page:next"]:hover:not(.disabled) {
    background: #066edf;
    border-color: #066edf;
    color: #fff;
}

/* 数字页码样式增强 */
.page-links a:not([href*="page:"]):not(.current) {
    transition: all 0.2s ease;
}

.page-links a:not([href*="page:"]):not(.current):hover {
    background: linear-gradient(135deg, #066edf, #007bff);
    border-color: #066edf;
    color: #fff;
    transform: scale(1.05);
}

/* 活跃状态动画 */
.page-links span.current::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.no-data {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    border: 1px solid #e9ecef;
}

.no-data i {
    margin-right: 8px;
    color: #066edf;
    font-size: 16px;
}

/* 响应式布局 */
@media (max-width: 1600px) {
    .news-grid.grid-view {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1300px) {
    .news-grid.grid-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    /* 修改网格布局 */
    .news-grid.grid-view {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 详情页相关内容布局 */
    .news-related-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-detail {
        padding: 20px;
    }
}

@media (max-width: 1199.98px) {
    .news-banner {
        padding: 65px 0 60px;
    }
    
    .news-banner-title {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .news-banner {
        padding: 60px 0 55px;
    }
    
    .news-banner-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    /* 减少移动端的padding */
    .news-banner {
        padding: 45px 0 40px;
    }
    
    .news-banner-title {
        font-size: 28px;
    }
    
    .news-banner-subtitle {
        font-size: 15px;
        max-width: 500px;
    }
    
    /* 列表视图调整为竖向排列 */
    .news-grid.list-view .news-card {
        flex-direction: column;
    }
    
    .news-grid.list-view .news-card-img {
        width: 100%;
        height: 180px;
    }
    
    .news-grid.list-view .news-card-body {
        padding: 16px;
    }
    
    /* 筛选区域调整 */
    .filter-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* 网格视图单列 */
    .news-grid.grid-view {
        grid-template-columns: 1fr;
    }
    
    /* 面包屑导航调整 */
    .news-breadcrumb-wrapper {
        padding: 10px 0;
    }
    
    .news-breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        line-height: 1.6;
        gap: 5px;
    }
    
    .news-breadcrumb span.separator {
        margin: 0 5px;
    }
    
    .news-breadcrumb span:last-child {
        padding: 2px 5px;
        margin-top: 2px;
        font-size: 11px;
        border-left-width: 1px;
    }
    
    .news-breadcrumb a::after {
        display: none;
    }
    
    /* 详情页调整 */
    .news-detail-title {
        font-size: 22px;
    }
    
    .news-detail-meta {
        gap: 12px;
    }
    
    .news-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-nav-item {
        max-width: 100%;
    }
    
    .news-nav-item.next {
        text-align: left;
    }
    
    .news-related-list {
        grid-template-columns: 1fr;
    }
    
    .news-pagination {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .page-info {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .page-links {
        gap: 4px;
    }
    
    .page-links a,
    .page-links span {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .no-data {
        padding: 30px 15px;
        font-size: 14px;
    }
    
    /* 详情页调整 */
    .news-detail-title {
        font-size: 22px;
    }
    
    .news-detail-meta {
        gap: 12px;
    }
    
    .news-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-nav-item {
        max-width: 100%;
    }
    
    .news-nav-item.next {
        text-align: left;
    }
    
    .news-related-list {
        grid-template-columns: 1fr;
    }
    
    .news-card-summary-link::after {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .news-banner {
        padding: 40px 0 35px;
    }
    
    .news-banner-title {
        font-size: 24px;
    }
    
    .news-banner-subtitle {
        font-size: 14px;
        max-width: 100%;
    }
    
    .news-breadcrumb-wrapper {
        padding: 8px 0;
    }
    
    .news-breadcrumb {
        font-size: 11px;
    }
    
    .news-breadcrumb a i {
        font-size: 11px;
    }
    
    .news-breadcrumb-wrapper::before,
    .news-breadcrumb-wrapper::after {
        display: none;
    }
    
    .news-detail {
        padding: 15px;
        border-radius: 8px;
    }
    
    .news-detail-content {
        font-size: 15px;
    }
    
    .news-card-summary-link::after {
        font-size: 11px;
    }
}

/* 新闻详情页样式 */
.news-detail {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #f0f7ff;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.news-detail-header {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

/* 删除标题下方的横线装饰 */
.news-detail-header::after {
    display: none;
}

.news-detail-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #222;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-detail-meta-item {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-detail-meta-item i {
    margin-right: 6px;
    color: #066edf;
}

/* 详情页内容统一样式 */
.news-detail-content {
    font-family: "Microsoft YaHei", "MicrosoftYaHei", "微软雅黑", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 30px;
    padding: 15px 0;
}

.news-detail-content p {
    margin-bottom: 20px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
    display: block;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    font-family: inherit;
    margin: 25px 0 15px;
    color: #000;
    font-weight: bold;
    line-height: 1.5;
}

.news-detail-content ul,
.news-detail-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.news-detail-content li {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 8px;
}

.news-detail-content a {
    color: #066edf;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-family: inherit;
}

.news-detail-content a:hover {
    border-bottom-color: #066edf;
}

/* 标签样式 */
.news-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.news-detail-tags-label {
    color: #555;
    font-weight: 600;
    font-size: 15px;
}

.news-detail-tags a {
    background: #f0f7ff;
    color: #066edf;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-detail-tags a:hover {
    background: #e0efff;
    transform: translateY(-2px);
}

/* 上下篇导航 */
.news-nav {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.news-nav-item {
    max-width: 48%;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 6px;
    transition: all 0.3s;
}

.news-nav-item:hover {
    background-color: #f0f7ff;
}

.news-nav-item.prev {
    padding-left: 15px;
}

.news-nav-item.next {
    padding-right: 15px;
    text-align: right;
}

.news-nav-label {
    color: #066edf;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-nav-item.prev .news-nav-label {
    justify-content: flex-start;
}

.news-nav-item.next .news-nav-label {
    justify-content: flex-end;
}

.news-nav-title {
    color: #555;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-nav-title a {
    color: inherit;
    text-decoration: none;
}

.news-nav-title a:hover {
    color: #066edf;
}

/* 相关推荐美化 */
.news-related {
    margin-top: 40px;
    position: relative;
}

.news-related::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(225, 232, 240, 0.6), transparent);
}

.news-related-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f7ff;
    display: flex;
    align-items: center;
    position: relative;
}

.news-related-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #066edf;
}

.news-related-title i {
    color: #066edf;
    margin-right: 8px;
}

.news-related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-related-item {
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 2px solid transparent;
    display: block;
    width: 100%;
    overflow: hidden;
}

.news-related-item:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    border-left-color: #066edf;
}

.news-related-item-title {
    font-size: 15px;
    margin-bottom: 8px;
    width: 100%;
    display: block;
}

.news-related-item-title a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.news-related-item-title a i {
    color: #066edf;
    margin-right: 6px;
    font-size: 14px;
    flex-shrink: 0;
}

.news-related-item-title a span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: block;
    width: calc(100% - 20px);
    word-wrap: break-word;
    line-height: 1.4;
}

.news-related-item-title a:hover {
    color: #066edf;
}

.news-related-item-date {
    color: #999;
    font-size: 13px;
}

/* 阅读全文按钮样式 */
.news-card-action {
    display: none;
}

.news-card-read-more {
    display: none;
}

/* 详情页响应式 */
@media (max-width: 992px) {
    .news-related-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-detail {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 22px;
    }
    
    .news-detail-meta {
        gap: 12px;
    }
    
    .news-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-nav-item {
        max-width: 100%;
    }
    
    .news-nav-item.next {
        text-align: left;
    }
    
    .news-related-list {
        grid-template-columns: 1fr;
    }
} 

/* ========== 面包屑导航 ========== */
/* word-breadcrumb-wrapper样式，与word.css保持一致 */
.word-breadcrumb-wrapper {
  margin-bottom: 25px;
  background-color: #fff;
  border-radius: 6px;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-top: 30px; /* 统一设置为30px */
  transition: all 0.3s ease;
}

.word-breadcrumb-wrapper:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.word-breadcrumb {
  font-size: 14px;
  color: #757575;
  display: flex;
  flex-wrap: wrap;
}

.word-breadcrumb a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.word-breadcrumb a:hover {
  color: #066edf;
  text-decoration: underline;
}

.separator {
  margin: 0 8px;
  color: #ccc;
}

@media (max-width: 768px) {
  .word-breadcrumb-wrapper {
    padding: 12px 15px;
    margin-bottom: 20px;
    margin-top: 20px; /* 移动端统一设置为20px */
  }
  
  .word-breadcrumb {
    font-size: 13px;
  }
} 
.news-detail-service {
    margin-top: 25px;
    width: 100%;
    text-align: center;
	}
.news-detail-service-btn {
    display: inline-block;
    background-color: #007bff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
	}
	.news-detail-service a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
    font-family: inherit;