.logo{
    width: 196px;
    height: 51px;
}
#menu{
    /* width: 40%; */
    /* margin-left: 72px; */
    margin-right: auto;
}
#menu li{
    /* width: 40px; */
    /* height: 28px; */
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;
    font-style: normal;
}
.use-btn{
    /* width: 136px;
    height: 48px; */
    border-radius: 24px;
    /* border: 2px solid; */
    background: linear-gradient(128deg, rgba(255, 71, 202, 1), rgba(123, 87, 255, 1));
}
.use-btn div{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    /* width: calc(100% - 4px);
    height: calc(100% - 4px); */
    /* margin: 2px; */
    background: black;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 20px; */
    color: #FF6DD0;
    /* line-height: 1; */
    text-align: center;
    font-style: normal;
}
.section2{
    display: flex;
    justify-content: center;
}
.section2 > .left{
    /* flex: 0 0 623px; */
}
.section2 > .right{
    margin-left: -321px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.section2 > .left > .img{
    width: 100%;
    height: auto;
}
.section2 > .right > .title-box > .title{
    width: 480px;
    /* height: 112px; */
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 80px; */
    color: #FFFFFF;
    /* line-height: 112px; */
    text-align: left;
    font-style: normal;
    position: relative;
    z-index: 5;
}
.section2 > .right > .title-box{
    position: relative;
}
.section2 > .right > .title-box > .step-icon{
    /* width: 56px;
    height: 56px; */
    position: absolute;
    left: -84px;
    top: 37px;
}
.section2 > .right > .title-box > .title-bg{
    width: 470px;
    height: 50%;
    position: absolute;
    left: -4px;
    /* bottom: 16px; */
}
.section2 > .right > .step-1-desc{
    margin-top: 19px;
    max-width: 538px;
    /* height: 150px; */
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 30px; */
    /* color: #FFFFFF; */
    /* line-height: 50px; */
    /* text-align: left; */
    font-style: normal;
}
.text > .title-box{
    position: relative;
}
.text > .title-box > .title{
    white-space: nowrap;
    /* min-width: 480px; */
    /* height: 112px; */
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 80px; */
    /* color: #FFFFFF; */
    /* line-height: 112px; */
    /* text-align: left; */
    font-style: normal;
    position: relative;
    z-index: 5;
}
.text > .title-box > .step-icon{
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    position: absolute;
    left: -64px;
    top: 37px;
}
.text > .title-box > .title-bg{
    width: 470px;
    /* height: 45px; */
    position: absolute;
    left: -4px;
    /* bottom: 16px; */
}
.text > .step-1-desc{
    margin-top: 19px;
    max-width: 538px;
    /* height: 150px; */
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 30px; */
    /* color: #FFFFFF; */
    /* line-height: 50px; */
    /* text-align: left; */
    font-style: normal;
}

.faqs-container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
  }

  .controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .control-btn {
    padding: 8px 16px;
    background-color: #17171f;
    border: 1px solid #2f2f37;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .faq-item {
    background: rgba(255,255,255,0.08);
    /* padding: 20px; */
    /* border: 1px solid #2f2f37; */
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .faq-question {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 16px; */
    cursor: pointer;
    /* background-color: #17171f; */
    /* transition: background-color 0.3s ease; */
    /* height: 40px; */
  }

  .faq-question span {
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    /* font-size: 20px; */
    color: rgba(255,255,255,0.9);
    /* line-height: 28px; */
    text-align: left;
    font-style: normal;
  }

  .faq-status {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .faq-status{
    @media (width >= 48rem) {
      right: 16px;
      width: 16px;
      height: 16px;
    }
  }

  .faq-status::before {
    content: '+';
    /* opacity: 0; */
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }

  .faq-status::after {
    content: '-';
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .faq-question:not(.active) .faq-status::before {
    opacity: 1;
    transform: translateY(0);
  }

  .faq-question:not(.active) .faq-status::after {
    /* opacity: 0; */
    transform: translateY(5px);
  }

  .faq-answer {
    margin-top: 16px;
    /* height: auto !important; */
    /* padding: 0 16px; */
    /* background-color: #121218; */
    overflow: hidden;
    transition: height 0.5s ease, padding 0.3s ease;
    line-height: 1.6;
    height: 0;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    /* font-size: 16px; */
    color: rgba(255,255,255,0.6);
    /* line-height: 24px; */
    text-align: left;
    font-style: normal;
  }

  .faq-answer.active {
    /* padding: 16px; */
    /* height: auto; 修复完全展开问题 */
  }

  .icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14l-6-6z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
    transform-origin: center;
    will-change: transform;
  }

  .icon.active {
    transform: rotate(180deg);
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 16l-6-6 1.41-1.41L12 13.17l4.59-4.58L18 10z"/></svg>');
  }

  .gradient-bg{
    background: linear-gradient( 90deg, #E786E7 0%, #E786E9 65%, #AA90F0 100%);
  }

  #main-content{
    background: url('../images/app/h5-content-bg.png');
    background-size: 100% 100%;
  }

  @media (min-width: 1280px) {
    #main-content{
      background: url('../images/app/pc-content-bg.png');
      background-size: 100% 100%;
    }
  }

  .bg-app{
    background: url('../images/app/app-bg.png');
    background-size: 100% 100%;
  }

  .bg-card-1{
    background: linear-gradient(135deg, rgba(75, 44, 122, 0.5), rgba(122, 55, 155, 0.5)); 
    border-radius: 24px;
  }

  .bg-card-2{
    background: linear-gradient(135deg, rgba(75, 44, 122, 0.5), rgba(122, 55, 155, 0.5)); 
    border-radius: 24px;
  }

  .bg-card-3{
    background: linear-gradient(135deg, rgba(44, 47, 59, 0.5), rgba(75, 58, 91, 0.5)); 
    border-radius: 24px;
  }

  .bg-card-4{
    background: linear-gradient(135deg, rgba(44, 59, 90, 0.5), rgba(75, 58, 123, 0.5)); 
    border-radius: 24px;
  }
  .md\:bg-unset {
    @media (width >= 48rem) {
      background: unset;
    }
  }
#panel-generate .gradient-bg > h3{
  color: white;
}