@charset "gb18030";
/* CSS Document */


/* 区块标题 */
.section-title {
  display: flex;
  align-items: center;
  height: 36px;
  font-size: 16px;
  color: #191919;
  margin-bottom: 12px;
  gap: 8px;
}
.section-title::before {
  content: "";
  width: 4px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 2px;
}
.section-title a {
  font-weight: 500;
}

/* 标题右侧更多链接 */
.title-more-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.title-more-wrap .more-links {
  color: #999;
}
.title-more-wrap .more-links a {
  color: #666;
  margin: 0 4px;
}
.title-more-wrap .more-links a:hover {
  color: #d63384;
}

/* ========== 文章模块：电脑端两列卡片，图片正方形 ========== */
.article-wrap {
  margin-bottom: 40px;
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-item {
  flex: 0 0 calc(50% - 8px);
  background: #fff;
  /* border: 1px solid #f0f0f0; */
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.article-item:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  /* border-color: #ffe4f1;*/ 
}

/* 文章图片：宽高一致，正方形 */
.article-img {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-item:hover .article-img img {
  transform: scale(1.08);
}

.article-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.article-name {
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-weight:600;
}

.article-name a {
  color: #2b2b2b;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-item:hover .article-name a {
  color: #d63384;
}

.article-source {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

/* ========== 短视频模块：底部白色背景固定撑满 ========== */
.shortvideo-wrap {
  margin-bottom: 40px;
}

.shortvideo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.video-card {
  flex: 1 1 180px;
  max-width: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.video-card a {
  display: block;
}

.video-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #ffd6e8;
}

.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.1);
}

/* 短视频标题：白色背景固定覆盖整个底部 */
.video-card-title {
  flex: 1;
  padding: 10px 12px 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  background: #fff;
  border-radius: 0 0 10px 10px;
  transition: color 0.3s ease;
}

.video-card:hover .video-card-title {
  color: #d63384;
}

/* ========== 移动端适配 ========== */
@media (max-width: 768px) {
  .article-item {
    flex: 0 0 100%;
  }

  .article-img {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }

  .shortvideo-list {
    gap: 12px;
  }

  .video-card {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .video-card {
    flex: 1 1 44%;
  }
}