/* FAQ */
.tabs{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* 启用弹性滚动 */
    scrollbar-width: none; /* 隐藏 Firefox 滚动条 */
    width: 100%;
    margin: 50px auto !important;
}
.tabs .tab{
    font-family: Rubik Bolder;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #333333;
    padding: 8px 12px;
    border: 1px solid #D6D6D6;
    margin-right: 17px;
    border-radius: 4px;
    white-space: nowrap; /* 防止文字换行 */
    cursor: pointer;
}
.tabs .tab.active{
    border: 1px solid #002E6C;
    background: #002E6C;
    color: #FCFCFC;
}
.faq{
  margin-bottom: 50px !important;
} 
.faq .title{
    font-family: Rubik Regular;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    color: #002E6C;
    margin-bottom: 50px;
  }
  .faq .faq_content{
    border-bottom: 1px solid #D8E0E0;
    padding: 26px 0;
  }
  .faq .faq_contents .que_title{
    font-family: Rubik Regular;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;    
    color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 10px;*/
    cursor: pointer;
  }
  .faq .faq_content .que_title .fold_icon{
    background-image: url("/uiFramework/commonResource/image/2025061322384023202.svg");
    width:32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat; 
    flex-shrink: 0;
  }
  .faq .faq_content .que_title .fold_icon.expanded{
    transform: rotate(180deg); 
  }
  .faq .faq_content .que_answer{
    font-family: Rubik Regular;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #333333;
    display: none;
     /*margin-bottom: 26px;*/
  } 
  .faq .faq_content .que_answer ul li{
    font-family: Rubik Regular;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #333333;
    list-style: disc !important;
  }
  .faq .faq_content .que_answer a{
    font-family: Rubik Regular;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #0078FF;
  }
  .faq .faq_content .que_answer.show{
    display: block;
  }
  .faq .show_more{
    font-family: Rubik Bolder;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #00B9F2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
    display: none;
  }
  .faq .show_more .more_fold_icon{
    background-image: url("/uiFramework/commonResource/image/2025041614250475722.png");
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat; 
    margin-left: 10px;
  }
  @media (max-width: 953px) {
    .tabs{
        margin: 16px auto !important;
    }
    .faq{
      margin-bottom: 24px !important;
    }
    .faq .faq_content img{
       width:100%
    }
    .faq .faq_contents .que_title {
        font-size: 14px;
        line-height: 20px;
        margin-top: 0px;
        padding-top: 16px;
    }
    .faq .faq_content .que_answer {
        font-size: 12px;
        line-height: 18px;
    }
    .faq .faq_content{
      padding: 0;
    }
  }