/* ============================================
   TabMediaList Component
   水平 Tab 切换 + 左右内容布局
   ============================================ */

.fc-tab-media-list {
  width: 100%;
  max-width: 1280px;
  /* margin: 0 auto; */
}

/* Tab 导航栏 */
.fc-tab-media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

/* Tab 按钮 */
.fc-tab-media-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #D0D8E4;
  border-radius: 100px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: #101C2F;
  white-space: nowrap;
}

.fc-tab-media-tab:hover {
  background: rgba(16, 28, 47, 0.06);
  border: 1px solid rgba(0, 0, 0, 0);
}

.fc-tab-media-tab.is-active {
  background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(117deg, #2DD4BF -71%, #002E93 41%, #F43F5E 150%), linear-gradient(117deg, #2DD4BF -71%, #124BC7 41%, #F43F5E 150%), #101C2F;
  background-blend-mode: soft-light, normal, normal, normal;
  border-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;

  box-shadow: 0px 6px 8px -4px rgba(25, 54, 63, 0.15),0px 2px 4px -4px rgba(25, 54, 63, 0.15);
}

/* Tab 图标 */
.fc-tab-media-tab-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Tab 文字 */
.fc-tab-media-tab-text {
  line-height: 1.4;
}

/* 内容区域 */
.fc-tab-media-content {
  display: flex;
  gap: 120px;
  align-items: center;
  justify-content: space-between;
}

/* 左侧文字区 */
.fc-tab-media-text {
  flex: 0 0 560px;
  max-width: 560px;
}

/* 内容标题 */
.fc-tab-media-title {
  font-size: 24px;
  font-weight: 600;
  color: #101C2F;
  margin: 0 0 24px;
  line-height: 1.4;
}

/* 内容描述 */
.fc-tab-media-desc {
  font-size: 16px;
  font-weight: 400;
  color: #101C2F;
  line-height: 1.8;
}

.fc-tab-media-desc-text {
  margin: 0;
}

.fc-tab-media-desc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -22px;
}

.fc-tab-media-desc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.fc-tab-media-desc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  background: #475569;
  border-radius: 50%;
}

.fc-tab-media-desc-list li:last-child {
  margin-bottom: 0;
}

/* 右侧图片区 */
.fc-tab-media-media {
  flex: 1;
  min-width: 0;
}

.fc-tab-media-img {
  width: 600px;
  border-radius: 24px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
}

/* 响应式 */
@media (max-width: 1024px) {
  .fc-tab-media-content {
    flex-direction: column;
    gap: 32px;
  }

  .fc-tab-media-text {
    flex: none;
    max-width: 100%;
  }

  .fc-tab-media-tabs {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .fc-tab-media-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .fc-tab-media-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .fc-tab-media-tab-icon {
    width: 16px;
    height: 16px;
  }

  .fc-tab-media-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .fc-tab-media-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fc-tab-media-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-tab-media-tab {
    justify-content: center;
  }
}

