/** mixins **/

.arw {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #f7f7f5;
  font-family: Arial, Microsoft YaHei, sans-serif;
}

.arw,
.arw *,
.arw *:before,
.arw *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.arw[hidden] {
  display: none;
}

.arw:before {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(229, 27, 43, 0.07) 0%, rgba(229, 27, 43, 0.03) 40%, transparent 70%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  pointer-events: none;
}

.arw__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.arw__dialog {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 0.01rem solid rgba(255, 255, 255, 0.1);
  border-radius: 0.08rem;
  background: transparent;
  -webkit-backdrop-filter: blur(0.225rem);
  backdrop-filter: blur(0.225rem);
  -webkit-box-shadow: 0 0.28rem 0.8rem rgba(0, 0, 0, 0.55), 0 0 1.2rem rgba(229, 27, 43, 0.04);
  box-shadow: 0 0.28rem 0.8rem rgba(0, 0, 0, 0.55), 0 0 1.2rem rgba(229, 27, 43, 0.04);
}

.arw__dialog:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: #e51b2b;
  content: "";
}

.arw__dialog:after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: linear-gradient(321deg, rgba(255, 255, 255, 0) -21.36%, rgba(255, 255, 255, 0.74) 109.44%);
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.arw__content {
  position: relative;
  z-index: 1;
}

.arw__close {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #94969d;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.arw__close:hover {
  color: #f7f7f5;
}

.arw__title {
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.arw__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border: 0;
  font-size: 0.24rem;
  cursor: pointer;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.arw__btn:hover {
  opacity: 0.85;
}

.arw__btn:disabled,
.arw__btn:disabled:hover {
  cursor: not-allowed;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.45;
}

.arw__btn--primary {
  border-radius: 0.02rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.08)), color-stop(50%, transparent), to(rgba(0, 0, 0, 0.06))), -webkit-gradient(linear, left top, right top, from(#00a2ff), color-stop(#019fff), color-stop(#02a6fe), color-stop(#03b6fd), color-stop(#04cafb), to(#05ddf9));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(0, 0, 0, 0.06) 100%), linear-gradient(90deg, #00a2ff, #019fff, #02a6fe, #03b6fd, #04cafb, #05ddf9);
  color: #fff;
}

.arw__btn--primary span {
  letter-spacing: 0.08em;
}

.arw__btn--secondary {
  border-radius: 0.08rem;
  background: #fff;
  color: #5d5d5e;
}

.arw__btn--secondary span {
  letter-spacing: 0.08em;
}

.arw--pending .arw__btn,
.arw--pending .arw__platform {
  pointer-events: none;
  opacity: 0.6;
}

.arw__reserved-social-link {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.arw__reserved-social-link:hover .arw__reserved-social-icon,
.arw__reserved-social-link:focus-visible .arw__reserved-social-icon {
  opacity: 0.75;
}

.arw__reserved-social-icon {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.arw__reserved-social-icon--qq {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-qq-C-iAltbg_80e7e298.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-qq-C-iAltbg_80e7e298.svg);
}

.arw__reserved-social-icon--blbl {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-blbl-uV6QspAx_93a93c68.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-blbl-uV6QspAx_93a93c68.svg);
}

.arw__reserved-social-icon--tap {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-tap-Ciay13GF_a4b8fb3e.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-tap-Ciay13GF_a4b8fb3e.svg);
}

.arw__reserved-social-icon--wyy {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-wyy-DuhdN3uc_1be12393.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-wyy-DuhdN3uc_1be12393.svg);
}

.arw__reserved-social-icon--bc {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-bc-B_gFQNI1_ebdbb90e.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-bc-B_gFQNI1_ebdbb90e.svg);
}

.arw__reserved-social-icon--ds {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-ds-KHy96ZxF_9ae70e47.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-ds-KHy96ZxF_9ae70e47.svg);
}

.arw__reserved-social-icon--wx {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-wx-CKxavSae_4b66845b.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-wx-CKxavSae_4b66845b.svg);
}

.arw__reserved-social-icon--dy {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-dy-BokbJcZu_e31ee7a0.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-dy-BokbJcZu_e31ee7a0.svg);
}

.arw__reserved-social-icon--ks {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-ks-KnbYOd1Y_8310aa51.png);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-ks-KnbYOd1Y_8310aa51.png);
}

.arw__reserved-social-icon--xhs {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-xhs-D6wZA6cu_c1bc8e1b.png);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-xhs-D6wZA6cu_c1bc8e1b.png);
}

.arw__reserved-social-icon--4399 {
  position: relative;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-4399-CARXOgZm_b384805a.png) center / contain no-repeat;
}

.arw__reserved-social-icon--4399:after {
  position: absolute;
  top: -3.287%;
  left: -2.386%;
  width: 35%;
  height: 33.333%;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-4399-corner-B2XGSuPO_d14a6d0d.svg) left top / 100% 100% no-repeat;
  content: "";
}

.arw__reserved-social-icon--tb {
  mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-tb-CdeQnDaP_5f5acad7.svg);
  -webkit-mask-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-tb-CdeQnDaP_5f5acad7.svg);
}

.arw__reserved-wechat-qr {
  position: absolute;
  z-index: 4;
  bottom: calc(100% + 0.08rem);
  left: 50%;
  display: none;
  width: 1.11rem;
  height: 1.11rem;
  border: 0.04rem solid #fff;
  background: #fff url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/social-wechat-qr-CY33jy9V_84c0f91f.jpg) center / contain no-repeat;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  pointer-events: none;
}

.arw__reserved-social-link--wechat:hover .arw__reserved-wechat-qr,
.arw__reserved-social-link--wechat:focus-visible .arw__reserved-wechat-qr {
  display: block;
}

.arw__platform-description,
.arw__platform-hint,
.arw__reserved-news-title-mobile {
  display: none;
}

.arw__platforms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.arw__platform {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.01rem solid rgba(255, 255, 255, 0.12);
  border-radius: 0.08rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f7f5;
  cursor: pointer;
  -webkit-transition: border-color 0.15s, background 0.15s;
  transition: border-color 0.15s, background 0.15s;
}

.arw__platform.is-selected {
  border-color: #00a2ff;
  background: rgba(0, 162, 255, 0.12);
}

.arw__platform-icon {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.arw__platform-icon--pc {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/platform-pc-D4AC2buR_3fbe6981.png);
}

.arw__platform-icon--console {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/platform-console-kygrcREr_3a2f4fd9.png);
}

.arw__platform-icon--mobile {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/platform-mobile-BywXXiL9_02842bfe.png);
}

.arw__platform-check {
  display: block;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/platform-unselected-kFcuRJ5R_03b37dc3.png) center / contain no-repeat;
}

.arw__platform.is-selected .arw__platform-check {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/platform-selected-D4_SPU0G_c046687e.png);
}

.arw--pc {
  padding: 0.24rem;
}

.arw--pc .arw__dialog {
  max-width: 5.37rem;
  min-height: 3.46rem;
  padding: 0.5rem 0.6rem 0.4rem;
}

.arw--pc .arw__dialog:before {
  width: 0.96rem;
  height: 0.04rem;
}

.arw--pc .arw__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.arw--pc .arw__close {
  top: 0.2rem;
  right: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
}

.arw--pc .arw__title {
  margin: 0 0 0.36rem;
  font-size: 0.32rem;
}

.arw--pc .arw__btn {
  width: 4.16rem;
  height: 0.64rem;
  text-align: center;
  font-size: 0.24rem;
}

.arw--pc .arw__btn--primary {
  margin-bottom: 0.18rem;
}

.arw--pc .arw__platforms {
  gap: 0.12rem;
  margin: 0 0 0.28rem;
}

.arw--pc .arw__platform {
  height: 0.96rem;
  padding: 0.12rem;
}

.arw--pc .arw__platform-icon {
  width: 0.32rem;
  height: 0.32rem;
  margin-bottom: 0.08rem;
}

.arw--pc .arw__platform-label {
  margin-bottom: 0.08rem;
  font-size: 0.14rem;
}

.arw--pc .arw__platform-check {
  width: 0.18rem;
  height: 0.18rem;
}

.arw--pc[data-arw-screen=interrupt] .arw__backdrop {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.arw--pc[data-arw-screen=interrupt]:before {
  display: none;
}

.arw--pc[data-arw-screen=interrupt] .arw__dialog {
  width: 5.37rem;
  height: 3.46rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0.08rem;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.arw--pc[data-arw-screen=interrupt] .arw__dialog:before {
  display: none;
}

.arw--pc[data-arw-screen=interrupt] .arw__content {
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.arw--pc[data-arw-screen=interrupt] .arw__close {
  top: 0.13rem;
  right: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  outline: 0;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/reservation-dialog-close-DhSU6u7N_f109fded.svg) center / 0.19436rem 0.19436rem no-repeat;
}

.arw--pc[data-arw-screen=interrupt] .arw__close svg {
  display: none;
}

.arw--pc[data-arw-screen=interrupt] .arw__title {
  position: absolute;
  top: 0.54rem;
  left: 50%;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=interrupt] .arw__btn {
  position: absolute;
  left: 50%;
  margin: 0;
  overflow: hidden;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.24rem;
  font-weight: 400;
  line-height: normal;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=interrupt] .arw__btn span {
  position: relative;
  z-index: 2;
  letter-spacing: 0;
}

.arw--pc[data-arw-screen=interrupt] .arw__btn--primary {
  top: 1.3rem;
  width: 4.16rem;
  height: 0.64rem;
  border-radius: 0.08rem;
  background: -webkit-gradient(linear, left top, right top, from(#00a2ff), to(#05ddf9));
  background: linear-gradient(90deg, #00a2ff, #05ddf9);
}

.arw--pc[data-arw-screen=interrupt] .arw__btn--secondary {
  top: 2.12rem;
  width: 4.17rem;
  height: 0.65rem;
  border-radius: 0.08rem;
  background: #fff;
}

.arw--pc[data-arw-screen=interrupt] .arw__title {
  top: 50%;
  width: calc(100% - 1.2rem);
  text-align: center;
  white-space: normal;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.arw--pc[data-arw-screen=platform] .arw__backdrop {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.arw--pc[data-arw-screen=platform]:before {
  display: none;
}

.arw--pc[data-arw-screen=platform] .arw__dialog {
  width: 5.37rem;
  height: 4.4rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0.08rem;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.arw--pc[data-arw-screen=platform] .arw__dialog:before {
  display: none;
}

.arw--pc[data-arw-screen=platform] .arw__content {
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.arw--pc[data-arw-screen=platform] .arw__close {
  top: 0.17rem;
  right: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  outline: 0;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/reservation-dialog-close-DhSU6u7N_f109fded.svg) center / 0.19436rem 0.19436rem no-repeat;
}

.arw--pc[data-arw-screen=platform] .arw__close svg {
  display: none;
}

.arw--pc[data-arw-screen=platform] .arw__title {
  position: absolute;
  top: 0.58rem;
  left: 50%;
  width: 1.995rem;
  height: 0.3rem;
  margin: 0;
  color: #fefefe;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.225rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0045rem;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=platform] .arw__platforms {
  position: absolute;
  top: 1.29rem;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 4.16rem;
  gap: 0.13rem;
  margin: 0;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=platform] .arw__platform {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.3rem;
  -ms-flex: 0 0 1.3rem;
  flex: 0 0 1.3rem;
  width: 1.3rem;
  height: 1.43rem;
  padding: 0;
  border: 0.015rem solid #c3c3c3;
  border-radius: 0.09rem;
  background: rgba(247, 247, 247, 0.6);
  color: #191919;
}

.arw--pc[data-arw-screen=platform] .arw__platform.is-selected {
  border-color: #00a2ff;
  background: rgba(247, 247, 247, 0.6);
}

.arw--pc[data-arw-screen=platform] .arw__platform-icon {
  position: absolute;
  width: 0.42rem;
  height: 0.39rem;
  margin: 0;
}

.arw--pc[data-arw-screen=platform] .arw__platform-icon--pc {
  top: 0.1975rem;
  left: 0.4475rem;
}

.arw--pc[data-arw-screen=platform] .arw__platform-icon--console {
  top: 0.1975rem;
  left: 0.4275rem;
}

.arw--pc[data-arw-screen=platform] .arw__platform-icon--mobile {
  top: 0.19rem;
  left: 0.44rem;
}

.arw--pc[data-arw-screen=platform] .arw__platform-label {
  position: absolute;
  top: 0.6475rem;
  left: 50%;
  margin: 0;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.195rem;
  font-weight: 600;
  line-height: 0.2175rem;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=platform] .arw__platform-check {
  position: absolute;
  top: 1.065rem;
  left: 50%;
  width: 0.17rem;
  height: 0.17rem;
  margin: 0;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=platform] .arw__btn--primary {
  position: absolute;
  top: 3.11rem;
  left: 50%;
  width: 4.16rem;
  height: 0.64rem;
  margin: 0;
  border-radius: 0.08rem;
  background: -webkit-gradient(linear, left top, right top, from(#00a2ff), to(#05ddf9));
  background: linear-gradient(90deg, #00a2ff, #05ddf9);
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.24rem;
  font-weight: 400;
  line-height: normal;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=platform] .arw__btn--primary span {
  letter-spacing: 0;
}

.arw--pc[data-arw-screen=reserved] .arw__backdrop {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.arw--pc[data-arw-screen=reserved]:before {
  display: none;
}

.arw--pc[data-arw-screen=reserved] .arw__dialog {
  width: 5.37rem;
  height: 4.8rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0.08rem;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(0.005rem);
  transform: translate(0.005rem);
}

.arw--pc[data-arw-screen=reserved] .arw__dialog:before {
  display: none;
}

.arw--pc[data-arw-screen=reserved] .arw__content {
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.arw--pc[data-arw-screen=reserved] .arw__close {
  top: 0.17rem;
  right: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  outline: 0;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/reservation-dialog-close-DhSU6u7N_f109fded.svg) center / 0.19436rem 0.19436rem no-repeat;
}

.arw--pc[data-arw-screen=reserved] .arw__close svg {
  display: none;
}

.arw--pc[data-arw-screen=reserved] .arw__title {
  position: absolute;
  top: 0.44981rem;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 0.42rem;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qrs {
  position: absolute;
  top: 1.22rem;
  left: 1.38rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qr-item {
  position: relative;
  width: 1.2rem;
  height: 1.52019rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qr {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.08rem;
  background: #f4f4f4;
  -o-object-fit: contain;
  object-fit: contain;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qr-label {
  position: absolute;
  top: 1.26019rem;
  left: 0.2rem;
  width: 0.8rem;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 0.26rem;
  text-align: center;
  white-space: nowrap;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-news {
  position: absolute;
  top: 3.06981rem;
  left: 1.18rem;
  width: 3.03rem;
  height: 1.25994rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-news-title {
  position: absolute;
  top: 0;
  left: 0.21266rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.6096rem;
  height: 0.27rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-news-title:before,
.arw--pc[data-arw-screen=reserved] .arw__reserved-news-title:after {
  width: 0.6096rem;
  height: 0.01rem;
  background: rgba(255, 255, 255, 0.6);
  content: "";
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-news-title:before {
  margin-right: 0.1rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-news-title:after {
  margin-left: 0.1rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-links {
  position: absolute;
  top: 0.47rem;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 3.03rem;
  gap: 0.16rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-row:first-child {
  gap: 0.25rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-row:last-child {
  gap: 0.21rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link {
  display: block;
  width: 0.32rem;
  height: 0.32rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--tap {
  width: 0.30956rem;
  height: 0.30956rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--qq {
  width: 0.26068rem;
  height: 0.30663rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--blbl {
  width: 0.32466rem;
  height: 0.3084rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--dy {
  width: 0.26846rem;
  height: 0.3078rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--ks {
  width: 0.3rem;
  height: 0.3rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--xhs {
  width: 0.3rem;
  height: 0.29rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--ds {
  width: 0.4008rem;
  height: 0.22711rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--bc {
  width: 0.27774rem;
  height: 0.30921rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--4399 {
  width: 0.3rem;
  height: 0.3rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--tb {
  width: 0.31098rem;
  height: 0.31099rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--wx {
  width: 0.37926rem;
  height: 0.30833rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-social-link--wyy {
  width: 0.31091rem;
  height: 0.31078rem;
}

.arw--pc.arw--pc-size-2k .arw__dialog {
  -webkit-transform: scale(1.33333333);
  transform: scale(1.33333333);
}

.arw--pc.arw--pc-size-2k[data-arw-screen=interrupt] .arw__dialog,
.arw--pc.arw--pc-size-2k[data-arw-screen=platform] .arw__dialog,
.arw--pc.arw--pc-size-2k[data-arw-screen=reserved] .arw__dialog {
  -webkit-transform-origin: center;
  transform-origin: center;
}

.arw--m {
  padding: 0.24rem;
}

.arw--m .arw__dialog {
  max-width: 6.4rem;
  padding: 0.56rem 0.4rem 0.4rem;
}

.arw--m .arw__dialog:before {
  width: 1.2rem;
  height: 0.04rem;
}

.arw--m .arw__close {
  top: 0.2rem;
  right: 0.2rem;
  width: 0.56rem;
  height: 0.56rem;
  font-size: 0.44rem;
}

.arw--m .arw__title {
  font-size: 0.48rem;
}

.arw--m .arw__description {
  margin: 0.2rem 0 0.36rem;
  font-size: 0.24rem;
}

.arw--m .arw__placeholder {
  min-height: 2.4rem;
  margin-bottom: 0.36rem;
}

.arw--m .arw__placeholder:before {
  width: 2.4rem;
  height: 0.36rem;
  margin-bottom: 0.2rem;
}

.arw--m .arw__placeholder span {
  margin-bottom: 0.12rem;
  font-size: 0.16rem;
}

.arw--m .arw__placeholder strong {
  font-size: 0.28rem;
}

.arw--m .arw__primary {
  min-height: 0.8rem;
  font-size: 0.26rem;
}

.arw--m .arw__btn {
  height: 0.88rem;
  font-size: 0.28rem;
}

.arw--m .arw__btn--primary {
  margin-bottom: 0.2rem;
}

.arw--m .arw__platforms {
  gap: 0.16rem;
  margin: 0 0 0.4rem;
}

.arw--m .arw__platform {
  height: 1.28rem;
  padding: 0.16rem;
}

.arw--m .arw__platform-icon {
  width: 0.48rem;
  height: 0.48rem;
  margin-bottom: 0.12rem;
}

.arw--m .arw__platform-label {
  margin-bottom: 0.12rem;
  font-size: 0.22rem;
}

.arw--m .arw__platform-check {
  width: 0.28rem;
  height: 0.28rem;
}

.arw--m[data-arw-screen=platform],
.arw--m[data-arw-screen=reserved],
.arw--m[data-arw-screen=interrupt] {
  padding: 0.55rem;
}

.arw--m[data-arw-screen=platform] .arw__backdrop,
.arw--m[data-arw-screen=reserved] .arw__backdrop,
.arw--m[data-arw-screen=interrupt] .arw__backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.arw--m[data-arw-screen=platform]:before,
.arw--m[data-arw-screen=reserved]:before,
.arw--m[data-arw-screen=interrupt]:before {
  display: none;
}

.arw--m[data-arw-screen=platform] .arw__dialog,
.arw--m[data-arw-screen=reserved] .arw__dialog,
.arw--m[data-arw-screen=interrupt] .arw__dialog {
  width: 6.4rem;
  max-width: none;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0.08rem;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.arw--m[data-arw-screen=platform] .arw__dialog:before,
.arw--m[data-arw-screen=reserved] .arw__dialog:before,
.arw--m[data-arw-screen=interrupt] .arw__dialog:before {
  display: none;
}

.arw--m[data-arw-screen=platform] .arw__content,
.arw--m[data-arw-screen=reserved] .arw__content,
.arw--m[data-arw-screen=interrupt] .arw__content {
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}

.arw--m[data-arw-screen=platform] .arw__close,
.arw--m[data-arw-screen=reserved] .arw__close,
.arw--m[data-arw-screen=interrupt] .arw__close {
  top: 0.23rem;
  right: 0.25rem;
  width: 0.32rem;
  height: 0.32rem;
  outline: 0;
  background: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/reservation-dialog-close-DhSU6u7N_f109fded.svg) center / 0.32rem 0.32rem no-repeat;
}

.arw--m[data-arw-screen=platform] .arw__close svg,
.arw--m[data-arw-screen=reserved] .arw__close svg,
.arw--m[data-arw-screen=interrupt] .arw__close svg {
  display: none;
}

.arw--m[data-arw-screen=interrupt] .arw__dialog {
  height: 5.16rem;
}

.arw--m[data-arw-screen=interrupt] .arw__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.1rem;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.38rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.arw--m[data-arw-screen=platform] .arw__dialog {
  height: 6.3rem;
}

.arw--m[data-arw-screen=platform] .arw__title {
  position: absolute;
  top: 0.7298rem;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 0.38rem;
  margin: 0;
  color: #fefefe;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.38rem;
  letter-spacing: -0.0072rem;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=platform] .arw__platform-hint {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  display: block;
  width: 3.91rem;
  height: 0.22rem;
  margin: 0;
  color: #b2b2b2;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.22rem;
  font-weight: 400;
  line-height: 0.22rem;
  letter-spacing: -0.0044rem;
  text-align: center;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=platform] .arw__platforms {
  position: absolute;
  top: 2.17rem;
  left: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 5.94rem;
  gap: 0.15rem;
  margin: 0;
}

.arw--m[data-arw-screen=platform] .arw__platform {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.88rem;
  -ms-flex: 0 0 1.88rem;
  flex: 0 0 1.88rem;
  width: 1.88rem;
  height: 2.04rem;
  padding: 0;
  border: 0.02rem solid #c3c3c3;
  border-radius: 0.12rem;
  background: rgba(247, 247, 247, 0.6);
  color: #191919;
}

.arw--m[data-arw-screen=platform] .arw__platform.is-selected {
  border-color: #00a2ff;
  background: rgba(247, 247, 247, 0.6);
}

.arw--m[data-arw-screen=platform] .arw__platform-icon {
  position: absolute;
  width: 0.6rem;
  height: 0.56rem;
  margin: 0;
}

.arw--m[data-arw-screen=platform] .arw__platform-icon--pc {
  top: 0.35rem;
  left: 0.64rem;
}

.arw--m[data-arw-screen=platform] .arw__platform-icon--console,
.arw--m[data-arw-screen=platform] .arw__platform-icon--mobile {
  top: 0.27rem;
  left: 0.64rem;
}

.arw--m[data-arw-screen=platform] .arw__platform-label {
  position: absolute;
  top: 0.89rem;
  left: 50%;
  margin: 0;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.26rem;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=platform] .arw__platform-description {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  display: block;
  margin: 0;
  color: rgba(25, 25, 25, 0.5);
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.24rem;
  font-weight: 400;
  line-height: 0.32rem;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=platform] .arw__platform-check {
  position: absolute;
  top: 1.58rem;
  left: 50%;
  width: 0.22rem;
  height: 0.22rem;
  margin: 0;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=platform] .arw__btn--primary {
  position: absolute;
  top: 4.85rem;
  left: 1.9rem;
  width: 2.78rem;
  height: 0.64rem;
  margin: 0;
  border-radius: 0.04rem;
  background: -webkit-gradient(linear, left top, right top, from(#00a2ff), to(#05ddf9));
  background: linear-gradient(90deg, #00a2ff, #05ddf9);
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.26rem;
  font-weight: 600;
  line-height: 0.39rem;
}

.arw--m[data-arw-screen=platform] .arw__btn--primary span {
  letter-spacing: 0;
}

.arw--m[data-arw-screen=reserved] .arw__dialog {
  height: 7.04rem;
}

.arw--m[data-arw-screen=reserved] .arw__title {
  position: absolute;
  top: 0.7898rem;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 0.38rem;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.38rem;
  font-weight: 700;
  line-height: 0.38rem;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.arw--m[data-arw-screen=reserved] .arw__reserved-qrs {
  position: absolute;
  top: 1.5698rem;
  left: 0.975rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.57rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-qr-item {
  position: relative;
  width: 1.94rem;
  height: 2.34rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-qr {
  display: block;
  width: 1.94rem;
  height: 1.94rem;
  border-radius: 0.08rem;
  background: #f4f4f4;
  -o-object-fit: contain;
  object-fit: contain;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-qr-label {
  position: absolute;
  top: 2.08rem;
  left: 0.32rem;
  width: 1.3rem;
  margin: 0;
  color: #fff;
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.26rem;
  font-weight: 400;
  line-height: 0.26rem;
  text-align: center;
  white-space: nowrap;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news {
  position: absolute;
  top: 4.3098rem;
  left: 0.9812rem;
  width: 4.4377rem;
  height: 2.0783rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 0.26rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: MiSans, Arial, Microsoft YaHei, sans-serif;
  font-size: 0.26rem;
  font-weight: 400;
  line-height: 0.26rem;
  white-space: nowrap;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title:before,
.arw--m[data-arw-screen=reserved] .arw__reserved-news-title:after {
  width: 1.07rem;
  height: 0.01rem;
  background: rgba(255, 255, 255, 0.6);
  content: "";
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title:before {
  margin-right: 0.13rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title:after {
  margin-left: 0.13rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title-pc {
  display: none;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-news-title-mobile {
  display: inline;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-social-links {
  position: absolute;
  top: 0.5802rem;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 4.42rem;
  gap: 0.32rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-social-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-social-link {
  display: block;
  width: 0.53rem;
  height: 0.53rem;
}

.arw--m[data-arw-screen=reserved] .arw__reserved-wechat-qr {
  bottom: calc(100% + 0.12rem);
  width: 1.89rem;
  height: 1.89rem;
  border-width: 0.06rem;
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qr--enterprise-wechat,
.arw--m[data-arw-screen=reserved] .arw__reserved-qr--enterprise-wechat {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/1787627251624-BxUdeNu1_8ffaa7cf.png);
}

.arw--pc[data-arw-screen=reserved] .arw__reserved-qr--mini-program,
.arw--m[data-arw-screen=reserved] .arw__reserved-qr--mini-program {
  background-image: url(https://ananta.res.netease.com/pc/gw/20260805112712/assets/mini-program-qr-DmSTGe9__d59f9bb6.jpg);
}
