/* ===== 页面专属样式 ===== */

/* TikTok风格卡片 - 黑粉主题 */
.tiktok-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid #d7e1ed;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tiktok-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #000000, #ff0050, #000000);
  opacity: 0;
  transition: opacity 0.3s;
}
.tiktok-card:hover::after {
  opacity: 1;
}
.tiktok-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
  border-color: #ff0050;
}
.tiktok-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fce4ec, #f8e8ec);
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.tiktok-card:hover .icon-wrap {
  background: linear-gradient(135deg, #000000, #ff0050);
  color: white;
}
.tiktok-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}
.tiktok-card p {
  font-size: 13px;
  color: #4a4a6a;
  line-height: 1.7;
  margin-top: 4px;
}
.tiktok-card .tag-pink {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #ff0050;
  background: #fce4ec;
  padding: 2px 14px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* 数据统计卡片 - 黑粉风格 */
.stat-pink-card {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}
.stat-pink-card:hover {
  transform: translateY(-4px);
  border-color: #ff0050;
}
.stat-pink-card .number {
  font-size: 32px;
  font-weight: 800;
  color: #ff0050;
  display: block;
  line-height: 1.2;
}
.stat-pink-card .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.stat-pink-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

/* 服务步骤 - 时间轴风格 (与之前不同) */
.step-timeline {
  position: relative;
  padding-left: 36px;
  padding-bottom: 32px;
  border-left: 3px solid #ff0050;
}
.step-timeline:last-child {
  border-left: 3px solid transparent;
  padding-bottom: 0;
}
.step-timeline .step-dot {
  position: absolute;
  left: -10px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #ff0050;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #ff0050;
}
.step-timeline .step-card {
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid #d7e1ed;
  transition: all 0.25s;
}
.step-timeline .step-card:hover {
  box-shadow: 0 8px 28px rgba(255, 0, 80, 0.06);
  border-color: #ff0050;
}
.step-timeline .step-card .step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ff0050;
  background: #fce4ec;
  padding: 2px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.step-timeline .step-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}
.step-timeline .step-card p {
  font-size: 14px;
  color: #4a4a6a;
  line-height: 1.7;
  margin-top: 4px;
}

/* ===== Banner 全新布局：左文右图 + 手机竖屏模拟 ===== */
.banner-wrapper {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #f5f0f2 0%, #fce8ee 40%, #f5dce4 100%);
  overflow: hidden;
}
.banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 0, 80, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 0, 80, 0.03) 0%, transparent 40%);
  z-index: 1;
}
/* 装饰 - TikTok音符 */
.banner-wrapper .deco-note {
  position: absolute;
  z-index: 1;
  opacity: 0.04;
  font-size: 140px;
  color: #ff0050;
  line-height: 1;
}
.banner-wrapper .deco-note:nth-child(1) {
  top: -20px;
  right: 30px;
  font-size: 180px;
  transform: rotate(15deg);
}
.banner-wrapper .deco-note:nth-child(2) {
  bottom: -30px;
  left: 20px;
  font-size: 140px;
  transform: rotate(-10deg);
}

.banner-wrapper .banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 0;
}
.banner-wrapper .banner-grid {
  align-items: center;
}
.banner-wrapper .banner-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 80, 0.08);
  color: #ff0050;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px 6px 16px;
  border-radius: 100px;
}
.banner-wrapper .banner-text .badge .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff0050;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.banner-wrapper .banner-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin: 14px 0 12px;
}
.banner-wrapper .banner-text h1 .highlight {
  background: linear-gradient(135deg, #000000, #ff0050);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner-wrapper .banner-text .desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a6a;
  max-width: 800px;
  text-align: center;
  margin: auto;
}
.banner-wrapper .banner-text .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.banner-wrapper .btn-primary-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #000000, #2d2d44);
  color: #fff;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 60px;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.banner-wrapper .btn-primary-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #1a1a2e, #3d3d5c);
}
.banner-wrapper .btn-outline-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a1a2e;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 0.95rem;
  border: 1.5px solid #d7e1ed;
  transition: all 0.25s;
  text-decoration: none;
}
.banner-wrapper .btn-outline-banner:hover {
  background: rgba(255, 0, 80, 0.04);
  border-color: #ff0050;
  transform: translateY(-2px);
}

/* 右侧 - 手机竖屏模拟 */
.banner-wrapper .banner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner-wrapper .banner-visual .phone-mock {
  width: 200px;
  height: 400px;
  background: #1a1a2e;
  border-radius: 32px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.banner-wrapper .banner-visual .phone-mock .mock-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #000;
  border-radius: 0 0 16px 16px;
}
.banner-wrapper .banner-visual .phone-mock .mock-content {
  text-align: center;
  margin-top: 20px;
}
.banner-wrapper .banner-visual .phone-mock .mock-content .tiktok-icon {
  font-size: 52px;
  display: block;
  margin-bottom: 10px;
}
.banner-wrapper .banner-visual .phone-mock .mock-content .mock-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.banner-wrapper .banner-visual .phone-mock .mock-content .mock-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.banner-wrapper .banner-visual .phone-mock .mock-content .mock-btn {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, #ff0050, #ff3377);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 30px;
  border: none;
}
.banner-wrapper .banner-visual .phone-mock .mock-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
/* 浮动的小标签 */
.banner-wrapper .banner-visual .float-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float-tag 6s ease-in-out infinite;
}
.banner-wrapper .banner-visual .float-tag:nth-child(2) {
  top: 10%;
  right: -15%;
  animation-delay: 0s;
}
.banner-wrapper .banner-visual .float-tag:nth-child(3) {
  bottom: 25%;
  left: -18%;
  animation-delay: 2s;
}
.banner-wrapper .banner-visual .float-tag:nth-child(4) {
  top: 30%;
  right: -20%;
  animation-delay: 4s;
}
@keyframes float-tag {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* 底部数据 */
.banner-wrapper .data-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 0, 80, 0.06);
}
.banner-wrapper .data-row .data-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a4a6a;
  font-size: 14px;
}
.banner-wrapper .data-row .data-item .num {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 18px;
}
.banner-wrapper .data-row .data-item .pink {
  color: #ff0050;
}

@media (max-width: 1024px) {
  .banner-wrapper .banner-visual .phone-mock {
    width: 160px;
    height: 320px;
    border-radius: 24px;
    padding: 16px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .tiktok-icon {
    font-size: 38px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .mock-title {
    font-size: 15px;
  }
  .banner-wrapper .banner-visual .float-tag {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner-wrapper .banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .banner-wrapper .banner-text .desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-wrapper .banner-text .actions {
    justify-content: center;
  }
  .banner-wrapper .banner-visual .phone-mock {
    width: 140px;
    height: 280px;
    border-radius: 20px;
    padding: 12px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .tiktok-icon {
    font-size: 30px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .mock-title {
    font-size: 13px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .mock-btn {
    font-size: 10px;
    padding: 6px 18px;
  }
  .banner-wrapper .data-row {
    gap: 12px 24px;
  }
  .banner-wrapper .data-row .data-item {
    font-size: 12px;
  }
  .banner-wrapper .data-row .data-item .num {
    font-size: 15px;
  }
  .banner-wrapper .deco-note {
    display: none;
  }
  .step-timeline {
    padding-left: 24px;
  }
}
@media (max-width: 480px) {
  .banner-wrapper .banner-text h1 {
    font-size: 1.8rem;
  }
  .banner-wrapper .btn-primary-banner,
  .banner-wrapper .btn-outline-banner {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  .banner-wrapper .banner-text .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .banner-wrapper .banner-visual .phone-mock {
    width: 120px;
    height: 240px;
    border-radius: 16px;
    padding: 10px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-notch {
    width: 40px;
    height: 14px;
    top: 4px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .tiktok-icon {
    font-size: 24px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .mock-title {
    font-size: 11px;
  }
  .banner-wrapper .banner-visual .phone-mock .mock-content .mock-btn {
    font-size: 9px;
    padding: 4px 14px;
    margin-top: 8px;
  }
}
