/* 只作用于功能导航模块的容器，不影响页面其他部分 */
.top-feature-row {
  margin: 30px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* 功能导航标题 */
.top-feature-row .fes-title {
  font-family: 'Ubuntu', sans-serif;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  font-weight: normal;
}
.top-feature-row .fes-title i {
  margin-right: 8px;
  color: #54b1ea;
}

/* 功能卡片容器 */
.top-feature-row .top-feature-v2 {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

/* 功能卡片 */
.top-feature-row .the-feature {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.top-feature-row .the-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.top-feature-row .the-feature a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 卡片图片 */
.top-feature-row .the-feature .img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.top-feature-row .the-feature .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.top-feature-row .the-feature:hover .img img {
  transform: scale(1.05);
}

/* 卡片文字 */
.top-feature-row .the-feature .info {
  padding: 15px;
  text-align: center;
}
.top-feature-row .the-feature .info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}
.top-feature-row .the-feature .info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 入场动画（仅作用于模块内） */
.top-feature-row .from_left_and_right {
  animation: fromLeftAndRight 0.8s ease forwards;
  opacity: 0;
}
@keyframes fromLeftAndRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}