html {
  font-size: 37.5px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.page {
  width: 100%;
  background-color: #f5f7fb;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: 17.6rem;
  background-image: url(img/1183f339b3b44ac0a9e7d47555984969_mergeImage.png);
  background-size: cover;
  background-position: center;
  padding-top: 2.667rem;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 114, 0.2);
}

.banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 2.667rem;
}

.banner__title {
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 1.706rem;
  font-family: AlibabaPuHuiTi-Bold, sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
  margin-top: -3.1rem;
  margin-bottom: 0.853rem;
}

.banner__subtitle {
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 0.85333rem;
  font-family: AlibabaPuHuiTi-Regular, sans-serif;
  text-align: center;
  margin: 0;
}

/* Products */
.products {
  padding: 3.414rem 0;
  text-align: center;
  background-image: url('/assets/images/product/edge-box/bj.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.products__title {
  color: #1a1a1a;
  font-size: 1.493rem;
  font-family: AlibabaPuHuiTi-Bold, sans-serif;
  font-weight: 700;
  margin: 0 0 1.134rem 0;
}

.products__tabs {
  padding: 8px;
  display: inline-flex;
  box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 0.853rem;
  overflow: hidden;
}

.products__tab {
  padding: 0.24rem 0.667rem;
  font-size: 0.586rem;
  font-family: AlibabaPuHuiTi-Medium, sans-serif;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.48rem;
}

.products__tab--active {
  background: linear-gradient(180deg, #0070AB 0%, #003D72 100%);
  color: #fff;
}

.products__content {
  margin: 1.707rem 0;
}

.product-card {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-top: 1.707rem;
}

.product-card__icon {
  width: 29.227rem;
  height: 12.067rem;
  object-fit: contain;
}

.products__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.454rem;
  background-color: #f5f7fb;
  border-radius: 50px;
  padding: 0.48rem;
  max-width: 45.334rem;
  margin: 0 auto;
}

.products__list-item img {
  width: 1.067rem;
  height: 1.067rem;
  border: 2px solid #3f6dc0;
  border-radius: 50%;
  padding: 0.32rem;
  cursor: pointer;
}

.products__list-names {
  display: flex;
  align-items: flex-end;
  flex: 1;
  position: relative;
}

.products__divider {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
  padding: 0;
}

.products__divider-line {
  width: 0.05333rem;
  height: 0.32rem;
  background-color: #d0d0d0;
  transition: background-color 0.3s;
}

.products__divider.active-line .products__divider-line {
  background-color: #3f6dc0;
}

.products__list-name {
  color: #5a5a5a;
  font-size: 0.48rem;
  font-family: AlibabaPuHuiTi-Regular, sans-serif;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 0.53333rem;
}

.products__list-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.05333rem;
  height: 0.53333rem;
  background-color: #d0d0d0;
  transition: background-color 0.3s;
}

.products__list-name--active::after {
  background-color: #3f6dc0;
}

.products__list-name:hover {
  color: #3f6dc0;
}

.products__list-name--active {
  color: #3f6dc0;
}

/* 动画 */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 鼠标样式 */
.products__tab,
.products__list-name,
.product-card {
  cursor: pointer;
}
