* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    Source Han Sans,
    Source Han Sans;
  background: linear-gradient(135deg, #f0f4fa 0%, #e2e8f0 100%);
  min-height: 100vh;
 
  /* font-size: 16px; */
}

body.modal-open {
  overflow: hidden;
}
/* 定义根基准值：100vw = 750rpx，所以 1rpx = (100/750)vw = 0.13333vw */
:root {
  --page-bg: #f2f2f2;
  --surface: #ffffff;
  --text: #34363d;
  --muted: #b4b6bc;
  --line: rgba(37, 42, 53, 0.1);
  --shadow: 0 0.16rem 0.34rem rgba(17, 35, 74, 0.1);
  --radius-lg: 0.04rem;
  --radius-xl: 0.08rem;
  --content: calc(100% - 0.6rem);
  --bottom-bar-gap: 0.12rem;
  --orange-start: #fb950d;
  --orange-end: #e25b17;
}

.page {
  position: relative;
   width: 10rem !important;
  max-width: 7.5rem;
  margin: 0 auto;
  min-height: 100vh;
  overflow: visible;
}

.line {
  margin: 0.3rem 0;
  border: 0.01rem dashed #c6c4c4;
}

.changeCN {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.changeTw {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.elHidden {
  visibility: hidden !important;
  display: hidden !important;
  height: 0 !important;
  margin: 0 !important;
}

* nav */ .nav {
  height: 0.88rem;
  background: #1e1d1d;
  display: flex;
  justify-content: space-between;
  padding: 0.14rem 0.3rem;
}

.navSticky {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.18rem;
  padding: 0.18rem 0.26rem;
  background: rgba(31, 31, 32, 0.98);
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.18);
}

.nav_left {
  display: flex;
  align-items: center;
}

.nav_left_logo {
  width: 1.78rem;
  height: 0.64rem;
}

.nav_left_title {
  margin-left: 0.12rem;
  font-weight: 700;
  font-size: 0.33rem;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.nav_right {
  display: flex;
  align-items: center;
}

.nav_right div {
  width: 1.12rem;
  height: 0.48rem;
  line-height: 0.48rem;
  border-radius: 0.24rem;
  background: #454545;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.28rem;
}

.nav_right_CN {
  margin-right: 0.2rem;
}

.nav_right .active {
  color: #fbe02b;
}

/* section */

.section {
  position: relative;
  width: 7.5rem;
  height: 9.69rem;
}

.sectionBgCN,
.sectionBgTW {
  height: 9.69rem;
  width: 7.5rem;
}

.sectionTextCN,
.sectionTextTW {
  height: 3.92rem;
  width: 3.46rem;
  /* 关键：以底部中心为支点 */
  transform-origin: bottom center;
  /* 摇摆动画 */
  animation: swayTop 1.6s ease-in-out infinite;
}

#sectionTitle {
  width: 6.59rem;
  height: 0.86rem;
  position: absolute;
  top: 0.53rem;
  left: 0.57rem;
  z-index: 34;
  /* 关键：以底部中心为支点 */
  transform-origin: bottom center;
  /* 摇摆动画 */
  animation: swayTop 1.6s ease-in-out infinite;
}

.sectionBgCN {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.sectionBgTW {
  position: absolute;
  top: 0;
  left: 0;
}

.sectionTextCN {
  position: absolute;
  top: 4.41rem;
  left: 0.27rem;
  z-index: 11;
}

.mainbg {
  background: #5eb4e6;
  margin-top: -0.8rem;
  padding-bottom: 0.001rem;
}

/* form */

.form-card {
  position: relative;
  z-index: 20;
  width: 6.9rem;
  height: 12.24rem;
  margin: 0 auto;
  padding: 0 0.24rem 0.32rem 0.24rem;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  background: #fff;
  box-shadow: 0 0.18rem 0.4rem rgba(26, 41, 78, 0.15);
}

.form-card__title {
  width: 5.48rem;
  height: 0.8rem;
  line-height: 0.8rem;
  margin: 0 auto 0.44rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  /* background: linear-gradient(90deg, #ffb941 0%, #ff8324 100%); */
  background-image: url(./img/formHeader.avif);
  border-radius: 0rem 0rem 0.48rem 0.48rem;
}

.quote-modal-title {
  width: 3.59rem;
  height: 0.46rem;
  margin: 0.4rem auto 0.47rem;
  background-size: 3.59rem 0.2rem !important;
}

.section-title.image-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 0.49rem;
  margin: 0 auto;
}

.field {
  position: relative;
}

.field__box {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  min-height: 0.88rem;
  padding: 0 0.18rem;
  border-radius: 0.08rem;
  background: #f3f4f7;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.field__label {
  flex: 0 0 auto;
  font-size: 0.28rem;
  font-weight: 400;
  color: #3d3d3d;
  line-height: 1.2;
  white-space: nowrap;
}

.field input,
.field select,
.field textarea {
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 0.84rem;
  padding: 0;
  color: #474b52;
  font-size: 0.28rem;
  font-weight: 500;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field textarea {
  min-height: 0.88rem;
  padding-top: 0.22rem;
  padding-bottom: 0.22rem;
  resize: none;
  /* line-height: 1.5; */
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999999;
  font-weight: 400;
}

.field__box:focus-within {
  outline: none;
  box-shadow: 0 0 0 0.03rem rgba(255, 149, 44, 0.18);
  transform: translateY(-0.01rem);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
}

.field--select::after {
  content: "";
  position: absolute;
  right: 0.18rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 0.07rem solid transparent;
  border-right: 0.07rem solid transparent;
  border-top: 0.09rem solid #c9c9c9;
  transform: translateY(-20%);
  pointer-events: none;
}

.field--select .field__label {
  padding-right: 0.02rem;
}

.field__trigger {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0.88rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #474b52;
  font-size: 0.28rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.field__trigger:focus {
  outline: none;
}

.field__trigger.is-placeholder {
  color: #999;
  font-weight: 400;
}

.quote-form {
  display: grid;
  gap: 0.24rem;
}

.quote-form__row {
  display: grid;
  gap: 0.14rem;
}

.quote-form__row--two {
  grid-template-columns: 1.2fr 1fr;
}

.quote-form__contact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.12rem;
  padding-top: 0.06rem;
}

.quote-form__contact-label {
  color: #484848;
  font-size: 0.28rem;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 0.16rem;
}

.quote-form__contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.23rem;
}

.contact-chip {
  min-width: 0.74rem;
  min-height: 0.72rem;
  padding: 0 0.08rem;
  border: 0.01rem solid #d7d7d7;
  border-radius: 0.08rem;
  background: #fff;
  color: #525252;
  font-size: 0.28rem;
  font-weight: 500;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-chip:hover {
  border-color: rgba(242, 136, 26, 0.7);
}

.contact-chip.is-active {
  border-color: #2577e3;
  background: #fff;
  color: #2577e3;
  box-shadow: inset 0 0 0 0.01rem rgba(241, 154, 40, 0.08);
}

.contact-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.03rem rgba(255, 149, 44, 0.18);
}

.serve_box {
  height: 0.41rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 700;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0.06rem 0 0.24rem 0;
}

.serve_box_content,
.serve_box_content1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.23rem;
}

.serve_box_content div,
.serve_box_content1 div {
  flex: 0 0 auto;
  height: 0.68rem;
  width: fit-content;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  border: 0.01rem solid #d4d4d4;
  padding: 0.14rem 0.1rem 0.13rem 0.2rem;
  border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
}

.serve_box_content div&.active {
  color: #2577e3;
  border: 0.01rem solid #007cf6;
}

.form_desc {
  text-align: center;
  height: 0.41rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #676767;
  line-height: 0.41rem;
  font-style: normal;
  text-transform: none;
}

.cta-button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 5.8rem;
  height: 0.96rem;
  margin: 0.12rem auto 0;
  padding: 0;
  border: 0;
  border-radius: 9.99rem;
  background: transparent;
  box-shadow: 0 0.12rem 0.24rem rgba(235, 116, 14, 0.22);
  isolation: isolate;
  /* 关键：无限循环缩放动画 */
  animation: expandContract 2.4s ease-in-out infinite;
  will-change: transform;
}

#hot-card-btn,
#license-open {
  /* 关键：无限循环缩放动画 */
  animation: expandContract 2.4s ease-in-out infinite;
  will-change: transform;
}

#hot-card-btn {
  width: 2.8rem;
  height: 0.72rem;
  display: flex;
}

.cta-button_text {
  position: absolute;
  top: 0.25rem;
  left: 1.31rem;
  font-weight: 700;
  font-size: 0.32rem;
  color: #483b3b;
  font-style: normal;
  text-transform: none;
  z-index: 2;
}

.cta-button[disabled] {
  opacity: 0.72;
  cursor: wait;
}
/* .cta-button::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -52%;
  width: 46%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 22%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.12) 78%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-20deg);
  animation: cta-shine 1.2s linear infinite;
  z-index: 2;
  pointer-events: none;
  filter: blur(0.015rem);
} */

.cta-button__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes cta-shine {
  0%,
  16.6667% {
    transform: translateX(-180%) skewX(-20deg);
  }

  83.3333% {
    transform: translateX(420%) skewX(-20deg);
  }

  100% {
    transform: translateX(420%) skewX(-20deg);
  }
}

/* proble, */
.problem-card {
  width: 6.9rem;
  height: 12.6rem;
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto;
  padding: 0 0.3rem;
  position: relative;
}

.problem-card img {
  width: 6.9rem;
  height: 12.6rem;
  position: absolute;
  top: 0;
  left: 0;
}

.problem-card_title {
  width: 6.2rem;
  height: 0.8rem;
  line-height: 0.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  border-radius: 0rem 0rem 0.48rem 0.48rem;
}

/* guarantee */
.guarantee-card {
  width: 6.9rem;
  height: 26.92rem;
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto;
  padding: 0 0.3rem;
  position: relative;
}

.guarantee-card img {
  width: 6.9rem;
  height: 26.92rem;
  position: absolute;
  top: 0;
  left: 0;
}

.guarantee-card_title {
  width: 6.2rem;
  height: 0.8rem;
  line-height: 0.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  border-radius: 0rem 0rem 0.48rem 0.48rem;
}

/* 日本全境覆盖 japan */

.japan-card {
  width: 6.9rem;
  height: 9.76rem;

  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto 0;
  padding: 0 0.25rem 0.41rem 0.25rem;
  /* overflow: hidden; */
  position: relative;
}

.japan-card img {
  width: 6.9rem;
  height: 9.76rem;
  position: absolute;
  top: 0;
  left: 0;
}

.japan-card_title {
  width: 5.72rem;
  height: 0.8rem;
  margin: 0 auto;
}

/* 全球华人真实评价 */

.evaluation-card {
  width: 6.9rem;
  height: 16.04rem;
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto 0;
  padding: 0 0.25rem 0.4rem 0.25rem;
}

.evaluation-card_title {
  width: 3.72rem;
  height: 0.8rem;
  background: linear-gradient(90deg, #2c61f3 0%, #4cbbff 100%);
  border-radius: 0rem 0rem 0.48rem 0.48rem;
  line-height: 0.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.evaluation-card-item {
  width: 6.4rem;
  height: 3.78rem;
  background: #f5f5f5;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  padding: 0.27rem 0.15rem 0.24rem 0.22rem;
  margin-bottom: 0.24rem;
}

.evaluation-card-item1 {
  height: 3.34rem;
}

.evaluation-card-item-top {
  display: flex;
}

.evaluation-card-item-top-peopleLogo {
  width: 0.88rem;
  height: 0.88rem;
  margin-right: 0.2rem;
}

.evaluation-card-item-top-left-people {
  width: 0.89rem;
  height: 0.49rem;
  font-weight: 700;
  font-size: 0.28rem;
  color: #242424;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.evaluation-card-item-top-left-location {
  display: flex;
  margin-top: 0.04rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #9a9a9a;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

/* .evaluation-card-item-top-left-location img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.07rem;
}

.evaluation-card-item-top-left-location div {
  font-weight: 400;
  font-size: 0.24rem;
  color: #646464;
  text-align: left;
  font-style: normal;
  text-transform: none;
} */

.evaluation-card-item-top-right {
  margin-left: auto;
  width: 1.51rem;
  height: 0.48rem;
  background: #ffffff;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  border: 0.01rem solid #0ebccb;
  color: #0ebccb;
  font-weight: 400;
  font-size: 0.24rem;
  line-height: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.evaluation-card-item-top-right img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.1rem;
}

.evaluation-card-item-bottom {
  width: 5.87rem;
  height: 2.11rem;

  font-weight: 400;
  font-size: 0.28rem;
  color: #242424;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 0.28rem;
  margin-left: 0.11rem;
}

/* 常见问题 */
.question-card {
  width: 6.9rem;
  /* height: 8rem; */
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto 0;
  padding: 0 0.14rem 0.32rem 0.27rem;
  /* overflow: hidden; */
}

.question-card_title {
  width: fit-content;
  height: 0.8rem;
  background: linear-gradient(90deg, #2c61f3 0%, #4cbbff 100%);
  border-radius: 0rem 0rem 0.48rem 0.48rem;
  line-height: 0.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  padding: 0 0.15rem;
}

.question-card_title span {
  width: 2.52rem;
  height: 0.41rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #ffffff;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.question-card-item-q {
  display: flex;
  margin-bottom: 0.16rem;
}

.question-card-item-q img {
  width: 0.58rem;
  height: 0.44rem;
}

.question-card-item-q div {
  width: 5.26rem;
  height: 0.48rem;
  font-weight: 700;
  font-size: 0.28rem;
  color: #242424;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.question-card-item-a {
  display: flex;
}

.question-card-item-a img {
  width: 0.58rem;
  height: 0.44rem;
}

.question-card-item-a div {
  width: 5.81rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #242424;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.question-card-item-active {
  width: 6.9rem;
}

.question-card-open {
  width: 1.48rem;
  height: 0.52rem;
  border-radius: 0.26rem 0.26rem 0.26rem 0.26rem;
  border: 0.01rem solid #0086f7;
  display: flex;
  margin: 0.25rem auto;
  justify-content: center;
  align-items: center;
}

.question-card-open div {
  width: 0.56rem;
  height: 0.43rem;
  font-weight: 400;
  font-size: 0.26rem;
  color: #0086f7;
  line-height: 0.38rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.question-card-open img {
  width: 0.2rem;
  height: 0.2rem;
  margin-left: 0.06rem;
}

/* 关于我们 */
.about-card {
  width: 6.9rem;
  /* height: 6.14rem; */
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  margin: 0.44rem auto;
  padding: 0 0.37rem 0.32rem 0.4rem;
  /* overflow: hidden; */
}

.about-card_title {
  width: 2rem;
  height: 0.8rem;
  background: linear-gradient(90deg, #2c61f3 0%, #4cbbff 100%);
  border-radius: 0rem 0rem 0.48rem 0.48rem;
  line-height: 0.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.about-card-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.23rem;
}

.about-card-logo img {
  width: 2.18rem;
  height: 0.77rem;
}

.about-card-logo div {
  width: fit-content;
  padding: 0 0.13rem;
  height: 0.6rem;
  background: #e3edf7;
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
  border: 0.01rem solid #0a66c8;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #0a66c8;
  line-height: 0.6rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.about-card-item {
  display: flex;
  margin-bottom: 0.13rem;
  width: 6.4rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #242424;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.about-card-open {
  width: 1.48rem;
  height: 0.52rem;
  border-radius: 0.26rem 0.26rem 0.26rem 0.26rem;
  border: 0.01rem solid #0086f7;
  display: flex;
  margin: 0.28rem auto;
  justify-content: center;
  align-items: center;
}

.about-card-open div {
  width: 0.56rem;
  height: 0.43rem;
  font-weight: 400;
  font-size: 0.26rem;
  color: #0086f7;
  line-height: 0.38rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.about-card-open img {
  width: 0.2rem;
  height: 0.2rem;
  margin-left: 0.06rem;
}

/* 享包车出行 */
.chartered-card {
  width: 6.9rem;
  height: 9.36rem;
  margin: 0.36rem auto;
  position: relative;
}

.chartered-card-CN {
  width: 6.9rem;
  height: 9.36rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.chartered-card-TW {
  width: 6.9rem;
  height: 9.36rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.chartered-card-btn {
  position: absolute;
  left: 0.63rem;
  bottom: 0.62rem;
  z-index: 12;
}

/* 服务条款 */
.serve-card {
  padding-bottom: 1.26rem;
  background: #2d2b2b;
}

.serve-card-top {
  width: 7.5rem;
  height: 3.07rem;
  background: #2d2b2b;
  border-radius: 0rem;
  overflow: hidden;
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
}

.serve-card-top-one {
  width: 5.73rem;
  height: 0.48rem;
  text-align: center;
  font-weight: 400;
  font-size: 0.28rem;
  color: #ffffff;
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0.3rem auto 0;
  display: flex;
  justify-content: center;
}

.serve-card-top-two {
  width: 5.1rem;
  height: 0.96rem;
  text-align: center;
  font-weight: 400;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0.2rem auto 0;
}

.serve-card-top-three {
  width: fit-content;
  height: 0.48rem;
  text-align: center;
  font-weight: 400;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0.27rem auto 0;
}

.serve-card-top-four {
  width: 5.1rem;
  height: 0.48rem;
  text-align: center;
  font-weight: 400;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0rem auto 0;
}

.serve-card-bottom {
  width: 7.5rem;
  height: 0.66rem;
  line-height: 0.66rem;
  border-radius: 0rem;
  text-align: center;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.24rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.line2 {
  width: 6.75rem;
  margin: 0rem auto;
  border: 0.01rem dashed #c6c4c4;
}

/* 选择人数 */
.select-modal {
  position: fixed;
  inset: 0;
  z-index: 59;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  background: rgba(34, 39, 48, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.select-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.select-modal__dialog {
  position: relative;
  width: min(100%, 4.8rem);
}

.select-modal__card {
  width: 100%;
  padding: 0.26rem 0.28rem 0.12rem;
  border-radius: 0.12rem;
  background: #fff;
  box-shadow: 0 0.18rem 0.34rem rgba(0, 0, 0, 0.16);
}

.select-modal__close {
  position: absolute;
  right: 0;
  top: -0.6rem;
  z-index: 2;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}

.select-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.select-modal__title {
  width: 1.68rem;
  margin: 0 auto 0.22rem;
  line-height: 0;
}

.select-modal__title img {
  display: block;
  width: 100%;
  height: auto;
}

.select-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.select-modal__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.16rem;
  padding: 0.22rem 0;
  border: 0;
  border-bottom: 0.01rem solid rgba(67, 71, 78, 0.16);
  background: transparent;
  color: #4a4f56;
  font-size: 0.28rem;
  line-height: 1.4;
  text-align: left;
}

.select-modal__item:last-child {
  border-bottom: 0;
}

.select-modal__item img {
  width: 0.36rem;
  height: 0.36rem;
  flex-shrink: 0;
}

/* 隐私政策 */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 57;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  background: rgba(34, 39, 48, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.privacy-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal__dialog {
  position: relative;
  width: min(100%, 6.9rem);
}

.privacy-modal__card {
  width: 100%;
  height: min(10.6rem, calc(100vh - 0.4rem));
  padding: 0.3rem;
  border-radius: 0.04rem;
  background: #fff;
  box-shadow: 0 0.18rem 0.34rem rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.privacy-modal__close {
  position: absolute;
  right: 0;
  top: -0.6rem;
  z-index: 2;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}

.privacy-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.privacy-modal__title {
  width: fit-content;
  height: 0.58rem;
  font-weight: 700;
  font-size: 0.4rem;
  color: #3d3d3d;
  line-height: 0.58rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0.39rem 1.73rem 0.24rem 2.19rem;
  background-image: url(./img/textbg.avif);
  background-size: 1.98rem 0.2rem;
  background-position: bottom;
  background-repeat: no-repeat;
  /* margin: 0 auto 0.28rem; */
  /* line-height: 0; */
}

.privacy-modal__title img {
  display: block;
  width: 100%;
  height: 0.58rem;
}

.privacy-modal__body {
  height: calc(100% - 0.86rem);
  overflow-y: auto;
  padding-right: 0.04rem;
  color: #4f535a;
}

.privacy-modal__body p,
.privacy-modal__body li {
  font-size: 0.28rem;
  line-height: 0.4rem;
}

.privacy-modal__body p {
  margin: 0 0 0.12rem;
}

.privacy-modal__body h3 {
  margin: 0.18rem 0 0.08rem;
  color: #43474e;
  font-size: 0.28rem;
  line-height: 0.4rem;
  font-weight: 800;
}

.privacy-modal__body ol,
.privacy-modal__body ul {
  margin: 0 0 0.12rem 0.32rem;
  padding: 0;
}

.privacy-modal__body li {
  margin-bottom: 0.08rem;
}

.contact-modal__list {
  display: grid;
  gap: 0;
}

#contact-modal .privacy-modal__card {
  height: 4.15rem;
  padding: 0.24rem 0.24rem 0.2rem;
}

#contact-modal .privacy-modal__title {
  margin-bottom: 0.18rem;
}

#contact-modal .privacy-modal__body {
  height: auto;
  overflow: visible;
  padding-right: 0;
}

.contact-modal__item {
  padding: 0.2rem 0;
  border-bottom: 0.01rem solid rgba(67, 71, 78, 0.14);
}

#contact-modal .contact-modal__item {
  display: flex;
  align-items: center;
  min-height: 0.85rem;
  padding: 0;
}

.contact-modal__item:first-child {
  padding-top: 0;
}

.contact-modal__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-modal__label,
.contact-modal__value {
  font-size: 0.28rem;
  line-height: 0.4rem;
}

.contact-modal__label {
  display: inline;
  color: #3e434a;
  font-weight: 800;
}

.contact-modal__value {
  display: inline;
  color: #4f535a;
  font-weight: 500;
}
/* 消息提示 */
.toast {
  position: fixed;
  left: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 0.32rem), 4.2rem);
  padding: 0.14rem 0.16rem;
  border-radius: 0.12rem;
  background: rgba(31, 35, 44, 0.94);
  color: #fff;
  font-size: 0.28rem;
  line-height: 1.6;
  box-shadow: 0 0.16rem 0.3rem rgba(18, 22, 29, 0.26);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 80;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* 提交成功 */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 0.16rem;
  background: rgba(75, 75, 75, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.success-modal__card {
  position: relative;
  width: 6.3rem;
  height: 6.3rem;
  /* width: min(100%, 6.9rem); */
  /* padding: 0.42rem 0.24rem 0.36rem; */
  border-radius: 0.04rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 0.18rem 0.34rem rgba(0, 0, 0, 0.16);
}

.success-modal__close {
  position: absolute;
  right: 0;
  top: -0.6rem;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}

.success-modal__icon {
  height: 1.61rem;
  width: 3rem;
  /* margin: 0.7rem auto 0.32rem; */
  /* margin-left: 1.67rem; */
  margin-bottom: 0.32rem;
  margin-top: 0.7rem;
}

.success-modal__title {
  width: 1.6rem;
  height: 0.58rem;
  font-size: 0.4rem !important;
  margin: 0 auto;
  line-height: 0.58rem !important;
  background-size: 1.6rem 0.2rem !important;
  /* margin-left: 2.47rem; */
}

.success-modal__title img,
.success-modal__close img,
.form-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}

.success-modal__message {
  width: 3.13rem;
  height: 0.82rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 0.32rem auto 0.32rem;
}

.success-modal__button {
  min-height: 0.64rem;
  border: 0;
  border-radius: 9.99rem;
  color: #fff;
  position: relative;
  display: flex;
  width: 3.6rem;
  height: 0.96rem;
  margin-left: 1.37rem;
}

.success-modal__button img {
  width: 3.6rem;
  height: 0.96rem;
  /* position: absolute; */
  /* top: 0;
  left: 0; */
}

.success-modal__button div {
  width: 0.64rem;
  height: 0.46rem;
  font-weight: 700;
  font-size: 0.32rem;
  color: #483b3b;
  line-height: 0.46rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: absolute;
  top: 0.25rem;
  left: 1.56rem;
}
.repeat-modal__card {
  position: relative;
  width: 6.3rem;
  height: 3.9rem;
  /* width: min(100%, 6.9rem); */
  /* padding: 0.42rem 0.24rem 0.36rem; */
  border-radius: 0.04rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 0.18rem 0.34rem rgba(0, 0, 0, 0.16);
}

.repeat-modal__title {
  width: 1.6rem;
  height: 0.58rem;
  font-size: 0.4rem !important;
  margin: 0.59rem auto 0.32rem;
  line-height: 0.58rem !important;
  background-size: 1.6rem 0.2rem !important;
}

.repeat-modal__title img {
  display: block;
  width: 100%;
  height: auto;
}

.repeat-modal__message {
  /* width: 3.75rem; */
  text-align: center;
  height: 0.41rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0.47rem;
}

/* form model */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  background: rgba(34, 39, 48, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.form-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-modal__dialog {
  position: relative;
  width: min(100%, 6.9rem);
}

.form-modal__card {
  width: 100%;
  height: auto !important;
  overflow: auto;
  border-radius: 0.06rem;
  box-shadow: 0 0.18rem 0.4rem rgba(26, 41, 78, 0.2);
}

.form-modal__close {
  position: absolute;
  right: 0;
  top: -0.8rem;
  z-index: 2;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}

/* 底部快捷操作 */

.bottom-bar {
  position: fixed;
  left: 50%;
  bottom: calc(0.2rem + env(safe-area-inset-bottom));
  z-index: 30;
  width: 7.02rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.24rem);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.bottom-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.bottom-bar__inner {
  display: flex;
  justify-content: space-around;
  min-height: 0.96rem;
  border-radius: 0.48rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0.14rem 0.32rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(0.08rem);
  padding: 0.14rem 0.54rem 0.18rem 0.55rem;
}

.bottom-bar__link {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* gap: 0.12rem; */
  white-space: nowrap;
  background: transparent;
  border: 0;
  width: 0.64rem;
  height: 0.64rem;
  margin-right: 0.52rem;
}

.bottom-bar__icon {
  width: 0.64rem;
  height: 0.64rem;
  flex-shrink: 0;
  transform-origin: 50% 80%;
  animation: bottom-bar-ring 1.45s ease-in-out infinite;
}

.bottom-bar__icon1 {
  width: 0.64rem;
  height: 0.64rem;
}

.bottom-bar__link:last-child .bottom-bar__icon {
  animation-delay: 0.18s;
}

.bottom-bar_quote {
  width: fit-content;
  height: 0.64rem;
  background: #fff9ec;
  border-radius: 0.32rem 0.32rem 0.32rem 0.32rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-right: 0 !important;
  padding-right: 0.41rem;
  text-align: right;
}

.bottom-bar_quote div {
  margin-left: 0.21rem;
}

@keyframes bottom-bar-ring {
  0%,
  58%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  8% {
    transform: translate3d(-0.01rem, 0, 0) rotate(-12deg);
  }

  16% {
    transform: translate3d(0.01rem, 0, 0) rotate(12deg);
  }

  24% {
    transform: translate3d(-0.008rem, 0, 0) rotate(-10deg);
  }

  32% {
    transform: translate3d(0.008rem, 0, 0) rotate(10deg);
  }

  40% {
    transform: translate3d(-0.004rem, 0, 0) rotate(-6deg);
  }

  48% {
    transform: translate3d(0.004rem, 0, 0) rotate(6deg);
  }
}

/* 微信弹窗 */
.weChat-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 0.16rem;
  background: rgba(75, 75, 75, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.weChat-modal__card {
  width: 4.8rem;
  /* height: 6.78rem; */
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weChat-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.weChat-headerTitle {
  width: fit-content;
  padding: 0 0.2rem;
  height: 0.72rem;
  background: linear-gradient(270deg, #27baff 0%, #037ff7 100%);
  border-radius: 0rem 0rem 0.32rem 0.32rem;
  font-family:
    Alimama ShuHeiTi,
    Alimama ShuHeiTi;
  font-weight: 700;
  font-size: 0.34rem;
  color: #ffffff;
  line-height: 0.72rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.weChat-img {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0.28rem auto 0;
}

#weChat-img-str,
#line-img-str {
  width: 4.4rem;
  height: 4.2rem;
  border-radius: 0.2rem;
}

.weChat-modal-ID {
  width: fit-content;
  height: 0.41rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: -0.12rem;
  margin-bottom: 0.14rem;
}

.weChat-modal-btn {
  width: 1.72rem;
  height: 0.6rem;
  border-radius: 0.4rem 0.4rem 0.4rem 0.4rem;
  border: 0.01rem solid #037ff7;

  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #037ff7;
  line-height: 0.6rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.weChat-modal__title {
  width: 2.1rem;
  height: 0.43rem;
  margin: 0.22rem auto 0.42rem;
  background-size: 3.59rem 0.2rem !important;
}

.weChat-modal__button {
  min-height: 0.64rem;
  border: 0;
  border-radius: 9.99rem;
  color: #fff;
  position: relative;
  display: flex;
  width: 3.6rem;
  height: 0.96rem;
  margin-left: 1.37rem;
  position: absolute;
  bottom: -1.31rem;
  right: 0.6rem;
}

.weChat-modal__button img {
  width: 3.6rem;
  height: 0.96rem;
  /* position: absolute; */
  /* top: 0;
  left: 0; */
}

.weChat-modal__button div {
  width: fit-content;
  height: 0.46rem;
  font-weight: 700;
  font-size: 0.32rem;
  color: #483b3b;
  line-height: 0.46rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: absolute;
  top: 0.25rem;
  left: 1.26rem;
}

/* 弹窗标题 */

.modal__title {
  font-weight: 700;
  font-size: 0.3rem;
  color: #3d3d3d;
  line-height: 0.43rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background-image: url(./img/textbg.avif);
  background-size: 1.98rem 0.2rem;
  background-position: bottom;
  background-repeat: no-repeat;
}

/* 动画 */
.form-card__title,
.problem-card_title,
.guarantee-card_title,
.hot-card_title,
.japan-card_title,
.scene-card_title,
.evaluation-card_title,
.question-card_title,
.about-card_title {
  position: relative;
  overflow: hidden;
}
.form-card__title::before,
.problem-card_title::before,
.guarantee-card_title::before,
.hot-card_title::before,
.japan-card_title::before,
.scene-card_title::before,
.evaluation-card_title::before,
.question-card_title::before,
.about-card_title::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -52%;
  width: 46%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 22%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.12) 78%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-20deg);
  animation: cta-shine 1.2s linear infinite;
  z-index: 2;
  pointer-events: none;
  filter: blur(0.015rem);
}

/* 定义扩张 → 收缩 → 复原的动画 */
@keyframes expandContract {
  0% {
    transform: scale(1);
    border-radius: 35px;
  }
  50% {
    transform: scale(1.1); /* 扩张到 1.25 倍 */
    border-radius: 35px;
    box-shadow: 0 30px 40px -12px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: scale(1); /* 收缩回原大小 */
    border-radius: 35px;
  }
}

@keyframes swayTop {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg); /* 向右摆 */
  }
  75% {
    transform: rotate(-2deg); /* 向左摆 */
  }
  100% {
    transform: rotate(0deg);
  }
}

.hot-card {
  width: 6.9rem;
  background: #ffffff;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
  position: relative;
  margin: 0.44rem auto 0;
  padding: 0rem 0.25rem 0.4rem;
}

.hot-card_title {
  width: 2.33rem;
  height: 0.8rem;
  background: linear-gradient(90deg, #2c61f3 0%, #4cbbff 100%);
  border-radius: 0rem 0rem 0.48rem 0.48rem;
  line-height: 0.8rem;
  margin: 0 auto 0.18rem;
  text-align: center;
  font-size: 0.32rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.hot-card_desc {
  height: 0.4rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.4rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.hot-card_header {
  width: 6.4rem;
  height: 1.24rem;
  position: relative;
  background-image: url(./img/hotCardBg.avif);
  background-size: 100% 100%;
  padding: 0.33rem 0.29rem 0.03rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 700;
  font-size: 0.32rem;
  color: #3d3d3d;
  line-height: 0.44rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-top: 0.39rem;
  margin-bottom: 0.42rem;
  letter-spacing: -4%;
}

.hot-card_header1 {
  padding: 0.33rem 0.13rem 0.03rem;
}

.hot-card_header2 {
  letter-spacing: -8%;
  padding: 0.33rem 0.19rem 0.03rem 0.18rem;
}

.hot-card_header3 {
  padding: 0.33rem 0.96rem 0.03rem;
}

.hot-card_header5 {
  padding: 0.33rem 0.13rem 0.03rem 0.14rem;
}

.hot-card_header3 {
  padding: 0.33rem 0.29rem 0.03rem;
}

.hot-card_header-icon {
  position: absolute;
  top: -0.06rem;
  left: 0.75rem;
  width: 1.1rem;
  height: 0.5rem;
}

.hot-card_header1 .hot-card_header-icon {
  top: -0.06rem;
  left: 0.53rem !important;
}

.hot-card-content-item {
  display: flex;
  align-items: center;
  padding: 0rem 0.05rem 0 0.07rem;
  margin-top: 0.24rem;
}

.hot-card-content-item img {
  width: 0.61rem;
  height: 0.61rem;
  margin-right: 0.24rem;
}

.hot-card-content-item div {
  width: 5.43rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #222222;
  line-height: 0.36rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.hot-card-content-item-text {
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 700 !important;
  font-size: 0.3rem !important;
  color: #3d3d3d;
  line-height: 0.4rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.hot-card-content-item-text span {
  width: 3.12rem;
  height: 0.4rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.26rem;
  color: #3d3d3d;
  line-height: 0.4rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.hot-card-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.23rem;
  margin-top: 0.2rem;
}

.hot-card-bottom div {
  height: 0.68rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  text-align: center;
  font-style: normal;
  text-transform: none;
  background: #fcf7e8;
  padding: 0rem 0.19rem 0rem 0.2rem;
  line-height: 0.68rem;
  border-radius: 0.12rem 0.12rem 0.12rem 0.12rem;
}

.hot-card-bottom div:nth-child(1),
.hot-card-bottom div:nth-child(4) {
  background: #eaf0fd !important;
}

.hot-card-content-line,
.hot-card-content-line1 {
  width: 0.24rem;
  height: 1.08rem;
  position: absolute;
  bottom: -0.64rem;
  z-index: 5;
}

.hot-card-content-line {
  left: 0.12rem;
}

.hot-card-content-line1 {
  right: 0.12rem;
}

.hot-card-itinerary {
  margin-top: 0.24rem;
  background-image: url(./img/itinerary.avif);
  background-size: 100% 100%;
  padding: 0.32rem 0.32rem 0.44rem 0.24rem;
  display: flex;
  flex-direction: column;
  gap: 0.19rem;
}

.hot-card-itinerary-item {
  height: 0.72rem;
  background-image: url(./img/hotNum.avif);
  background-size: 100% 100%;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 700;
  font-size: 0.3rem;
  color: #ffffff;
  line-height: 0.4rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding-top: 0.14rem;
  padding-left: 0.32rem;
  display: flex;
  margin-top: 0.24rem;
}

.hot-card-itinerary-item div {
  width: 4.24rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.4rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  letter-spacing: -7%;
  margin-left: 0.48rem;
  margin-top: -0.24rem;
}

.hot-card-content-item1 {
  margin-top: 0.44rem;
  display: flex;
}

.hot-card-content-item1 img {
  width: 0.75rem;
  height: 0.7rem;
  margin-right: 0.12rem;
}

.hot-card-content-item1 div {
  width: 5.6rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.28rem;
  color: #222222;
  line-height: 0.36rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.hot-card-bottomBtn {
  width: 6.32rem;
  height: 2rem;
  background-image: url(./img/hotBottomBtnBg.avif);
  background-size: 100% 100%;
  margin-top: 0.32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hot-card-bottomBtn div {
  height: 0.41rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 500;
  font-size: 0.28rem;
  color: #3d3d3d;
  line-height: 0.41rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.hot-card-bottomBtn img {
  width: 2.8rem;
  height: 0.72rem;
  margin-top: 0.24rem;
}

.selected {
  border: 0.01rem solid #007cf6 !important;
  color: #2577e3 !important;
}

.license-modal {
  position: fixed;
  inset: 0;
  z-index: 59;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  background: #4f4f4f;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.license-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.license-modal__dialog {
  position: relative;
  width: min(100%, 4.8rem);
}

.license-modal__image {
  width: 6.4rem;
  height: 4.66rem;
  background: #ffffff;
}

.license-modal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0rem 0.45rem;
}

.license-modal__title {
  height: 0.7rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 700;
  font-size: 0.48rem;
  line-height: 0.7rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background: linear-gradient(90deg, #ffffff 0%, #dbf2ff 100%);
  -webkit-background-clip: text; /* 背景仅裁剪到文字（WebKit内核） */
  background-clip: text; /* 标准属性，兼容现代浏览器 */
  color: transparent; /* 文字颜色透明，露出背景渐变 */
  margin-bottom: 0.3rem;
}

.license-modal__title span {
  margin-left: 0.2rem;
  width: 0.66rem;
  height: 0.43rem;
  margin-top: 0.18rem;
  font-family:
    Source Han Sans,
    Source Han Sans;
  font-weight: 400;
  font-size: 0.3rem;
  color: #ffffff;
  line-height: 0.43rem;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.license-modal__close {
  position: absolute;
  right: 0.32rem;
  top: -0.5rem;
  z-index: 2;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
}

.license-modal__close img {
  width: 0.36rem;
  height: 0.36rem;
}

.license-modal__leftArrow,
.license-modal__rightArrow {
  position: absolute;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  top: 2.93rem;
}

.license-modal__leftArrow {
  left: 0.1rem;
}

.license-modal__rightArrow {
  right: 0.1rem;
  z-index: 100;
}

.license-modal__description {
  width: 2.52rem;
  height: 0.42rem;
  font-family: Anton, Anton;
  font-weight: 400;
  font-size: 0.28rem;
  color: #ffffff;
  line-height: 0.42rem;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 0.37rem;
}

.license-viewport {
  position: relative;
  overflow: hidden;
  background: #f9fafc;
  touch-action: pan-y pinch-zoom;
  width: 6.4rem;
}

.license-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: grab;
}

.license-track:active {
  cursor: grabbing;
}
