.section-2 {
  /* width: 100%;
  max-width: 19.2rem; */
  margin: 0 auto;
  overflow-x: hidden;
  /* height: 7.59rem; */
  background-image: url("../image/top-2.png"), url("../image/top-2-1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  padding: 0.64rem 2.6rem 0.68rem 6.8rem;
}
.section-2 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-2 .top .title-1 {
  font-size: 0.48rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 主要文字 */
  color: #222222;
}
.section-2 .top .title-2 {
  font-size: 0.24rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0em;
  /* font-variation-settings: "opsz" auto; */
  margin-top: 0.12rem;
  /* 辅助文字色 */
  color: #61646f;
}
.section-2 .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem;
  margin-top: 0.42rem;
}
.section-2 .bottom .bottom-item {
  height: 1.9rem;
  background: #ffffff;
  border-radius: 0.04rem;
  padding: 0.22rem 0.23rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.04rem 0.1rem 0 rgba(0, 0, 0, 0.05);
}

.section-2 .bottom .bottom-item .item-header {
  display: flex;
  /* align-items: center; */
  gap: 0.12rem;
  margin-bottom: 0.04rem;
}

.section-2 .bottom .bottom-item .item-header img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
}

.section-2 .bottom .bottom-item .item-header .item-title {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #3662ec;
}

.section-2 .bottom .bottom-item .item-subtitle {
  margin: 0 0 0.1rem 0.44rem; /* 0.32rem icon width + 0.12rem gap = 0.44rem offset */
  font-size: 0.16rem;
  font-weight: normal;
  line-height: normal;
  /* 主要文字 */
  color: #222222;
}

.section-2 .bottom .bottom-item .item-desc {
  margin: 0 0 0 0.44rem; /* 0.32rem icon width + 0.12rem gap = 0.44rem offset */
  font-size: 0.14rem;
  font-weight: normal;
  line-height: normal;
  /* 辅助文字色 */
  color: #61646f;
}
.section-2 .bottom .bottom-btn {
  margin-top: 0.2rem;
}
.section-2 .bottom-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.28rem;
  cursor: pointer;
}
.section-2 .bottom-btn .hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem; /* 添加间距让文字和图标不贴在一起 */
  position: relative;
  overflow: hidden;
  width: 2.41rem;
  height: 0.54rem;
  border-radius: 0.04rem;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    filter 0.3s ease;
}
.section-2 .bottom-btn .hero-action span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
.section-2 .bottom-btn .hero-action img {
  display: block;
  flex-shrink: 0;
}
.section-2 .bottom-btn .hero-action::after {
  content: "";
  position: absolute;
  top: 0;
  left: -42%;
  width: 36%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.42s ease;
}
.section-2 .bottom-btn .hero-action-primary {
  background: linear-gradient(270deg, #0182ff 0%, #006eff 100%);
  box-shadow: inset 0 0 0.03rem 0 rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0em;
}

/* 按钮底部发光特效 */
.section-2 .bottom-btn .hero-action-primary::before {
  content: "";
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url("../image/btn-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  mix-blend-mode: screen; /* 让光效更好地融入蓝色背景 */
}

/* 确保文字和图标在光效上方 */
.section-2 .bottom-btn .hero-action-primary span,
.section-2 .bottom-btn .hero-action-primary img {
  position: relative;
  z-index: 1;
}
.section-2 .bottom-btn .hero-action:hover {
  transform: translateY(-0.04rem) scale(1.02);
}
.section-2 .bottom-btn .hero-action:hover::after {
  left: 118%;
}
.section-2 .bottom-btn .hero-action-primary:hover {
  background: linear-gradient(270deg, #1791ff 0%, #1677ff 100%);
  box-shadow:
    0 0.18rem 0.36rem rgba(20, 103, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.04);
}
.section-2 .bottom-btn .hero-action:active {
  transform: translateY(-1px) scale(0.99);
}
.section-2 .bottom-btn .item-desc {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: normal;
  color: #3662ec;
  margin-left: 0.21rem;
}
.item-desc {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: normal;
  color: #3662ec;
  margin-left: 0.21rem;
}
