/** ------------ 1 ---------------------- */
/** 1.首页: 的下拉箭头样式 */
/* <section class="faq py-16 px-4 bg-[#0c0c13]">
    <h2 class="text-3xl font-bold text-center mb-12">常见问题</h2>
    <div class="max-w-3xl mx-auto space-y-6">
        <details class="bg-white/5 rounded-xl p-6 hover:bg-white/10 transition-all duration-300">
            <summary class="text-xl font-semibold text-[#6344f5] cursor-pointer">如何下载Good Game游戏？</summary>
            <p class="text-gray-300 mt-2 leading-relaxed">您可以在Google Play或App Store中搜索“Good Game”进行下载。</p>
        </details>
        <details class="bg-white/5 rounded-xl p-6 hover:bg-white/10 transition-all duration-300">
            <summary class="text-xl font-semibold text-[#FF6B3D] cursor-pointer">订阅费用是多少？</summary>
            <p class="text-gray-300 mt-2 leading-relaxed">我们提供每月$9.99或每年$99.99的订阅计划，具体详情见应用内设置。</p>
        </details>
        <details class="bg-white/5 rounded-xl p-6 hover:bg-white/10 transition-all duration-300">
            <summary class="text-xl font-semibold text-[#FF3366] cursor-pointer">游戏支持离线模式吗？</summary>
            <p class="text-gray-300 mt-2 leading-relaxed">是的，您可以下载关卡内容，在离线模式下畅玩。</p>
        </details>
    </div>
</section> */
.arrow_down_button_parent_home {
  background-color: #18191e;
  border-radius: 8px; /* 所有角8px圆角 */
  
  width: 100%;
  border: none;
  transition: 0.4s;
  margin-top: 10px; /* 距离顶部 */
}

.arrow_down_button_home {
    /* background-color:  #18191e; rgb(255 255 255 / 0.05); */
    color: #D1D5DB; /* 这个标题的是文字颜色  9ea2ae*/
    cursor: pointer;
    width: 100%;
    padding: 16px;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: bold;

    display: flex; /* 使用 Flexbox 布局 */
    justify-content: space-between; /* 将内容和箭头分别放置在两侧 */
    align-items: center; /* 纵向在中间 */
  }
  
  .arrow_down_button_home_active, .arrow_down_button_home:hover {
    background-color: #25252a; /* rgb(255 255 255 / 0.10); */
    border-radius: 8px; /* 所有角8px圆角 */
  }
  
  /* 标题部分 button标签 */
  .arrow_down_panel_home {
    padding: 0 0px;
    /* background-color: rgb(255 255 255 / 0.05); */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  /* 描述  p标签 */
  .arrow_down_panel_text_home {
    /* background-color: #18191e; */
    color: #aeb6c5; /*   4e5055  */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .arrow_down_arrow_home {
    width: 8px; /* 设置箭头宽度 */
    height: 8px; /* 设置箭头高度 */
    border: solid #D1D5DB; /* 设置箭头颜色 */
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out; /* 设置动画速度 */
}

.arrow_down_arrow_home.active {
  transform: rotate(-135deg); /* 设置展开状态的旋转角度 */
}


/** ------------ 2 ---------------------- */