/* 新闻列表样式 */
.newslist {
  margin: 30px 0;
}

.newslist-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  padding: 20px;
}

.newslist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newslist-item {
  display: flex;
  padding: 25px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newslist-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #28c6c7;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.newslist-item:hover {
  background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
  transform: translateX(5px);
  border-bottom-color: transparent;
}

.newslist-item:hover:before {
  transform: scaleY(1);
}

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

.newslist-image {
  flex: 0 0 220px;
  margin-right: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newslist-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 8px;
}

.newslist-item:hover .newslist-image img {
  transform: scale(1.05);
}

.newslist-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newslist-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.newslist-item:hover .newslist-title {
  color: #ff5800;
}

.newslist-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #666;
  font-size: 14px;
}

.newslist-date {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 15px;
}

.newslist-views {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 20px;
}

.newslist-views:before {
  content: '👁️';
  margin-right: 5px;
  font-size: 12px;
}

.newslist-description {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newslist-action {
  margin-top: 15px;
}

.newslist-btn {
  display: inline-flex;
  align-items: center;
  background: #28c6c7;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 88, 0, 0.2);
}

.newslist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 88, 0, 0.3);
  background: background: #28c6c7;
  color: white;
}

.newslist-btn:after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.newslist-btn:hover:after {
  transform: translateX(3px);
}

/* 空状态样式 */
.newslist-empty {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  border-radius: 10px;
  border: 2px dashed #dee2e6;
  margin: 20px 0;
}

.newslist-empty-icon {
  font-size: 60px;
  color: #adb5bd;
  margin-bottom: 20px;
}

.newslist-empty h3 {
  color: #495057;
  font-size: 20px;
  margin-bottom: 10px;
}

.newslist-empty p {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 25px;
}

.newslist-empty-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newslist-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
  color: white;
}

/* 分页样式 */
.newslist-pagination {
  margin-top: 40px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.newslist-pagination .tcdPageCode {
  display: inline-block;
}

.newslist-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 5px;
}

.newslist-pagination li {
  margin: 0 2px;
}

.newslist-pagination li a,
.newslist-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 20px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newslist-pagination li a:hover {
  background: #f8f9fa;
  color: #ff5800;
}

.newslist-pagination li.active a,
.newslist-pagination li.active span {
  background: linear-gradient(135deg, #ff5800 0%, #ff8c00 100%);
  color: white;
  box-shadow: 0 3px 10px rgba(255, 88, 0, 0.2);
}

/* 面包屑导航 */
.news-breadcrumb {
  padding: 20px 0;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.news-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-breadcrumb a:hover {
  color: #ff5800;
}

.news-breadcrumb span {
  color: #999;
  margin: 0 8px;
}

/* 分类横幅 */
.news-banner {
  margin: 20px 0 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* 移动端响应式调整 */
@media (max-width: 768px) {
  .newslist-container {
    padding: 15px;
  }
  
  .newslist-item {
    flex-direction: column;
    padding: 20px 15px;
  }
  
  .newslist-image {
    flex: none;
    width: 100%;
    margin: 0 0 15px 0;
  }
  
  .newslist-image img {
    height: 200px;
  }
  
  .newslist-title {
    font-size: 18px;
  }
  
  .newslist-description {
    -webkit-line-clamp: 3;
  }
  
  .newslist-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .newslist-pagination ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .news-breadcrumb {
    padding: 15px;
    font-size: 14px;
  }
}

    .clearfix:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .box {
        width: 1200px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .content-container {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        background: #fff;
        padding: 30px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .content-tit {
        font-size: 28px;
        line-height: 1.4;
        margin: 0 0 20px 0;
        padding-bottom: 15px;
        border-bottom: 2px solid #28c6c7;
        color: #333;
        text-align: center;
    }
    
    .content-info {
        color: #999;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    
    .content-info span {
        margin: 0 15px;
    }
    
    .content {
        line-height: 1.8;
        font-size: 16px;
        color: #333;
        min-height: 300px;
    }
    
    .content p {
        margin-bottom: 20px;
        text-indent: 2em;
    }
    
    .content img {
        max-width: 100%;
        height: auto;
        margin: 15px 0;
        display: block;
    }
    
    .content a {
        color: #007bff;
        text-decoration: underline;
    }
    
    /* 推荐文章区域 */
    .recommend-news {
        margin-top: 50px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .recommend-news h3 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #333;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .recommend-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .recommend-item {
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .recommend-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-3px);
        border-color: #ff5800;
    }
    
    .recommend-item a {
        color: #333;
        text-decoration: none;
        display: block;
    }
    
    .recommend-item h4 {
        margin: 0 0 10px 0;
        font-size: 16px;
        line-height: 1.4;
        color: #333;
    }
    
    .recommend-item h4:hover {
        color: #ff5800;
    }
    
    .recommend-meta {
        color: #999;
        font-size: 12px;
        margin-top: 8px;
    }
    
    /* 移动端适配 */
    @media (max-width: 768px) {
        .content-container {
            padding: 20px 15px;
            box-shadow: none;
        }
        
        .content-tit {
            font-size: 22px;
        }
        
        .content {
            font-size: 15px;
        }
        
        .content-info span {
            display: block;
            margin: 5px 0;
        }
        
        .recommend-list {
            grid-template-columns: 1fr;
        }
    }