/* --------------------banner-------------------- */
.beijing {
    background-image: url('../../uploads/common/consult/zixun_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.beijing .wen h2 {
    font-size: 64px;
    color: #ffffff;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.beijing .wen p {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 1068px) {
    .beijing {
        height: 400px;
    }
    .beijing .wen h2 {
        font-size: 48px;
    }
    .beijing .wen p {
        font-size: 21px;
    }
}

@media (max-width: 734px) {
    .beijing {
        height: 300px;
    }
    .beijing .wen h2 {
        font-size: 32px;
    }
    .beijing .wen p {
        font-size: 16px;
    }
}

/* FAQ相关样式 */
.faq-section {
    padding-top: 120px;
    background-color: #fff;
  }
  
  .faq-title{
    text-align: center;
    font-size: 56px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #000;
  }
  
  .faq-title span {
    color: #285A6E;
  }
  
  .faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px;
  }
  
  .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
    margin-bottom: 10px;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
  }
  
  .faq-arrow {
    transition: transform 0.3s ease-out;
  }
  
  .faq-question.active .faq-arrow {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding: 0 20px;
  }
  
  .faq-answer.active {
    max-height: 1000px;
    opacity: 1;
    padding: 0;
  }
  
  .faq-answer p {
    margin: 0;
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* 响应式适配 */
  @media (max-width: 1068px) {
    .faq-title {
      font-size: 48px;
    }
    .faq-container {
      width: 90%;
    }
  }
  
  @media (max-width: 734px) {
    .faq-section {
      padding-top: 50px;
      width: 95%;
      margin: 0 auto;
    }
    
    .faq-title {
      font-size: 32px;
      margin-bottom: 20px;
    }
  
    .faq-question {
      font-size: 21px;
      padding: 10px 0px;
    }
  
    .faq-answer {
      padding: 0 0px;
    }
  
    .faq-answer.active {
      padding: 0 0px 20px;
    }
  
    .faq-answer p {
      font-size: 17px;
    }
  }




  /* --------------------价格-------------------- */
.tab-content {
    background-color: #fff;
}

.title {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 10px;
}

.title h2 {
    font-size: 56px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding: 0 auto;
    margin-bottom: 10px;
    line-height: 125%;
}

.title h2 span {
    color: #027AFF;
}

.title img {
    width: 24px;
    height: 24px;
}

.title p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 21px;
}

.title p img {
    margin-top: 5px;
}


@media (max-width: 1068px) {


    .title h2 {
        font-size: 48px;
    }
}

@media (max-width: 734px) {
    .title {
        text-align: center;
        padding-top: 35px;
    }
    .title h2 {
        font-size: 32px;
    }
}



/* 价格卡片容器 */
.pricing-container {
  padding: 40px 0 0 0;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
  padding: 0;
}


/* 价格卡片样式 */
.pricing-card {
  background-color: #f5f5f7;
  border-radius: 15px;
  padding: 24px 24px 0px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: none;
  box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.02);
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* 最受欢迎卡片样式 */
.pricing-card.popular {
  position: relative;
}

.pricing-card.popular::before {
  content: '最受欢迎';
  position: absolute;
  top: 30px;
  right: 24px;
  background-color: #000000;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 15px;
}

.pricing-card.popular .pricing-card-header {
  padding-right: 90px;
}


/* 价格卡片头部 */
.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-card-header h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pricing-card-header p {
    color: #027AFF;
}

.plan-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

/* 价格样式 */
.price {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
}

.special-price {
  color: #027AFF;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.5em;
  font-weight: normal;
  margin-left: 10px;
  white-space: nowrap;
}


/* 计划特性 */
.plan-features {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  
  .feature-group {
    margin-bottom: 20px;
    margin-top: 5px;
  }
  
  .feature-group h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  
  .feature-group ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }
  
  .feature-group li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
  }
  
  .feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #027AFF;
  }
  
  
  @media (max-width: 1068px) {
      .pricing-grid {
          width: 90%;
          padding: 0;
          margin: 0 auto;
      }
      .title {
        padding-top: 100px;
      }
  }
  
  @media (max-width: 734px) {
    .title {
      padding-top: 80px;
    }
      .title h2 {
          margin-bottom: 20px;
      }
      .pricing-grid {
          width: 95%;
      }
      .pricing-container {
          padding: 0;
          width: 100%;
      }
  
      .pricing-card-header {
          margin-bottom: 0px;
      }
      .pricing-card-header h3 {
          margin-bottom: 0px;
      }
      .feature-group h4 {
          margin-bottom: 5px;
      }
      .feature-group li {
  
          margin-bottom: 0px;
      }
      .pricing-container {
          margin-bottom: 25px;
      }
  }
  
  /* --------------------表单部分样式-------------------- */
  .form-section {
    background-color: #fff;
    margin-top: 100px;
    margin-bottom: 50px;
  }
  @media (max-width: 73px) {
    .form-section {
      margin-top: 80px;
    }
  }

  .form-title {
    text-align: center;
    font-size: 48px;
    /* padding: 40px 0; */
    font-weight: 600;
    color: #000;
  }

  .form-wrapper {
    margin-top: 40px;
    width: 100%;
    height: 100vh;
    background: #fff;
  }

  .feishu-form {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* 响应式适配 */
  @media (max-width: 1068px) {
    .form-title {
        font-size: 36px;
        padding: 30px 0;
    }
  }

  @media (max-width: 734px) {
    .form-title {
        font-size: 28px;
        padding: 20px 0;
    }
  }


