/* 推荐新闻选项卡板块 */
.news-recommend-section {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin: 40px auto 0;
  max-width: 1430px;
  min-height: 400px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 0 15px;
  margin-top: 0;
}
.news-recommend-left {
    width: 40%;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}
.news-recommend-swiper {
  width: 100%;
  height: 100%;
}
.news-recommend-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.news-recommend-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.news-recommend-img-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 18px;
  padding: 18px 24px 12px 24px;
  text-align: left;
  z-index: 2;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-weight: 500;
  letter-spacing: 1px;
}
.news-recommend-right {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 0 0 30px;
}
.news-recommend-tabs {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-recommend-tabs li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  margin-bottom: 18px;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 24px 18px 24px 0;
  border-left: 6px solid transparent;
}
.news-recommend-tabs li.active,
.news-recommend-tabs li:hover {
  background: #b71c1c;
  border-left: 6px solid #b71c1c;
}
.news-recommend-tabs li.active .news-recommend-title,
.news-recommend-tabs li:hover .news-recommend-title,
.news-recommend-tabs li.active .news-recommend-date .day,
.news-recommend-tabs li:hover .news-recommend-date .day {
  color: #fff;
}
.news-recommend-tabs li.active .news-recommend-desc,
.news-recommend-tabs li:hover .news-recommend-desc,
.news-recommend-tabs li.active .news-recommend-date .month,
.news-recommend-tabs li:hover .news-recommend-date .month {
  color: #f5f5f5;
}
.news-recommend-date {
  width: 70px;
  text-align: center;
  margin-right: 24px;
  flex-shrink: 0;
}
.news-recommend-date .day {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #222;
  line-height: 1;
}
.news-recommend-date .month {
  display: block;
  font-size: 16px;
  color: #999;
  margin-top: 4px;
}
.news-recommend-info {
  flex: 1;
}
.news-recommend-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.2s;
}
.news-recommend-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 420px;
}

.news-recommend-section{
    margin-bottom: 70px; padding: 85px 0px; padding-bottom: 0px;
}

.news-list-main{
    background-color: #F4F4F4;
}

@media (max-width: 900px) {
  .news-recommend-section {
    flex-direction: column;
    min-height: unset;
  }
  .news-recommend-left,
  .news-recommend-right {
    flex: unset;
    width: 100%;
    padding: 0;
  }
  .news-recommend-swiper img {
    height: 360px;
  }
  .news-recommend-tabs li {
    padding: 18px 15px 18px 0;
  }
  .news-recommend-desc {
    max-width: 80%;
  }

  .news-recommend-info{
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .news-recommend-section {
    margin: 20px 0 0 0;
    box-shadow: none;
    border-radius: 0;
    padding:0 15px
  }
  .news-recommend-img-title {
    font-size: 15px;
    padding: 10px 12px 8px 12px;
  }
  .news-recommend-date .day {
    font-size: 22px;
  }
  .news-recommend-date .month {
    font-size: 14px;
  }
  .news-recommend-title {
    font-size: 16px;
  }
  .news-recommend-tabs li {
    margin-bottom: 10px;
    border-radius: 0;
  }

  .news-recommend-desc {
    max-width: 48%;
    }

    .news-recommend-title{
        width: 48%;
    }

    .news-recommend-desc{
        font-size: 14px;
    }

    .news-recommend-tabs li{
        align-items: center;
    }

    .news-recommend-swiper img {
        height: 60vw;
    }
    
    .news-recommend-section{
        display: none;
    }
    
    
}

/* 新闻列表板块 */
.news-list-section {
  margin: 48px auto 0;
  max-width: 1430px;
  padding: 0 15px;
  padding-bottom: 78px;
}
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.news-list-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.news-list-item:hover {
  box-shadow: 0 4px 24px rgba(173,25,30,0.10);
}
.news-list-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.news-list-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 18px 20px 8px 20px;
  line-height: 1.3;
  transition: color 0.2s;
}
.news-list-desc {
  font-size: 15px;
  color: #999;
  margin: 0 20px 18px 20px;
  line-height: 1.6;
  flex: 1;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 18px 20px;
}
.news-list-date {
  font-size: 14px;
  color: #999;
}
.news-list-arrow .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1.5px solid #999;
  transition: all 0.2s;
  background: none;
}
.news-list-arrow svg {
  display: block;
}
.news-list-item:hover .news-list-arrow .arrow-circle {
  border-color: #AD191E;
  background: #AD191E;
}
.news-list-item:hover .news-list-arrow circle,
.news-list-item:hover .news-list-arrow path {
  stroke: #fff;
}
.news-list-item:hover .news-list-arrow circle {
  stroke: #AD191E;
}
.news-list-item:hover .news-list-title {
  color: #AD191E;
}
.news-list-item:hover .news-list-desc {
  color: #AD191E;
}
@media (max-width: 1200px) {
  .news-list-section {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .news-list-img img {
    height: 140px;
  }
}
@media (max-width: 460px) {
  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .news-list-img img {
    height: 250px;
  }
  .news-list-title,
  .news-list-desc,
  .news-list-meta {
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1430px) and (min-width: 1000px) {
    .news-recommend-section,.news-list-section{
        padding-left: 30px; padding-right: 30px;
    }

    .about-subnav{
        padding-left: 30px; padding-right: 30px;
    }

}

/* 新闻详情页面样式 */
.news-detail-main {
  background-color: #F4F4F4;
  padding: 85px 0; padding-bottom:98px;
  
}

.news-detail-container {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
}

.news-detail-content {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* 新闻标题区域 */
.news-detail-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.news-detail-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #999;
  font-size: 14px;
}

.news-detail-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-meta i {
  color: #AD191E;
}

/* 新闻内容区域 */
.news-detail-body {
  margin-bottom: 50px;
}

.news-detail-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.news-detail-text img{
    max-width: 100%; height: auto !important;
}

.news-detail-text p {
  margin-bottom: 20px;
}

.news-detail-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 30px 0 15px 0;
  padding-left: 15px;
  border-left: 4px solid #AD191E;
}

/* 文章标签 */
.news-detail-tags {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.tag-label {
  font-size: 14px;
  color: #999;
  margin-right: 15px;
}

.news-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  transition: all 0.3s;
}

.news-tag:hover {
  background: #AD191E;
  color: #fff;
}

/* 上一篇下一篇导航 */
.news-detail-navigation {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.news-nav-item {
  flex: 1;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s;
}

.news-nav-item:hover {
  background: #AD191E;
  color: #fff;
}

.news-nav-item:hover .news-nav-title {
  color: #fff;
}

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

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

.news-nav-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-nav-item:hover .news-nav-label {
  color: #f5f5f5;
}

.news-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

.news-nav-date {
  font-size: 13px;
  color: #999;
}

.news-nav-item:hover .news-nav-date {
  color: #f5f5f5;
}

/* 相关推荐 */
.news-detail-related {
  margin-top: 50px;
}

.related-title {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

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

.related-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.related-img {
  height: 300px;
  overflow: hidden;
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.related-info {
  padding: 20px;
}

.related-title-text {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* 响应式设计 */
@media (max-width: 900px) {
  .news-detail-content {
    padding: 30px 20px;
  }
  
  .news-detail-title {
    font-size: 24px;
  }
  
  .news-detail-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .news-detail-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .news-nav-prev,
  .news-nav-next {
    margin: 0;
  }
  
  .news-nav-next {
    text-align: left;
  }
  
  .related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .news-detail-main {
    padding: 30px 0;
  }
  
  .news-detail-content {
    padding: 20px 15px;
  }
  
  .news-detail-title {
    font-size: 20px;
  }
  
  .news-detail-text {
    font-size: 15px;
  }
  
  .news-detail-text h3 {
    font-size: 18px;
  }
  
  .related-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .related-img {
    height: 235px;
  }
  
  .news-list-grid{
        padding-top: 36px;
    }
    
    .news-list-section{
        padding-top: 0; margin-top: 0;
    }
    
    .news-list-section{
        margin: 0px auto 0;
    }
}

