/* ============================================
   兩岸服務一條龍页面样式
   ============================================ */

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

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

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

.lafwytl-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;
}

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

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

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

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

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

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

.lafwytl-card__body {
  padding: 32px;
}

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

/* ============================================
   服務機制介紹
   ============================================ */
.lafwytl-intro {
  margin-bottom: 24px;
}

.lafwytl-intro p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: justify;
  text-wrap: pretty;
  text-indent: 2em;
}


/* ============================================
   服務區塊
   ============================================ */
.lafwytl-section {
  margin-bottom: 24px;
}

.lafwytl-section:last-child {
  margin-bottom: 0;
}

.lafwytl-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.lafwytl-section__title svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* ============================================
   离线内容区域 - 与bdfw保持一致
   ============================================ */
.lafwytl-offline-content {
  padding: 16px;
  background: var(--bg-gray-light);
  border-radius: var(--radius);
}

.lafwytl-offline-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 8px 0;
  text-align: justify;
  text-wrap: pretty;
  word-break: break-all;
}

.lafwytl-offline-content p:last-child {
  margin-bottom: 0;
}

.lafwytl-offline-content .lafwytl-tel {
  /* color: var(--primary);.zxlpfjjh-notes-list li::before */
  font-weight: 600;
}

.lafwytl-offline-content strong {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   注意事项列表 - 与bdfw保持一致
   ============================================ */
.lafwytl-notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lafwytl-notes-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-bottom: 1px solid var(--border-light);
}

.lafwytl-notes-list li:last-child {
  border-bottom: none;
}

.lafwytl-notes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

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

/* ============================================
   申請表格區塊
   ============================================ */
.lafwytl-form-section {
  background: var(--bg-gray-light);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.lafwytl-form-subsection {
  margin-bottom: 16px;
}

.lafwytl-form-subsection:last-child {
  margin-bottom: 0;
}

.lafwytl-form-subsection__title {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 10px;
}

.lafwytl-form-list {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}

.lafwytl-form-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.lafwytl-form-list li:last-child {
  margin-bottom: 0;
}

.lafwytl-form-list a {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

.lafwytl-form-list a:hover {
  text-decoration: underline;
}

/* ============================================
   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) {
  .lafwytl-hotline {
    flex-direction: column;
    gap: 12px;
  }
}