.top {
  color: #409EFF;
  font-family: PangMenZhengDao-3;
  font-size: 1rem;
  display: flex;
  align-items: center;
  padding: 0.3125rem 1.25rem;
}
.top .logo {
  width: 2rem;
  height: 2rem;
  margin-right: 0.3125rem;
}
.slogan {
  height: 14.3125rem;
  background: url(../img/Frame.png) no-repeat center / 100% 100%;
}
.page {
  width: 100%;
  padding: 0 1rem 1rem;
  position: absolute;
  top: 10.95rem;
  color: #000;
}
.page > div {
  border-radius: 0.75rem;
  background: #FFF;
  padding: 0.625rem 1.25rem;
  margin-bottom: 0.625rem;
}
.page > div .title {
  font-weight: 700;
  width: fit-content;
  position: relative;
}
.page > div .title::after {
  content: '';
  width: 100%;
  height: 0.3125rem;
  border-radius: 0.25rem;
  background: #409EFF;
  mix-blend-mode: darken;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.page .merchant {
  font-size: 1rem;
}
.page .merchant .title {
  margin-bottom: 0.625rem;
}
.page .merchant .name {
  color: #666;
}
.page .merchant .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.9375rem;
  padding: 0 1.25rem 0 1rem;
  margin: 0.375rem 0 0.625rem;
  border-radius: 0.75rem;
  background: #F3F9FC;
}
.page .merchant .info {
  font-weight: 600;
}
.page .merchant .service .info {
  color: #409EFF;
}

/* 商品信息居中显示 */
.center-product {
  text-align: center;
  padding: 2rem 0;
  margin: 1rem 0;
  border-radius: 0.75rem;
  background: #FFF;
}

.product-main {
  font-size: 2.2rem;
  font-weight: 800; /* 加粗字体 */
  color: #FF0000;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-sub {
  font-size: 1.2rem;
  font-weight: 700; /* 加粗字体 */
  color: #666;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 800; /* 加粗字体 */
  color: #FF417A;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 选择商品部分 */
.page .choose {
  margin-top: 1rem;
}

.page .choose .item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  position: relative;
  z-index: 9;
  background-color: #fff;
}
.page .choose .item select,
.page .choose .item input {
  border: none;
  outline: none;
  color: inherit;
}
.page .choose .item select {
  text-align: right;
  padding-right: 0.625rem;
  background-color: transparent !important;
}
.page .choose .item .verify {
  position: relative;
}
.page .choose .item .verify select {
  margin-right: 0.375rem;
}
.page .choose .item .verify::after {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0.375rem;
  background: #FF417A;
}
.page .choose .item .verify.pass::after {
  background: #1CDD52;
}
.page .choose .item .name[required]::after {
  content: '*';
  color: #FF417A;
  vertical-align: top;
}
.page .choose .item .value {
  max-width: 13.75rem;
  display: flex;
  color: #666;
  align-items: center;
  overflow: hidden;
}
.page .choose .item .value select {
  max-width: 12.5rem;
}
.page .choose .item .value .num {
  min-width: 4.5rem;
  text-align: center;
}
.page .choose .item .value .sub img,
.page .choose .item .value .add img {
  width: 1rem;
  height: 1rem;
}
.page .choose .item .value .sub {
  margin-right: 0.5rem;
}
.page .choose .item .value .add {
  margin-left: 0.5rem;
}
.page .choose .item .value .fixed-value {
  color: #666;
  text-align: right;
  padding-right: 0.625rem;
}
.page .choose .item .value .tg-account {
  max-width: unset;
  width: 15rem;
  border-radius: 0.75rem;
  background: #F3F9FC;
  font-size: 0.875rem;
  padding: 0.3rem 0rem;
  text-align: center;
  border: none;
  outline: none;
}
.page .choose .item .value .tg-account:focus::placeholder {
  opacity: 0;
}
.page .choose .hint {
  color: #FF417A;
  height: 2.25rem;
  line-height: 2.25rem;
  margin-top: -2.5rem;
  transition: all 0.6s ease-in-out;
}
.page .choose .hint.show {
  margin-top: 0;
}
.page .choose .order {
  border-radius: 1.5rem;
  background: #F3F9FC;
  display: flex;
  justify-content: space-between;
  margin: 0.625rem 0;
  line-height: 1rem;
}
.page .choose .order .total {
  margin-left: 1.25rem;
}
.page .choose .order .total > * {
  font-size: 0.75rem;
}
.page .choose .order .total .text {
  color: rgba(0, 0, 0, 0.6);
  transform: scale(0.84);
}
.page .choose .order .total .price {
  color: #409EFF;
}
.page .choose .order .place {
  width: 12.125rem;
  height: 2.375rem;
  background: #409EFF;
  border-radius: 1.5rem;
  text-align: center;
  line-height: 2.375rem;
  color: #fff;
  cursor: pointer;
}