* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: PingFangSC-Regular, Arial, sans-serif;
  background: #fff;
  min-height: 100vh;
  color: #000;
  line-height: 1.6;
}

.container {
  min-width: 1155px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: 1155px;
}

.header h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.subtitle {
  font-size: 18px;
  color: #000;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.65;
}



.component3 .contentBox {
  width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  height: 250px;
  /* 允许显示部分卡片 */
}

.component3 .news-swiper-component3 {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 50px; /* 为分页器留出空间 */
    overflow: hidden;
}

.component3 .swiper-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.component3 .swiper-slide {
    width: 312px;
    flex-shrink: 0;
    margin-right: 18px;
}


.component3 {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 60px;
  width: 100%;
}

.component3 .news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.component3 .news-card-link:hover {
  transform: translateY(-2px);
}

.component3 .news-card-component3 {
  width: 312px;
  height: 242px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.component3 .news-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.component3 .news-image img {
  width: 280px;
  height: 120px;
  object-fit: cover;
}

.component3 .news-content {
  padding: 20px 0px 0;
  display: flex;
  flex-direction: column;
}

.component3 .news-content h3 {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.component3 .read-more {
  color: #00A2A3;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.component3 .news-card-link:hover .read-more {
  color: #0cc9c9;
}
