@charset "UTF-8";
/* source: v3/promotionPlan.vue */
/* 页面根样式 */
.promotion-plan-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* 顶部横幅样式 */
.promotion-banner {
  padding: 6rem 0 2rem;
  background: radial-gradient(circle at top left, #e6f0ff 0%, transparent 50%), radial-gradient(circle at top right, #e6f0ff 0%, transparent 50%), #ffffff;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.promotion-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(0, 100, 207, 0.05) 0%, transparent 50%), radial-gradient(circle at bottom right, rgba(0, 100, 207, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.promotion-banner .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.promotion-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.promotion-banner .text-area {
  flex: 0 1 720px;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.promotion-banner .main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #0e0b3d 50%, #3580ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.promotion-banner .desc {
  font-size: 1.375rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.promotion-banner .join-btn {
  display: inline-block;
  padding: 1.2rem 3.6rem;
  background: linear-gradient(135deg, #007bff 0%, #0064cf 50%, #007bff 100%);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.promotion-banner .join-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-section.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out;
}

/* 推广对象（个人&工作室 / 企业转售）顶部插图：不参与入场隐藏，避免 opacity:0 被误认为图片未迁移 */
.promotion-plan-page section.promotion-target.animate-section {
  opacity: 1 !important;
  transform: none !important;
}

/* 「加入赚佣只需简单4步」右侧插图：同上，避免整段 opacity:0 或子图高度塌陷导致「只有白底框」 */
.promotion-plan-page section.join-steps.animate-section {
  opacity: 1 !important;
  transform: none !important;
}

.promotion-banner .join-btn:hover {
  background: linear-gradient(135deg, #0094ff 0%, #007bff 50%, #0094ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 148, 255, 0.4);
}

/* 计划标题样式 */
.promotion-title {
  text-align: center;
  margin-bottom: 50px;
  background-color: #ffffff;
}

.promotion-title .title-text {
  font-size: 2.2rem;
  color: #042040;
  font-weight: 600;
  margin-bottom: 40px;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

/* 渐变色下划线 */
.promotion-title .title-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0064cf, transparent);
  border-radius: 2px;
}

/* 标题容器 */
.promotion-title .title-wrapper {
  display: inline-block;
  padding: 20px 0;
}

/* 推广对象分栏样式 */
.promotion-target {
  padding: 40px 0;
  margin-bottom: 10px;
  background-color: #ffffff;
}

.promotion-target .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.promotion-target .target-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.promotion-target .target-card {
  flex: 0 0 calc(50% - 15px);
  min-width: 320px;
  max-width: none;
  background-color: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 100, 207, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 100, 207, 0.1);
}

.promotion-target .target-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 148, 255, 0.3);
}

/* 顶部插图样式 */
.promotion-target .card-illustration {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.promotion-target .illustration-img {
  display: block;
  width: 100%;
  height: 100% !important; /* 覆盖 v3 site.css 中 .v3-page img { height:auto }，否则 SVG 插图高度塌陷 */
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.3s ease;
}

.promotion-target .target-card:hover .illustration-img {
  transform: scale(1.05);
}

/* 卡片内容区样式 */
.promotion-target .card-title {
  font-size: 2.2rem;
  color: #042040;
  margin: 24px 24px 12px;
  font-weight: 600;
  line-height: 1.3;
  border-left: none;
  padding-left: 0;
}

/* 描述文字 */
.promotion-target .card-desc {
  font-size: 0.94rem;
  color: #666;
  line-height: 1.6;
  margin: 0 24px 24px;
}

.promotion-target .card-list {
  list-style: none;
  padding: 0 24px 24px;
  margin: 0;
}

.promotion-target .card-list li {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

/* 主题色蓝色圆形对勾 */
.promotion-target .card-list li::before {
  content: "✓";
  color: #F8F9FA;
  background-color: #0064cf;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  position: absolute;
  left: 0;
  top: 2px;
  box-shadow: 0 2px 6px rgba(0, 100, 207, 0.2);
  transition: all 0.3s ease;
}

.promotion-target .target-card:hover .card-list li::before {
  background-color: #007bff;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
  transform: scale(1.1);
}

/* 加入步骤样式 */
.join-steps {
  padding: 40px 0;
  background-color: #f8f9fa;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.join-steps .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.join-steps .steps-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
}

.join-steps .steps-list {
  flex: 1;
  min-width: 300px;
  padding-left: 0;
}

.join-steps .steps-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #042040;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #042040 0%, #0064cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  padding-bottom: 20px;
}

.join-steps .steps-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #0064cf, transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 100, 207, 0.3);
}

.join-steps .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.join-steps .step-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, #0064cf, transparent);
  box-shadow: 0 0 8px rgba(0, 100, 207, 0.2);
}

.join-steps .step-item:last-child::before {
  display: none;
}

.join-steps .step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0064cf 0%, #007bff 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 100, 207, 0.4);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.join-steps .step-icon::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg, #0064cf 0%, #0094ff 100%);
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 100, 207, 0.3);
}

.join-steps .step-icon::after {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #0064cf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 100, 207, 0.3);
  border: 2px solid #0064cf;
}

.join-steps .step-icon .step-svg-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: #ffffff;
  fill: currentColor;
}

.join-steps .step-text {
  flex: 1;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 100, 207, 0.15);
  position: relative;
  overflow: hidden;
}

.join-steps .step-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0064cf, #007bff);
}

.join-steps .step-text h5 {
  font-size: 1.3rem;
  color: #042040;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}

.join-steps .step-text h5::before {
  content: "Step " attr(data-step);
  font-size: 0.95rem;
  color: #0064cf;
  font-weight: 700;
  margin-right: 12px;
  padding: 4px 10px;
  background-color: rgba(0, 100, 207, 0.1);
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 100, 207, 0.1);
}

.join-steps .step-text p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.join-steps .steps-image {
  flex: 0 0 520px;
  min-width: 300px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 100, 207, 0.2);
  border: 1px solid rgba(0, 100, 207, 0.15);
  margin-left: 0;
  position: relative;
  overflow: hidden;
}

.join-steps .steps-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 100, 207, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.join-steps .step-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 520 / 380;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* 覆盖 site.css .v3-page img，保证步骤区右侧 SVG/插图有明确占位高度 */
.promotion-plan-page .join-steps .steps-image .step-img {
  min-height: 200px;
  height: auto !important;
}

/* 为什么加入样式 */
.why-join {
  padding: 60px 0;
  margin-bottom: 0;
  text-align: center;
  background-color: #ffffff;
}

.why-join .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.why-join .why-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #042040;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.why-join .why-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0064cf, transparent);
  border-radius: 2px;
}

.why-join .why-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.why-join .why-card {
  flex: 0 0 calc(33.333% - 13.333px);
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  padding: 15px;
}

.why-join .card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.why-join .card-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
}

.why-join .card-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: inherit;
  filter: blur(10px);
  opacity: 0.8;
  z-index: -1;
}

.why-join .card-icon .icon {
  font-size: 1.5rem;
  color: #000;
}

.why-join .card-icon .why-svg-icon {
  width: 1.7rem;
  height: 1.7rem;
  color: inherit;
  fill: currentColor;
}

.why-join .card-title {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-join .card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* 支持服务样式 */
.support-service {
  padding: 60px 0;
  background-color: #f8f9fa;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-service .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.support-service .support-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #042040;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.support-service .support-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0064cf, transparent);
  border-radius: 2px;
}

.support-service .service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.support-service .service-card {
  flex: 1;
  min-width: 300px;
  max-width: calc((100% - 40px) / 3);
  text-align: center;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 100, 207, 0.15);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 100, 207, 0.15);
  position: relative;
}

.support-service .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0064cf, #007bff);
}

.support-service .card-title {
  font-size: 1.3rem;
  color: #042040;
  margin: 25px 0 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.support-service .card-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #0064cf;
  border-radius: 1px;
}

.support-service .card-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  padding: 0 25px 30px;
  margin-top: 15px;
}

.support-service .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}

.support-service .card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 100, 207, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.support-service .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

/* 常见问题 */
.question-box {
  padding: 40px 0;
  background-color: #ffffff;
}

.question-box .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: center;
}

/* 常见问题标题 */
.question-title {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  color: #042040;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.question-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0064cf, transparent);
  border-radius: 2px;
}

/* FAQ列表容器 */
.q-items {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

/* 单个问题项样式 */
.q-item {
  background: #fafbfb;
  border: 1px solid #eceded;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

/* 问题文字样式 */
.q-item-title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  align-items: center;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 12px;
  display: flex;
}

.q-item-icon {
  width: 20px;
  margin-right: 10px;
}

.q-item-desc {
  font-size: 0.875rem;
  line-height: 1.375rem;
  margin-top: 12px;
  color: #666;
  margin: 0;
}

/* 手机端优化 */
@media (max-width: 576px) {
  .question-box {
    padding: 24px 0;
  }
  .question-title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 24px;
  }
  .q-item {
    padding: 12px;
    margin-bottom: 8px;
  }
  .q-item-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .q-item-icon {
    width: 16px;
    margin-right: 8px;
  }
  .q-item-desc {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
/* 移动端适配 */
@media (max-width: 991px) {
  /* 顶部横幅 */
  .promotion-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
  .promotion-banner .text-area {
    order: 1;
  }
  .promotion-banner .image-area {
    order: 2;
    flex: 0 0 250px;
    margin-top: 30px;
  }
  .promotion-banner .main-title {
    font-size: 1.8rem;
  }
  .promotion-banner .desc {
    font-size: 1rem;
  }
  /* 计划标题 */
  .promotion-title .title-wrapper {
    padding: 8px 20px;
  }
  .promotion-title .title-text {
    font-size: 1.5rem;
  }
  /* 推广对象分栏 */
  .promotion-target .target-cards {
    flex-direction: column;
    align-items: center;
  }
  .promotion-target .target-card {
    flex: 0 0 100%;
    max-width: 400px;
  }
  /* 加入步骤 */
  .join-steps .steps-content {
    flex-direction: column;
    align-items: center;
  }
  .join-steps .steps-list {
    padding-left: 0;
    flex: 0 0 100%;
    order: 1;
  }
  .join-steps .steps-image {
    flex: 0 0 250px;
    margin-left: 0;
    margin-top: 30px;
    order: 2;
  }
  /* 为什么加入 */
  .why-join .why-cards {
    flex-direction: column;
    align-items: center;
  }
  .why-join .why-card {
    flex: 0 0 100%;
    max-width: 300px;
  }
  /* 支持服务 */
  .support-service .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .support-service .service-card {
    flex: 0 0 100%;
    max-width: 350px;
  }
  /* 常见问题 */
  .faq-section .faq-list {
    max-width: 100%;
  }
}
/* 移动端适配 */
@media (max-width: 576px) {
  /* 顶部横幅 */
  .promotion-banner {
    padding: 60px 0;
  }
  .promotion-banner .main-title {
    font-size: 1.5rem;
  }
  .promotion-banner .desc {
    font-size: 0.9rem;
  }
  .promotion-banner .join-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .promotion-banner .image-area {
    flex: 0 0 200px;
  }
  /* 计划标题 */
  .promotion-title .title-text {
    font-size: 1.3rem;
  }
  /* 推广对象分栏 */
  .promotion-target .card-title {
    font-size: 1.3rem;
  }
  .promotion-target .card-desc {
    font-size: 0.9rem;
  }
  .promotion-target .card-list li {
    font-size: 0.9rem;
  }
  /* 加入步骤 */
  .join-steps .steps-title {
    font-size: 1.3rem;
  }
  .join-steps .step-text h5 {
    font-size: 1rem;
  }
  .join-steps .step-text p {
    font-size: 0.9rem;
  }
  /* 为什么加入 */
  .why-join .why-title {
    font-size: 1.5rem;
  }
  .why-join .card-title {
    font-size: 1.1rem;
  }
  .why-join .card-desc {
    font-size: 0.9rem;
  }
  /* 支持服务 */
  .support-service .support-title {
    font-size: 1.5rem;
  }
  .support-service .card-title {
    font-size: 1.1rem;
  }
  .support-service .card-desc {
    font-size: 0.9rem;
  }
  /* 常见问题 */
  .faq-section .faq-title {
    font-size: 1.3rem;
  }
  .faq-section .faq-question {
    font-size: 0.95rem;
  }
  .faq-section .faq-answer {
    font-size: 0.9rem;
  }
}
