/* 新闻动态模块样式 */
.news-section {
  background: #fff;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.news-header {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 60px;
}

.news-title {
  width: 160px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 0 auto;
}

.news-title-image {
  display: block;
  margin: 0px auto 0 auto;
  max-width: 100%;
  height: auto;
}

.news-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 53px;
  margin-bottom: 0;
}

/* 左侧大图新闻 */
.featured-news {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 21px;
}

.news-image {
  width: 100%;
  height: 378px;
  object-fit: cover;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.news-image-wrapper:hover .news-image {
  transform: scale(1.05);
}

.news-main-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
  cursor: pointer;
}

.news-main-title:hover {
  color: #1a73e8;
  cursor: pointer;
}

.news-main-desc {
  width: 100%;
  max-height: 120px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #707070;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 29px;
  cursor: pointer;
}

.news-main-desc:hover {
  cursor: pointer;
} 


.detail-btn {
  font-family: Microsoft YaHei;
  font-size: 16px;
  color: #1a73e8;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.detail-btn:hover {
  color: #0056b3;
}

.arrow-icon {
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* 右侧新闻列表 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 10px;
  margin-bottom: 20px;
  background: #f8f8f8;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 159px;
  box-sizing: border-box;
}

.news-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 159px;
  background: #043491;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  background: #f0f0f0;
  border-color: #e0e0e0;
  cursor: pointer;
}

.news-item:hover::after {
  background: linear-gradient(135deg, #043491, #1a73e8);
  width: 8px;
  cursor: pointer;
}

.news-item:hover .news-item-title {
  color: #1a73e8;
  cursor: pointer;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px;
  text-align: center;
  z-index: 1;
  margin-left: 10px;
  transition: all 0.3s ease;
  border-right: 1px solid #e0e0e0;
  padding-right: 16px;
  cursor: pointer;
}

.date-month {
  width: 33px;
  height: 30px;
  font-family: Impact;
  font-weight: 400;
  font-size: 36px;
  color: #043491;
  line-height: 28px;
}

.date-year {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #043491;
  line-height: 28px;
  margin-top: 4px;
}

.news-content-wrapper {
  flex: 1;
  z-index: 1;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-item-title:hover {
  color: #1a73e8;
}

.news-item-desc {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #707070;
  line-height: 28px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.more-news {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 46px;
  width: 100%;
  box-sizing: border-box;
  /* margin-top: 40px; */
}

.more-btn {
  width: 150px;
  height: 46px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 18px;
  background: linear-gradient(135deg, #1a73e8, #043491);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 0;
  text-decoration: none;
}

.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #043491, #1a73e8);
}

/* 1024px 响应式适配 */
@media (min-width: 48.0625rem) and (max-width: 64rem) {
  .news-section {
    max-width: 1024px;
    padding: 0 30px;
  }

  .news-header {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .news-title {
    font-size: 2rem;
    width: 140px;
  }

  .news-title-image {
    margin-top: 15px;
  }

  .news-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0;
  }

  /* 左侧大图新闻适配 */
  .featured-news {
    width: 100%;
  }

  .news-image {
    height: 300px;
  }

  .news-main-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .news-main-desc {
    font-size: 16px;
    max-height: 100px;
    margin-bottom: 25px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }

  .detail-btn {
    font-size: 15px;
  }

  /* 右侧新闻列表适配 */
  .news-list {
    gap: 18px;
  }

  .news-item {
    height: 140px;
    padding: 18px;
    gap: 18px;
  }

  .news-item::after {
    height: 140px;
  }

  .news-date {
    min-width: 70px;
    margin-left: 8px;
    padding-right: 14px;
  }

  .date-month {
    font-size: 32px;
    width: 30px;
    height: 26px;
    line-height: 26px;
  }

  .date-year {
    font-size: 14px;
    line-height: 24px;
    margin-top: 2px;
  }

  .news-content-wrapper {
    padding-left: 8px;
  }

  .news-item-title {
    font-size: 20px;
    margin: 14px 0 14px 0;
    line-height: 1.3;
  }

  .news-item-desc {
    font-size: 16px;
    line-height: 24px;
  }

  /* 更多新闻按钮适配 */
  .more-news {
    margin-top: 35px;
    padding-bottom: 40px;
  }

  .more-btn {
    width: 140px;
    height: 42px;
    font-size: 16px;
  }
}

/* 平板设备适配 (768px - 1024px) */
@media (max-width: 900px) {
  .news-section {
    padding: 0 25px;
  }

  .news-header {
    margin-top: 35px;
    margin-bottom: 45px;
  }

  .news-title {
    font-size: 32px;
    width: 130px;
  }

  .news-image {
    height: 280px;
  }

  .news-main-title {
    font-size: 19px;
  }

  .news-main-desc {
    font-size: 15px;
    max-height: 90px;
    -webkit-line-clamp: 3;
  }

  .news-item {
    height: 130px;
    padding: 16px;
  }

  .news-item::after {
    height: 130px;
  }

  .news-item-title {
    font-size: 19px;
  }

  .news-item-desc {
    font-size: 15px;
  }
}

/* 480px 响应式 */
@media (max-width: 30rem) {
  .news-section {
    padding: 0 1rem;
  }

  .news-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .news-title {
    font-size: 1.5rem;
    width: auto;
  }

  .news-title-image {
    width: 80px;
    height: 2px;
    margin: 0.5rem auto 0 auto;
  }

  .news-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .featured-news {
    width: 100%;
    align-items: center;
  }

  .news-image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }

  .news-image {
    height: 200px;
  }

  .news-info {
    width: 100%;
    text-align: center;
  }

  .news-main-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .news-main-desc {
    height: auto;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: justify;
  }

  .detail-btn {
    font-size: 1.2rem;
    align-self: center;
    margin: 0 auto;
  }

  .news-list {
    gap: 2rem;
  }

  .news-item {
    flex-direction: column;
    height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.5rem;
  }

  .news-item::after {
    display: none;
  }

  .news-date {
    height: 80px;
    flex-direction: row;
    justify-content: flex-end;
    min-width: auto;
    margin-left: auto;
    order: 2;
    border-right: none;
    padding-right: 0;
  }

  .date-month {
    font-size: 1.3rem;
  }

  .date-year {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .news-content-wrapper {
    padding-left: 0;
    order: 1;
  }

  .news-item-title {
    font-size: 1.3rem;
    /* margin: 0 0 0.5rem 0; */
    -webkit-line-clamp: unset;
    margin-bottom: rem;
  }

  .news-item-desc {
    font-size: 1.2rem;
    -webkit-line-clamp: unset;
  }

  .more-news {
    margin-top: 1rem;
    padding-bottom: 2rem;
  }

  .more-btn {
    width: 10rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
}

/* 375px 响应式 */
/* @media (max-width: 23.4375rem) {
  .news-section {
    padding: 0 1rem;
  }

  .news-header {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .news-title {
    font-size: 1.5rem;
  }

  .news-title-image {
    width: 70px;
    height: 0.15rem;
  }

  .news-content {
    gap: 1.25rem;
  }

  .news-image {
    height: 160px;
  }

  .news-main-title {
    font-size: 1.3rem;
    text-align: left;
  }

  .news-main-desc {
    font-size: 1.1rem;
    text-align: left;
  }

  .detail-btn {
    font-size: 1.1rem;
    align-self: flex-start;
    margin: 0 auto;
  }

  .news-list {
    gap: 0.75rem;
  }

  .news-item {
    padding: 0.75rem;
  }

  .date-month {
    font-size: 1.2rem;
  }

  .date-year {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .news-item-title {
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
  }

  .news-item-desc {
    font-size: 1rem;
  }

  .more-news {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .more-btn {
    width: 9rem;
    height: 2.25rem;
    font-size: 1rem;
  }
} */