/*--------------------------------------------------------------
# 积分充值
--------------------------------------------------------------*/

/* 主容器 */
.points-main-wrapper {
  max-width: 100%;
  padding: 100px 0 50px 0;
  background-color: #f4f6fa;
}

.points-main-wrapper .point-container-1 {
  padding: 0;
}

.points-main-wrapper .recharge-area {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30, 64, 175, 0.10);
  padding: 8px 30px
}

/* 标题样式 */
.points-main-wrapper h1 {
  font-size: 2rem;
  color: #1e40af;
  text-align: center;
  margin-top: 20px;
  font-weight: bolder;
}

.points-main-wrapper h2 {
  font-size: 1.18rem;
  color: #1e293b;
  font-weight: bolder;
  margin: 30px 0;
}

.points-main-wrapper h3 {
  font-size: 1.08rem;
  /* color: #2563eb; */
  font-weight: bolder;
  margin: 22px 0 10px;
}

/* 产品logo */
.points-main-wrapper .product-logo {
    margin-bottom: 10px;
    text-align: center;
}

.points-main-wrapper .product-logo img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

/* 内容文本 */
.points-main-wrapper .content-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
  margin-left: 15px;
}

.points-main-wrapper .wenxin-prompt {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
}

/* 套餐卡片 */
.points-main-wrapper .package-row {
  display: flex;
  gap: 28px;
  margin-bottom: 38px;
  margin-top: 90px;
}

.points-main-wrapper .package-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  border: 2px solid #e0e7ef;
  padding: 36px 0 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.points-main-wrapper .package-card.selected {
  background: linear-gradient(105deg, #e0e7ff 60%, #f1f5ff 100%);
  border: 2px solid #2563eb;
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.22);
  transform: translateY(-4px);
}

.points-main-wrapper .package-card:hover {
  background: linear-gradient(105deg, #e0e7ff 60%, #f1f5ff 100%);
  border: 2px solid #2563eb;
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.22);
  transform: translateY(-4px);
}

/* 套餐内容 */
.points-main-wrapper .pkg-logo {
  width: 90px;
  height: 64px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.points-main-wrapper .pkg-amount {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.points-main-wrapper .pkg-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2563eb;
  margin: 8px 0 4px;
}

.points-main-wrapper .package-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #e0e7ff;
  color: #2563eb;
  font-size: 0.92rem;
  padding: 2px 14px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #adb5bd;
}

.points-main-wrapper .package-desc {
  font-size: 0.92rem;
  color: #64748b;
  margin-top: 10px;
}

.points-main-wrapper .buy-box {
  padding: 15px;
  background-color: rgba(247, 247, 247, 1);
  text-align: left;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.points-main-wrapper .buy-box .ewmImg {
  display: inline-block;
}

.points-main-wrapper .buy-box .wx-img {
  width: 20px;
  height: auto;
}

/* 高亮闪烁二维码图片 */
.points-main-wrapper .buy-box .ewmImgFlash {
  display: inline-block;
  animation: ewmImgFlashBorder 1s infinite alternate;
  /* 将动画次数限制为3次 */
  animation-iteration-count: 3;
}

@keyframes ewmImgFlashBorder {
  0% {
    border: 3px solid transparent;
    border-radius: 10px;
  }

  100% {
    border: 3px solid rgba(255, 94, 94, 1);
    border-radius: 10px;
  }
}

.points-main-wrapper .buy-box img {
  height: 150px;
  display: inline-block;
}

.points-main-wrapper .buy-content {
  vertical-align: middle;
  display: inline-block;
}

.points-main-wrapper .buy-content .span-1 {
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bolder;
}

.points-main-wrapper .buy-content .span-2 {
  font-size: 22px;
  font-weight: bolder;
  margin-left: 10px;
  color: rgba(249, 79, 84, 1);
  display: inline-block;
  vertical-align: middle;
}

.points-main-wrapper .buy-content .span-3 {
  font-size: 20px;
  font-weight: bolder;
  color: rgba(249, 79, 84, 1);
}

.points-main-wrapper .buy-content .span-4 {
  background: url(/local/images/membership/money-tip.png);
  background-size: 100% 100%;
  margin-left: 21px;
  font-size: 16px;
  padding: 5px 0;
  display: none;
  vertical-align: middle;
}

.points-main-wrapper .buy-content .span-5 {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin: 9px 0 0 52px;
  padding-right: 30px;
}

.points-main-wrapper .buy-content-1 {
  font-size: 15px;
  font-weight: bold;
  color: rgb(112 109 109);
  margin-top: 10px;
  margin-left: 10px;
}

.points-main-wrapper .buy-content-1 img {
  width: 21px;
  height: auto;
  margin-right: 10px;
  margin-top: -2px;
}

.points-main-wrapper .buy-content-2 {
  font-size: clamp(14px, 15px, 16px);
  color: rgb(126 123 123);
  margin-top: 10px;
}

.points-main-wrapper .buy-content-2 a {
  font-size: clamp(14px, 15px, 16px);
  font-weight: bold;
}

.points-main-wrapper .buy-box h4 {
  font-size: 1rem;
  font-weight: 600;
}

.points-main-wrapper .buy-box .content-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
}


.points-main-wrapper .span-circle {
  font-size: 1.2em;
  margin-right: 5px;
}

.points-main-wrapper .pkg-flag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #2563eb;
  color: #fff;
  font-size: 0.85rem;
  padding: 2px 10px;
  border-radius: 12px 12px 12px 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
}

/* 主容器 */
.points-main-wrapper .visualization-container {
  width: 100%;
  max-width: 62.5rem; /* 1000px */
  background: white;
  border-radius: 0.75rem; /* 12px */
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08); /* 10px 30px */
  overflow: hidden;
  margin: 1rem;
}

/* 选项卡导航 */
.points-main-wrapper .viz-tab-header {
  display: flex;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.points-main-wrapper .viz-tab-btn {
  flex: 1;
  text-align: center;
  padding: 1.25rem 0.5rem 0.8rem 0.8rem;
  color: #555;
  /* cursor: pointer; */
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.5rem);
  letter-spacing: 0.03125rem;
  display: flex;
  /*选项卡点击需要去除注释内容*/
  /* justify-content: center; */
  /* align-items: center; */
}

/*选项卡点击需要去除注释内容*/
/* .points-main-wrapper .viz-tab-btn:hover {
  color: #3a86ff;
  background-color: rgba(58, 134, 255, 0.05);
} */

.points-main-wrapper .viz-tab-btn.active {
  color: #3a86ff;
  font-size: 1.5rem;
}

.points-main-wrapper .viz-tab-indicator {
  position: absolute;
  height: 0.1875rem; /* 3px */
  width: 50%;
  background: #3a86ff;
  bottom: -1px;
  left: 0;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 0.1875rem 0.1875rem 0 0; /* 3px */
}

/* 选项卡内容区 */
.points-main-wrapper .viz-tab-content {
  min-height: 25rem; /* 400px */
}

.points-main-wrapper .viz-tab-pane {
  display: none;
  margin-top: 50px;
  animation: fadeInUp 0.5s ease;
}

.points-main-wrapper .viz-tab-pane.active {
  display: block;
}

.points-main-wrapper .viz-tab-pane .mebership-message {
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  background-color: rgba(243, 248, 255, 1);
  border-radius: 10px;
  color: rgba(64, 118, 209, 1);
  font-size: 18px;
  text-align: left;
  line-height: 41px;
  margin: 20px 20px 0 0;
  padding: 0 15px;
  position: relative;
  font-weight: 700;
}

@media (max-width: 768px) {
.points-main-wrapper .viz-tab-pane .mebership-message {
    font-size: 14px;
    line-height: 30px;
  }
}

.points-main-wrapper .viz-tab-pane .mebership-message span {
  line-height: 24px;
  margin-left: 30px;
  font-size: 16px;
  color: rgba(255, 94, 94, 1);
}

@media (max-width: 768px) {
.points-main-wrapper .viz-tab-pane .mebership-message span {
    font-size: 14px;
  }
}

.points-main-wrapper .viz-tab-pane .mebership-message img {
  top: 10px;
  position: absolute;
  height: 20px;
}

.points-main-wrapper .viz-tab-pane .mebership-message a{
    text-decoration: underline;
    color: rgba(255, 94, 94, 1);
}

.points-main-wrapper .viz-tab-pane .mebership-message a:hover{
    color: #00a8ff;
}

.points-main-wrapper .viz-tab-pane .mebership-message .decorate-images {
  display: inline-block !important;
  position: static !important;
  vertical-align: -2px;
  height: 20px;
  width: auto;
  margin: 0 5px;
  top: auto;
  left: auto;
}

/* 文本样式 */
.points-main-wrapper .tab-title {
  margin-bottom: 1.25rem; /* 20px */
  color: #333;
  font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px - 24px */
}

.points-main-wrapper .tab-description {
  color: #666; 
  margin-bottom: 1.5625rem; /* 25px */
  line-height: 1.6;
  font-size: clamp(0.875rem, 2vw, 1rem); /* 14px - 16px */
}

.points-main-wrapper .tab-icon {
  margin-right: 0.625rem; /* 10px */
  font-size: 1.25rem; /* 20px */
}

/* 思维导图预览样式 */
.points-main-wrapper .mindmap-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  border-radius: 0.5rem; /* 8px */
  height: clamp(15.625rem, 50vh, 22.5rem); /* 250px - 360px */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.points-main-wrapper .mindmap-node {
  position: absolute;
  width: clamp(5rem, 15vw, 7.5rem); /* 80px - 120px */
  height: clamp(2.5rem, 8vw, 3.75rem); /* 40px - 60px */
  background: white;
  border-radius: 0.5rem; /* 8px */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08); /* 4px 12px */
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  font-size: clamp(0.75rem, 2vw, 0.875rem); /* 12px - 14px */
}

.points-main-wrapper .mindmap-node:hover {
  transform: translateY(-0.3125rem); /* 5px */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12); /* 8px 16px */
}

.points-main-wrapper .mindmap-node.center {
  width: clamp(6rem, 18vw, 8.75rem); /* 96px - 140px */
  height: clamp(3rem, 9vw, 4.375rem); /* 48px - 70px */
  background: #3a86ff;
  color: white;
  font-weight: 600;
  z-index: 2;
  font-size: clamp(0.875rem, 2.5vw, 1rem); /* 14px - 16px */
}

.points-main-wrapper .mindmap-connector {
  position: absolute;
  background: #d1d8e0;
  height: 0.125rem; /* 2px */
  transform-origin: left center;
  z-index: 1;
}

/* 数据可视化预览样式 */
.points-main-wrapper .dataviz-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  border-radius: 0.5rem; /* 8px */
  height: clamp(15.625rem, 50vh, 22.5rem); /* 250px - 360px */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.points-main-wrapper .dataviz-graph {
  width: 80%;
  height: 80%;
  position: relative;
}

.points-main-wrapper .dataviz-node {
  position: absolute;
  width: clamp(2rem, 6vw, 2.5rem); /* 32px - 40px */
  height: clamp(2rem, 6vw, 2.5rem); /* 32px - 40px */
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08); /* 4px 12px */
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  font-size: clamp(0.625rem, 2vw, 0.75rem); /* 10px - 12px */
}

.points-main-wrapper .dataviz-node.main {
  width: clamp(3rem, 8vw, 3.75rem); /* 48px - 60px */
  height: clamp(3rem, 8vw, 3.75rem); /* 48px - 60px */
  background: #8338ec;
  color: white;
  font-weight: 600;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem); /* 12px - 14px */
}

.points-main-wrapper .dataviz-link {
  position: absolute;
  height: 0.125rem; /* 2px */
  background: rgba(58, 134, 255, 0.3);
  transform-origin: left center;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(0.9375rem); /* 15px */
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .points-main-wrapper .package-row {
        flex-direction: column;
    }
    .points-main-wrapper .buy-box {
        margin-top: 0;
    }
}

/* 响应式设计 - 平板设备 */
@media (max-width: 768px) {
  
  .points-main-wrapper {
    padding: 100px 0 30px 0;
    align-items: flex-start;
  }

  .points-main-wrapper .main-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .points-main-wrapper .recharge-area {
    padding: 24px;
    border-radius: 8px;
  }

  .points-main-wrapper .package-row {
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
  }

  .points-main-wrapper .viz-tab-header {
      flex-direction: column;
  }
  
  .points-main-wrapper .viz-tab-indicator {
      width: 100%;
      height: 0.1875rem; /* 3px */
      bottom: 0;
  }
  
  .points-main-wrapper .viz-tab-btn {
      padding: 1rem 0; /* 16px */
  }
  
  .points-main-wrapper .mindmap-node {
      width: 6.25rem; /* 100px */
      height: 3.125rem; /* 50px */
  }
    
  .points-main-wrapper .mindmap-node.center {
      width: 7.5rem; /* 120px */
      height: 3.75rem; /* 60px */
  }

  .points-main-wrapper .visualization-container {
      margin: 0.5rem;
  }

  .points-main-wrapper .viz-tab-content {
      min-height: 20rem; /* 320px */
      padding: 0 1rem; /* 16px */
  }

  .points-main-wrapper .mindmap-preview,
  .points-main-wrapper .dataviz-preview {
      height: 18.75rem; /* 300px */
  }

  .points-main-wrapper .tab-icon {
      margin-right: 0.5rem; /* 8px */
      font-size: 1rem; /* 16px */
  }

  .points-main-wrapper .mindmap-node {
      width: 5rem; /* 80px */
      height: 2.5rem; /* 40px */
  }

  .points-main-wrapper .mindmap-node.center {
      width: 6rem; /* 96px */
      height: 3rem; /* 48px */
  }

  .points-main-wrapper .buy-box {
    margin-top: 0;;
  }
}

@media (max-width: 1399px) {
  .points-main-wrapper .recharge-area {
    padding: 15px 20px;
  }
}

.points-main-wrapper .header-img {
    width: 15px;
    height: auto;
    margin-right: 5px;;
}

/*--------------------------------------------------------------
# 常见问答
--------------------------------------------------------------*/
.faq {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30, 64, 175, 0.10);
  margin-top: 30px;
  padding: 30px 0;
}

.faq .border-line {
  border: 1px solid rgba(236, 239, 246, 1);
  border-radius: 15px;
}

.faq .title-content {
  /* background: url(/local/images/membership/fq-title.png); */
  background-size: 100% 100%;
  color: rgba(51, 51, 51, 1);
  font-size: 32px;
  font-weight: bolder;
  text-align: center;
  /* padding: 10px 0; */
}

.faq .faq-list {
  padding: 20px 0;
}

.faq .faq-list .faq-circle {
  font-size: 10px;
  margin-right: 6px;
  vertical-align: middle;
}

.faq .faq-list .faq-help-img {
  position: absolute;
  left: 10px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  border-bottom: 1px solid rgb(223, 224, 225);
  margin: 0 40px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .emailA {
  padding-left: 5px;
  color: rgb(74, 74, 74);
  display: inline-block;
}

.faq .faq-list .emailA:hover {
  color: rgba(0, 168, 255, 1);
}

.faq .faq-list .icon-help {
  font-size: 26px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffb8a1;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list .icon-close:before {
  color: #343a40 !important; /* 确保优先级最高 */
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 20px 0 0px 30px;
  font-size: 16px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  line-height: 30px;
}

.faq .faq-list a.collapsed:hover {
  color: #2b579a;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.faq .faq-list .title-level-2 {
  font-weight: 600;
  font-size: 18px;
  display: block;
  padding: 10px 0 10px 0
}

.faq .faq-list .list-level-2 {
  font-size: 16px;
  display: block;
  padding: 10px 0;
  white-space: normal;
  /* 允许文本正常换行 */
  overflow-wrap: break-word;
  /* 在必要时断开长单词以适应容器 */
}

.faq .faq-list .faq-help-img img {
  width: 26px;
  height: auto;
}

@media (max-width: 768px) {
  .faq .faq-list li {
    margin: 0;
  }
  
  .faq .faq-list .faq-circle {
    font-size: 7px;
    margin-right: 6px;
    vertical-align: middle;
    margin-bottom: 3px;
  }
  
  .faq .faq-list .faq-help-img {
    position: absolute;
    left: 15px;
  }
  
  .faq .faq-list a {
    font-size: 16px;
  }

  .faq .faq-list p {
    margin-bottom: 0;
    padding: 20px 0 0px 30px;
    font-size: 14px;
  }

  .faq .faq-list .list-level-2 {
    font-size: 14px;
  }

  .faq {
    padding: 0;
  }
}