* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.news-sectiony {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
background: #f8fafc;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
padding: 40px 24px;
}

.news-section {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
  /* 新闻模块 */
.news-section {
padding: 160px 0;
background: #fff;
}
.news-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-between;
}
.news-item {
border: 1px solid #eee;
transition: box-shadow 0.3s;
}
.news-item:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.news-img {
width: 100%;
height: 200px;

/* 新闻图片占位符 */
background: #f5f5f5 center center no-repeat;
background-size: cover;
}
.news-content {
padding: 20px;
text-align: left;
}
.news_title {
font-size: 18px;
margin-bottom: 10px;
color: #333;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.news_desc {
font-size: 14px;
color: #666;
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 15px;
}


/* 标题区 */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .en-title {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-header .cn-title {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-header .cn-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4a373;
  border-radius: 3px;
}

/* 新闻列表容器 —— 一行一个新闻 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 单个新闻项 (横向卡片) */
.news-item {
  border: none;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  background: rgba(222, 222, 222, 0.6);
  border-radius: 12px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-bottom-color: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* 左侧图片 */
.news-img-wrapper {
  flex-shrink: 0;
  width: 240px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e8f0;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-item:hover .news-img-wrapper img {
  transform: scale(1.05);
}

/* 右侧内容 */
.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.news-tag {
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #64748b;
}

.icon-cal {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  background: #64748b;
  margin-right: 4px;
}

.news-title {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.news-item:hover .news-title {
  color: #b07d4b;
}

.news-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #b07d4b;
  width: fit-content;
  border-bottom: 1.5px solid transparent;
  transition: gap 0.2s, border-color 0.2s;
}

.read-more span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}

.news-item:hover .read-more {
  gap: 10px;
  border-bottom-color: #b07d4b;
}

.news-item:hover .read-more span {
  transform: translateX(4px);
}

  /* 移动端适配 */
@media (max-width: 680px) {
  .news-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .news-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .section-header .cn-title {
    font-size: 30px;
  }

  .news-title {
    font-size: 18px;
  }
}