@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
/* custom */
a {
  outline: none;
  color: #16418a;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}

a {
  text-decoration: none;
}
body {
  overscroll-behavior: none; /* 禁用弹性滚动效果 */
}
.guide-container {
  height: 100%;
  width: 100%;
  background: url("../images/guide_bg_3x.png") no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}
.guide-banner {
  width: 100%;
  padding-top: 16px;
}
.guide-banner img {
  width: 100%;
}
.guide-header-tab {
  margin: 0 12px;
  height: 43px;
  border-radius: 6.67px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-around;
}
.guide-tab-link {
  font-size: 18px;
  line-height: 43px;
  font-weight: 500;
  color: #566176;
  position: relative;
  z-index: 1;
}
.guide-tab-link.active {
  color: #000000;
}
.active::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 100%; /* 色块的宽度 */
  height: 9px; /* 色块的高度 */
  background-color: #ffe254; /* 色块的颜色 */
  z-index: -1;
}

.guide-content {
  box-sizing: border-box;
  padding: 0 12px 10px;
}
.guide-tab-content {
  background-color: #ffffff;
  border-radius: 6.67px;
  box-sizing: border-box;
  margin-top: 10px;
  display: none;
}
.guide-tab-content.active {
  display: block;
}

.guide-against-text {
  position: relative;
  padding-left: 15px;
}

.guide-against-tip {
  position: absolute;
  background: url("../images/guide_tip_3x.png") no-repeat;
  background-size: cover;
  width: 42px;
  height: 25px;
  top: -11px;
}
.guide-title {
  padding: 12px;
}
.guide-title img {
  width: 100%;
}
.guide-box {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  justify-content: space-between;
}
.guide-rese-title {
  position: relative;
  font-size: 20px;
  height: 27px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 10px;
}
.guide-rese-box {
  padding: 15px 10px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.guide-rese-box img {
  width: 100%;
  padding: 20px;
}
.guide_waring {
  color: red;
}
.rese-img-box {
  box-sizing: border-box;
}
.guide-collapse {
  padding: 0 20px 20px;
}
.guide-wave-tip {
  position: relative;
}
.guide-wave {
  position: absolute;
  background: url("../images/guide_wave_3x.png") no-repeat;
  background-size: cover;
  width: 19px;
  height: 30px;
}
.guide-fingerprint {
  position: absolute;
  background: url("../images/guide_fingerprint_3x.png") no-repeat;
  background-size: cover;
  width: 37px;
  height: 62px;
  right: -21px;
}
.h30 {
  height: 30px;
}
.h62 {
  height: 62px;
}
.top-2 {
  top: 2px;
}
.to-right {
  right: -20px;
}
.bottom-2 {
  bottom: 2px;
}
.bottom-36 {
  bottom: 36px;
}
.to-left {
  left: -20px;
}

.collapse-item:first-child {
  border-top: 1px solid #ebeef5;
}

.collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  border: none;
  height: 48px;
  line-height: 24px;
  background-color: #ffffff;
  color: #303133;
  cursor: pointer;
  border-bottom: 1px solid #ebeef5;
  font-size: 13px;
  font-weight: 500;
  transition: border-bottom-color 0.3s;
  outline: none;
  word-wrap: break-word; /* 允许在单词内换行 */
  overflow-wrap: break-word; /* 同上，现代浏览器推荐使用 */
  white-space: normal; /* 允许换行 */
}

.collapse-body {
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  font-size: 13px;
  color: #303133;
  line-height: 1.7692307692;
}

.arrow {
  width: 16px;
  height: 16px;
  background-size: cover;
  background: url("../images/arrow_down.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  margin: 10px;
  display: inline-block;
}

.collapse-header.active {
  border-bottom-color: transparent;
}

.collapse-header.active .arrow {
  width: 16px;
  height: 16px;
  background-size: cover;
  background: url("../images/arrow_up.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  margin: 10px;
  display: inline-block;
}

/* 激活状态下的 body */
.collapse-item.active .collapse-body {
  max-height: 500px; /* 或者根据内容自适应 */
}
