/* 全局样式 */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004b9e;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e5e5e5;
    --container-width: 1440px;
    --breadcrumb-spacing: 0.75rem;
    --breadcrumb-font-size: 14px;
}

/* 容器样式 */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Banner区域 */
.news-banner {
    position: relative;
    background: linear-gradient(135deg, #0056b3, #004b9e);
    padding: 80px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 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-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
    padding: 0 15px;
}

.news-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-banner-subtitle {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    max-width: 700px;
}

/* 添加动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 响应式调整 */
@media (max-width: 1199.98px) {
    .news-banner {
        padding: 70px 0;
    }
    
    .news-banner-title {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .news-banner {
        padding: 60px 0;
    }
    
    .news-banner-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .news-banner {
        padding: 50px 0;
    }
    
    .news-banner-title {
        font-size: 28px;
    }
    
    .news-banner-subtitle {
        font-size: 15px;
        max-width: 500px;
    }
}

/* 列表页样式 */
.news-list-section {
    padding: 0 0 40px; /* 修改顶部padding为0，与word.css保持一致 */
    background: #f8f9fa;
}

/* 筛选区域样式 - 现代风格 */
.news-filter {
  background-color: #fff;
  padding: 22px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  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, #0056b3, #2388ff);
  border-radius: 2px;
}

.filter-title i {
  margin-right: 8px;
  color: #0056b3;
}

#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: #0056b3;
  border-color: #c9e0ff;
  transform: translateY(-2px);
}

.filter-category:hover::before {
  opacity: 1;
}

.filter-category.active {
  background: linear-gradient(135deg, #0056b3, #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, #0056b3, #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-card {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-body {
    padding: 25px;
}

.news-card-meta {
    display: flex;
    gap: 20px;
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.news-card-title a:hover {
    color: var(--primary-color);
}

.news-card-title a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.news-card-title a:hover::after {
    width: 100%;
}

.news-card-summary {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card-summary-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.news-card-summary-link:hover .news-card-summary {
    color: var(--primary-color);
}

.news-card-summary-link::after {
    content: '查看详情';
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.news-card-summary-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.news-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* 详情页样式 */
.news-detail {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.news-detail-header {
    margin-bottom: 30px;
}

.news-detail-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--light-text);
    font-size: 14px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.meta-item i {
    color: var(--primary-color);
}

.news-detail-content {
    line-height: 1.8;
    color: var(--text-color);
}

/* 标签样式 */
.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f8f9fa;
    color: var(--text-color);
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.3s ease;
}

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

.news-tag i {
    margin-right: 5px;
}

/* 详情页样式补充 */
.news-detail-tags {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tags-label {
    color: var(--light-text);
    margin-right: 10px;
}

.tags-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-detail-summary {
    position: relative;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    color: var(--text-color);
    font-style: italic;
}

.news-detail-summary i.fa-quote-left {
    position: absolute;
    left: 10px;
    top: 10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 20px;
}

.news-detail-summary i.fa-quote-right {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 20px;
}

.news-nav {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.news-nav-item {
    max-width: 45%;
}

.news-nav-item.prev {
    padding-right: 15px;
}

.news-nav-item.next {
    padding-left: 15px;
    text-align: right;
}

.news-nav-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-nav-item a:hover {
    color: var(--primary-color);
}

.news-related {
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.news-related-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-related-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.news-related-item:hover {
    transform: translateY(-3px);
}

.related-title {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.related-title i {
    margin-right: 8px;
    color: var(--primary-color);
}

.related-meta {
    font-size: 13px;
    color: var(--light-text);
    display: flex;
    gap: 15px;
}

.related-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 响应式补充 */
@media (max-width: 768px) {
    .news-related-list {
        grid-template-columns: 1fr;
    }
    
    .news-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-nav-item {
        max-width: 100%;
        padding: 0;
    }
    
    .news-nav-item.next {
        text-align: left;
    }
    
    .news-detail-tags {
        padding: 10px;
    }
    
    .tags-list {
        margin-top: 10px;
    }

    .news-detail-meta {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: -10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        justify-content: flex-start;
    }

    .news-detail-meta::-webkit-scrollbar {
        display: none;
    }

    .meta-item {
        flex: 0 0 auto;
        font-size: 13px;
        padding: 4px 0;
    }

    .meta-item i {
        font-size: 13px;
    }
}

/* 响应式布局补充 */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .news-banner {
    padding: 40px 0;
  }
  
  .news-banner-title {
    font-size: 28px;
  }
  
  .news-detail {
    padding: 20px;
  }
  
  .news-card-body {
    padding: 18px;
  }
  
  /* 移动端卡片底部优化 */
  .news-card-footer {
    padding-top: 12px;
  }
  
  .news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .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;
  }
}

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

.page-info {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.page-info strong {
    color: var(--primary-color);
    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: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 86, 179, 0.3);
}

/* 悬停效果 */
.page-links a:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    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: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* 上一页/下一页按钮样式 */
.page-links a[href*="page:pre"],
.page-links a[href*="page:next"] {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

.page-links a[href*="page:pre"]:hover:not(.disabled),
.page-links a[href*="page:next"]:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    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, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    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: 40px 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 15px;
}

.no-data i {
    font-size: 18px;
    color: #ff9800;
    margin-right: 8px;
}

/* 粒子背景已移至特定的ID选择器 */

/* 面包屑导航样式 */
.news-breadcrumb-wrapper {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--breadcrumb-spacing);
    padding: 1rem 0;
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: var(--breadcrumb-font-size);
    line-height: 1.5;
}

.breadcrumb-item {
    color: var(--light-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.breadcrumb-item:not(.current):hover {
    color: var(--primary-color);
}

.breadcrumb-item i {
    margin-right: 0.375rem;
    font-size: 1.1em;
}

.breadcrumb-separator {
    color: var(--light-text);
    margin: 0 0.25rem;
    opacity: 0.5;
}

.breadcrumb-item.current {
    color: var(--primary-color);
    font-weight: 500;
}

/* ========== 面包屑导航 ========== */
/* 面包屑导航样式 - 与word.css保持一致 */
.news-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;
}

.news-breadcrumb-wrapper:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-breadcrumb {
  font-size: 14px;
  color: #757575;
  display: flex;
  flex-wrap: wrap;
}

.news-breadcrumb a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.news-breadcrumb a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #ccc;
}

@media (max-width: 768px) {
  .news-breadcrumb-wrapper {
    padding: 12px 15px;
    margin-bottom: 20px;
    margin-top: 20px; /* 移动端统一设置为20px */
  }
  
  .news-breadcrumb {
    font-size: 13px;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news-filter {
    padding: 18px 20px;
  }
  
  #filterCategories {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  
  #filterCategories::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
  
  .filter-category {
    padding: 8px 15px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
} 

/* 列表样式 - 图标形式 */
.news-list {
  margin-bottom: 30px;
}

.news-list-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.news-list-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-left-color: #0097e6;
}

.news-item-icon {
  font-size: 30px;
  color: #0097e6;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f7ff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.news-list-item:hover .news-item-icon {
  transform: scale(1.1);
  background-color: #e1f0ff;
}

.news-item-content {
  flex: 1;
  overflow: hidden;
}

.news-item-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.news-item-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-item-title a:hover {
  color: #0077cc;
}

.news-item-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
  max-height: 45px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #888;
}

.news-item-date,
.news-item-views,
.news-item-category {
  display: flex;
  align-items: center;
}

.news-item-meta i {
  margin-right: 6px;
  color: #0097e6;
}

.news-item-action {
  margin-left: 15px;
}

.news-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f0f7ff;
  color: #0097e6;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-action-btn:hover {
  background-color: #0097e6;
  color: #fff;
  transform: translateX(5px);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news-list-item {
    padding: 15px;
  }
  
  .news-item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .news-item-title {
    font-size: 16px;
  }
} 