* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary: #6036ff;
  --secondary: #3f37c9;
  --accent: #7209b7;
  --success: #4caf50;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --border: #dee2e6;
  --step-complete: #4caf50;
  --step-active: #4361ee;
  --step-inactive: #e9ecef;
  --pink: #e91e63;
  --pink-light: #f8bbd0;
}

body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #e8eaf6);
  color: var(--dark);
  line-height: 1.6;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

.container {
  background: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.header-ribbon {
  position: absolute;
  top: -5px;
  right: 30px;
  background: #f86108;
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

header {
  background: url(https://cdn.yopngs.com/2025/10/15/753faf51-4ef8-431a-a556-a59c05f3f65e.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 76px 20px 17px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="white" opacity="0.05" width="15" height="15"/></svg>');
  background-size: 20px;
  z-index: 1;
}

.premium-badge {
  background: #ffd700;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

header h1 i {
  /* font-size: 2.2rem; */
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-top: 1px;
  position: relative;
  z-index: 2;
  line-height: 2;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.preview-section {
  padding: 30px 20px;
  background: linear-gradient(45deg, #fff1f8, #f0f4ff);
  text-align: center;
  border-bottom: 1px dashed var(--pink-light);
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6036ff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.image-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.img-container {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
}

.img-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(233, 30, 99, 0.1),
    rgba(67, 97, 238, 0.1)
  );
  z-index: 1;
}

.img-container img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.img-caption {
  font-size: 0.95rem;
  color: var(--pink);
  margin-top: 10px;
  font-weight: 600;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.img-caption i {
  color: var(--accent);
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pink-light),
    transparent
  );
  margin: 0 15px;
}

.step-progress {
  display: flex;
  justify-content: space-between;
  margin: 20px 40px 30px;
  position: relative;
}

.step-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--step-inactive);
  border-radius: 3px;
  z-index: 1;
}

.step-progress .progress-bar {
  position: absolute;
  top: 20px;
  left: 0;
  height: 6px;
  background: var(--step-active);
  border-radius: 3px;
  z-index: 2;
  transition: width 0.4s ease;
}

.step {
  position: relative;
  z-index: 3;
  text-align: center;
  flex: 1;
}

.step-icon {
  width: 42px;
  height: 42px;
  background: white;
  border: 2px solid var(--step-inactive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step.active .step-icon {
  background: var(--step-active);
  border-color: var(--step-active);
  color: white;
}

.step.complete .step-icon {
  background: var(--step-complete);
  border-color: var(--step-complete);
  color: white;
}

.step.complete .step-icon::after {
  /*content: "\f00c";*/
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  max-width: 80px;
  margin: 0 auto;
}

.step.active .step-title {
  color: var(--dark);
  font-weight: 600;
}

.step-content {
  padding: 20px;
}

.step-card {
  background: var(--light);
  border-radius: 16px;
  padding: 34px 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #6036ff;
  color: white;
  padding: 6px 15px;
  border-radius: 0 0 12px 0;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.card-title i {
  font-size: 1.3rem;
}

.instruction-list {
  list-style: none;
  position: relative;
  z-index: 2;
}

.instruction-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.instruction-list .number {
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.step-img-container {
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-img-container img {
  width: 100%;
  display: block;
}

.step-img-container1 {
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgb(232 232 232);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-img-container1 img {
  width: 100%;
  display: block;
}

/* 小红书文字背景板样式 */
.xiaohongshu-bg {
  width: 100%;
  height: auto;
  background-color: #fffdf9;
  background-size: 20px 20px;
  color: #0046ff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.xiaohongshu-text {
  font-size: 14px;
  margin: 10px 0;
  width: 90%;
  padding: 6px;
  border: 1px dashed #b36d61;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.xiaohongshu-text:hover {
  /* 移除悬停效果 */
}

.xiaohongshu-text:active {
  /* 移除点击效果 */
}

.step-img-caption {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
  /*            font-style: italic;*/
}

.hint {
  display: inline-flex;
  align-items: center;
  background: #e9f7e9;
  color: var(--success);
  font-size: 0.85rem;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 15px;
  width: 100%;
}

.hint i {
  margin-right: 4px;
}

.note-box {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.bonus-section {
  background: linear-gradient(to right, #e8f4ff, #f1e8ff);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  border: 2px dashed var(--primary);
}

.bonus-title {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bonus-content {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}

.btn-container {
  padding: 0 20px 20px;
}

.btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.35);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  z-index: 0;
  transition: all 0.5s ease;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
}

.btn:hover::after {
  transform: rotate(30deg) translate(20%, 20%);
}

.btn i {
  margin-right: 12px;
}

.btn-success {
  background: linear-gradient(135deg, #6036ff, #0400ff);
}

.btn-success:hover {
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(67, 97, 238, 0.05);
}

footer {
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.countdown-box {
  background: rgba(233, 30, 99, 0.08);
  border-radius: 14px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.countdown-title {
  font-size: 1rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 10px;
}

.countdown-timer {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  font-family: monospace;
  letter-spacing: 2px;
}

@media (max-width: 480px) {
  .step-progress {
    margin: 20px 20px 30px;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .step-content {
    padding: 15px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 16px;
    font-size: 1.1rem;
  }
}

.local-icon {
  width: 37px;
  height: 37px;
  vertical-align: middle;
}

.local-icon-shouji {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.local-icon-wjx {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.local-icon-dn {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

.local-icon-ks {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.local-icon-ts {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.local-icon-wh {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.local-icon-lq {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.title-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-text {
  display: flex;
  align-items: center;
}

.local-icon-kf {
  width: 19px;
  height: 19px;
  vertical-align: -0.15em;
}
.STYLE3 {
  color: #ff0000;
  font-weight: bold;
}
.STYLE4 {
  color: #ff0000;
}
.card-title1 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}
.STYLE5 {
  font-weight: bold;
}
.STYLE6 {
  color: #6600ff;
}
