/* 首页新闻中心：居中标题下的四卡列表（延续原 newList 结构） */
.cts-home-news-section {
  margin: 80px 0 100px;
  padding: 0;
  box-sizing: border-box;
}
.cts-home-news {
  width: 94%;
  max-width: 1200px;
  margin: 28px auto 0;
  box-sizing: border-box;
}
.cts-home-news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}
.cts-home-news-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: calc((100% - 96px) / 4); /* 4 列，3 个 32px 间距 */
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  background: #fff;
}
.cts-home-news-item .newTitle a {
  color: inherit;
  text-decoration: none;
}
.cts-home-news-item .newPicBox a {
  display: block;
  width: 100%;
  height: 100%;
}
.cts-home-news-item .newPicBox {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 auto;
  background: #f5f5f5;
}
.cts-home-news-item .newPicBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  height: auto;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  transition: all .5s ease;
}
.cts-home-news-item:hover .newPicBox img {
  transform: translate(-50%, -50%) scale(1.08);
}
.cts-home-news-item .contentBoxB {
  padding: 12px 4px 4px;
}
.cts-home-news-item .newTitle {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.cts-home-news-item .lineBox {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 12px 0;
  background: #eee;
  overflow: hidden;
}
.cts-home-news-item .lineBox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #00509a;
  transition: width .4s ease;
}
.cts-home-news-item:hover .lineBox::before {
  width: 40px;
}
.cts-home-news-item .newMs {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.cts-home-news-item .look {
  margin-top: 10px;
}
.cts-home-news-item .bottomLink {
  display: inline-flex;
  align-items: center;
  color: #00509a;
  text-decoration: none;
  font-size: 18px;
  transition: transform .3s ease, color .3s ease;
}
.cts-home-news-item:hover .bottomLink {
  transform: translateX(4px);
  color: #003d75;
}
.cts-home-news-item .lookIcon {
  font-style: normal;
}

@media only screen and (max-width: 1024px) {
  .cts-home-news-section {
    margin: 60px 0 80px;
  }
  .cts-home-news-list {
    gap: 24px;
  }
  .cts-home-news-item {
    max-width: calc((100% - 24px) / 2);
  }
}

@media only screen and (max-width: 768px) {
  .cts-home-news-section {
    margin: 48px 0 64px;
  }
  .cts-home-news-list {
    gap: 20px;
  }
  .cts-home-news-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .cts-home-news-item .newPicBox {
    height: 180px;
  }
}
