/* ============================================
   特色服务通路页面样式
   ============================================ */

/* Banner */
.tsfwtl-banner {
  position: relative;
  height: 168px;
  background: var(--bg-gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .tsfwtl-banner {
    height: 280px;
  }
}

.tsfwtl-banner__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tsfwtl-banner__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  animation: fadeInUp 0.6s ease-out;
}

.tsfwtl-banner__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-main);
}

@media (min-width: 992px) {
  .tsfwtl-banner__title {
    font-size: 48px;
  }
}

/* Main Content */
.tsfwtl-main {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: -42px;
  position: relative;
  z-index: 12;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .tsfwtl-main {
    margin-top: -56px;
  }
}

/* Tab Content */
.tsfwtl-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.tsfwtl-tab-content.active {
  display: block;
}

.tsfwtl-card__body {
  padding: 32px;
}

@media (max-width: 991px) {
  .tsfwtl-card__body {
    padding: 16px;
  }
}

/* ============================================
   服务通道网格布局 - 与tbzy保持一致
   ============================================ */
.tsfwtl-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .tsfwtl-channel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 服务卡片样式 - 与tbzy-channel-card保持一致 */
.tsfwtl-channel-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tsfwtl-channel-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 21, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  align-self: flex-start;
}

.tsfwtl-channel-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.tsfwtl-channel-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tsfwtl-channel-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.tsfwtl-channel-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
  text-wrap: pretty;
  word-break: break-all;
  margin-bottom: 12px;
}

.tsfwtl-channel-card__desc a {
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.tsfwtl-btn-outlet {
  align-self: flex-start;
  justify-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tsfwtl-btn-outlet svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.tsfwtl-btn-outlet:hover svg {
  transform: translateX(3px);
}

/* ============================================
   温馨提示区域 - 与bdfw保持一致
   ============================================ */
.tsfwtl-tips-section {
  margin-top: 24px;
  padding: 20px;
  background: #fef9e7;
  border-radius: var(--radius);
  border: 1px solid #f5e6a3;
}

.tsfwtl-tips-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #8a6d3b;
  margin: 0 0 14px 0;
}

.tsfwtl-tips-section__title svg {
  width: 16px;
  height: 16px;
  color: #e6a800;
}

.tsfwtl-tips-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.tsfwtl-tips-list li {
  font-size: 14px;
  color: #8a6d3b;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.tsfwtl-tips-list li:last-child {
  margin-bottom: 0;
}

.tsfwtl-tips-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e6a800;
}

.tsfwtl-tips-list li strong {
  color: var(--primary);
  font-weight: 600;
}

.tsfwtl-tips-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

/* ============================================
   Animation
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 768px) {
  .tsfwtl-channel-card {
    padding: 20px;
    gap: 16px;
  }

  .tsfwtl-channel-card__icon {
    width: 48px;
    height: 48px;
  }

  .tsfwtl-channel-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .tsfwtl-channel-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .tsfwtl-channel-card__desc {
    font-size: 13px;
    line-height: 1.6;
  }
}