@charset "UTF-8";
html,
body {
  background: #ffffff;
}

.quertions {
  padding: 160px 0px;
  /* 内容区域样式 */
}
.quertions .tab {
  display: flex;
  align-items: center;
  gap: 64px;
}
.quertions .tab .tab_item {
  display: flex;
  padding: 32px 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.0784313725);
  color: #999999;
  text-align: center;
  font-family: "Roboto";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.quertions .tab .tab_item img {
  height: 46px;
}
.quertions .tab .active {
  border: 2px solid #f4ae00;
  background: #fff5dd;
  color: #333333;
}
.quertions .tab_content .tab_pane {
  display: none;
}
.quertions .tab_content .tab_pane h3 {
  font-family: "Roboto";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  background: linear-gradient(90deg, #f4ae00 0%, #ff5d23 77.65%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparen;
  margin: 80px 0px 40px 0px;
}
.quertions .tab_content .tab_pane li {
  padding: 38px 42px;
  border-radius: 16px;
  border: 2px solid #d1cfcf;
  color: #333333;
  font-family: "Roboto";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 40px;
}
.quertions .tab_content .tab_pane li .titleText {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quertions .tab_content .tab_pane li .titleText img {
  height: 48px;
  transition: transform 0.3s ease-in-out; /* 默认状态下也要有过渡效果 */
}
.quertions .tab_content .tab_pane li .titleText .rotate {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out; /* 添加平滑过渡效果 */
}
.quertions .tab_content .tab_pane li .subtitle {
  padding-top: 27px;
  border-top: 2px solid #dddddd;
  margin-top: 28px;
  color: #666666;
  font-family: "Roboto";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  display: none;
}
.quertions .tab_content .active {
  display: block;
}

.shadow-bottom {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.0588235294));
  position: fixed;
  width: 100%;
}/*# sourceMappingURL=helpCenter.css.map */