:global .async-comp-loading {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
}
body {
  color: #333333;
  color: var(--adm-color-text);
  font-size: 13px;
  font-size: var(--adm-font-size-main);
  font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: #1677ff;
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: inherit;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: 1;
  opacity: initial;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(1 / 2 * 2px);
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  right: -100vw;
  bottom: -100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  pointer-events: none;
}

.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--adm-button-text-color, var(--adm-color-text));
  color: var(--text-color);
  background-color: var(--adm-button-background-color, var(--adm-color-background));
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 7px 12px;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: 1px solid var(--adm-button-border-color, var(--adm-color-border));
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: 4px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.adm-button:focus {
  outline: none;
}
.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  background-color: var(--adm-color-text-dark-solid);
  border: var(--border-width) var(--border-style) var(--adm-color-text-dark-solid);
  border-radius: var(--border-radius);
  opacity: 0;
  content: ' ';
  box-sizing: content-box;
}
.adm-button:active::before {
  opacity: 0.08;
}
.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}
.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}
.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}
.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button-primary {
  --color: var(--adm-color-primary);
}
.adm-button-success {
  --color: var(--adm-color-success);
}
.adm-button-danger {
  --color: var(--adm-color-danger);
}
.adm-button-warning {
  --color: var(--adm-color-warning);
}
.adm-button-block {
  display: block;
  width: 100%;
}
.adm-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adm-button-disabled:active::before {
  display: none;
}
.adm-button.adm-button-mini {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-main);
}
.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}
.adm-button.adm-button-small {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-7);
}
.adm-button.adm-button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: var(--adm-font-size-10);
}
.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}
.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}
.adm-button-loading {
  vertical-align: bottom;
}
.adm-button-loading-wrapper {
  display: flex;
  height: 1.4em;
  align-items: center;
  justify-content: center;
}
.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}

.adm-dot-loading {
  display: inline-block;
}

.adm-center-popup {
  --background-color: var(--adm-center-popup-background-color, var(--adm-color-background));
  --border-radius: var(--adm-center-popup-border-radius, 8px);
  --max-width: var(--adm-center-popup-max-width, 75vw);
  --min-width: var(--adm-center-popup-min-width, 280px);
  --z-index: var(--adm-center-popup-z-index, 1000);
  position: fixed;
  z-index: 1000;
  z-index: var(--z-index);
}
.adm-center-popup .adm-center-popup-mask {
  z-index: 0;
}
.adm-center-popup-wrap {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: var(--min-width);
  max-width: var(--max-width);
  transform: translate(-50%, -50%);
}
.adm-center-popup-body {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
}
.adm-center-popup-close {
  position: absolute;
  z-index: 100;
  right: 8px;
  top: 8px;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  color: var(--adm-color-weak);
}

.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}
.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.adm-mask-content {
  z-index: 1;
}

.adm-checkbox {
  --icon-size: 22px;
  --font-size: var(--adm-font-size-9);
  --gap: 8px;
  display: inline-flex;
  vertical-align: text-bottom;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.adm-checkbox input {
  display: none;
}
.adm-checkbox .adm-checkbox-icon {
  flex: none;
  border: 1px solid var(--adm-color-light);
  border-radius: var(--icon-size);
  box-sizing: border-box;
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--adm-color-text-light-solid);
}
.adm-checkbox .adm-checkbox-icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.adm-checkbox.adm-checkbox-block {
  display: flex;
}
.adm-checkbox.adm-checkbox-checked .adm-checkbox-icon {
  border-color: var(--adm-color-primary);
  background-color: var(--adm-color-primary);
}
.adm-checkbox.adm-checkbox-disabled {
  cursor: not-allowed;
}
.adm-checkbox.adm-checkbox-disabled .adm-checkbox-content {
  opacity: 0.4;
}
.adm-checkbox.adm-checkbox-disabled .adm-checkbox-icon.adm-checkbox-icon {
  color: var(--adm-color-light);
  border-color: var(--adm-color-light);
  background-color: var(--adm-color-fill-content);
}
.adm-checkbox .adm-checkbox-custom-icon {
  font-size: var(--icon-size);
}
.adm-checkbox.adm-checkbox-indeterminate .adm-checkbox-icon {
  background-color: var(--adm-color-background);
  color: var(--adm-color-primary);
}
.adm-checkbox-content {
  flex: 0 1 auto;
  font-size: var(--font-size);
  padding-left: var(--gap);
}

.adm-image {
  --width: var(--adm-image-width, auto);
  --height: var(--adm-image-height, auto);
  width: auto;
  width: var(--width);
  height: auto;
  height: var(--height);
  display: block;
  overflow: hidden;
}
.adm-image-img {
  width: 100%;
  height: 100%;
}
.adm-image-tip {
  position: relative;
  background-color: var(--adm-color-fill-content);
  height: 100%;
  min-height: 24px;
  min-width: 24px;
}
.adm-image-tip > svg {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--adm-color-weak);
}

.adm-image-viewer-content {
  width: 100vw;
  height: 100vh;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.adm-image-viewer-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.adm-image-viewer-slides {
  height: 100%;
  position: relative;
  z-index: 1;
  cursor: grab;
  touch-action: none;
}
.adm-image-viewer-slides-inner {
  height: 100%;
  white-space: nowrap;
}
.adm-image-viewer-slides-inner > * {
  margin-right: 16px;
}
.adm-image-viewer-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.adm-image-viewer-control {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}
.adm-image-viewer-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-image-viewer-image-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.adm-image-viewer-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  color: var(--adm-color-border);
  font-size: var(--adm-font-size-6);
}

.adm-safe-area {
  --multiple: var(--adm-safe-area-multiple, 1);
  display: block;
  width: 100%;
}
.adm-safe-area-position-top {
  padding-top: calc(env(safe-area-inset-top) * var(--multiple));
}
.adm-safe-area-position-bottom {
  padding-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
}

.adm-nav-bar {
  --height: 45px;
  --border-bottom: none;
  display: flex;
  align-items: center;
  height: 45px;
  height: var(--height);
  border-bottom: none;
  border-bottom: var(--border-bottom);
  padding: 0 12px;
  white-space: nowrap;
}
.adm-nav-bar-left,
.adm-nav-bar-right {
  flex: 1;
}
.adm-nav-bar-title {
  flex: auto;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.adm-nav-bar-back {
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding: 6px 0;
  cursor: pointer;
}
.adm-nav-bar-back-arrow {
  font-size: 24px;
  margin-right: 4px;
}
.adm-nav-bar-left {
  font-size: var(--adm-font-size-7);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.adm-nav-bar-title {
  justify-content: center;
  white-space: nowrap;
  font-size: var(--adm-font-size-10);
  padding: 0 12px;
}
.adm-nav-bar-right {
  text-align: right;
}

.adm-space-item {
  flex: none;
}
.adm-space {
  display: inline-flex;
  --gap: 8px;
  --gap-vertical: var(--gap);
  --gap-horizontal: var(--gap);
}
.adm-space-vertical {
  flex-direction: column;
}
.adm-space-vertical > .adm-space-item {
  margin-bottom: var(--gap-vertical);
}
.adm-space-vertical > .adm-space-item:last-child {
  margin-bottom: 0;
}
.adm-space-horizontal {
  flex-direction: row;
}
.adm-space-horizontal > .adm-space-item {
  margin-right: var(--gap-horizontal);
}
.adm-space-horizontal > .adm-space-item:last-child {
  margin-right: 0;
}
.adm-space-horizontal.adm-space-wrap {
  flex-wrap: wrap;
  margin-bottom: calc(var(--gap-vertical) * -1);
}
.adm-space-horizontal.adm-space-wrap > .adm-space-item {
  padding-bottom: var(--gap-vertical);
}
.adm-space.adm-space-block {
  display: flex;
}
.adm-space-align-center {
  align-items: center;
}
.adm-space-align-start {
  align-items: flex-start;
}
.adm-space-align-end {
  align-items: flex-end;
}
.adm-space-align-baseline {
  align-items: baseline;
}
.adm-space-justify-center {
  justify-content: center;
}
.adm-space-justify-start {
  justify-content: flex-start;
}
.adm-space-justify-end {
  justify-content: flex-end;
}
.adm-space-justify-between {
  justify-content: space-between;
}
.adm-space-justify-around {
  justify-content: space-around;
}
.adm-space-justify-evenly {
  justify-content: space-evenly;
}
.adm-space-justify-stretch {
  justify-content: stretch;
}

.adm-tabs {
  --title-font-size: var(--adm-font-size-9);
  --content-padding: 12px;
  --active-line-height: 2px;
  --active-line-border-radius: var(--active-line-height);
  --active-line-color: var(--adm-color-primary);
  --active-title-color: var(--adm-color-primary);
  position: relative;
  min-width: 0;
}
.adm-tabs-header {
  position: relative;
  border-bottom: solid 1px var(--adm-color-border);
}
.adm-tabs-tab-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow-x: scroll;
  scrollbar-width: none;
}
.adm-tabs-tab-list::-webkit-scrollbar {
  display: none;
}
.adm-tabs-tab-wrapper {
  padding: 0 12px;
}
.adm-tabs-tab-wrapper-stretch {
  flex: auto;
}
.adm-tabs-tab {
  white-space: nowrap;
  padding: 8px 0 10px;
  width: -moz-min-content;
  width: min-content;
  margin: 0 auto;
  font-size: var(--title-font-size);
  position: relative;
  cursor: pointer;
}
.adm-tabs-tab-active {
  color: var(--active-title-color);
}
.adm-tabs-tab-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.adm-tabs-tab-line {
  position: absolute;
  bottom: 0;
  height: var(--active-line-height);
  background: var(--active-line-color);
  border-radius: var(--active-line-border-radius);
}
.adm-tabs-content {
  padding: var(--content-padding);
}
.adm-tabs-header-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 30px;
  height: 100%;
  pointer-events: none;
}
.adm-tabs-header-mask-left {
  left: 0;
  background: linear-gradient(to right, var(--adm-color-background), rgba(255, 255, 255, 0));
}
.adm-tabs-header-mask-right {
  right: 0;
  background: linear-gradient(to left, var(--adm-color-background), rgba(255, 255, 255, 0));
}

.adm-text-area {
  --font-size: var(--adm-font-size-9);
  --color: var(--adm-color-text);
  --placeholder-color: var(--adm-color-light);
  --disabled-color: var(--adm-color-weak);
  --text-align: left;
  --count-text-align: right;
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.adm-text-area-element {
  font-family: var(--adm-font-family);
  resize: none;
  flex: auto;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  color: var(--color);
  font-size: var(--font-size);
  line-height: 1.5;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  min-height: 1.5em;
  text-align: var(--text-align);
}
.adm-text-area-element::-moz-placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-text-area-element::placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-text-area-element:-webkit-autofill {
  background-color: transparent;
}
.adm-text-area-element:disabled {
  color: var(--disabled-color);
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: var(--disabled-color);
}
.adm-text-area-element:-moz-read-only {
  cursor: default;
}
.adm-text-area-element:read-only {
  cursor: default;
}
.adm-text-area-element:invalid {
  box-shadow: none;
}
.adm-text-area-element::-ms-clear {
  display: none;
}
.adm-text-area-element[readonly] {
  pointer-events: none;
}
.adm-text-area-element-hidden {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
}
.adm-text-area-count {
  text-align: var(--count-text-align);
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-9);
  padding-top: 8px;
}

.adm-toast-mask .adm-toast-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.adm-toast-mask .adm-toast-main {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 204px;
  max-height: 70%;
  overflow: auto;
  color: white;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  pointer-events: all;
  font-size: var(--adm-font-size-7);
  line-height: 1.5;
  box-sizing: border-box;
  text-align: left;
  text-align: initial;
}
.adm-toast-mask .adm-toast-main-text {
  padding: 12px;
  min-width: 0px;
}
.adm-toast-mask .adm-toast-main-icon {
  padding: 35px 12px;
  min-width: 150px;
}
.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
  text-align: center;
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
}
.adm-toast-loading {
  --size: 48px;
  margin: 0 auto 8px;
}

.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  width: 32px;
  width: var(--size);
  height: 32px;
  height: var(--size);
}
.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  animation: adm-spin-loading-rotate 0.8s infinite linear;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.adm-auto-center {
  display: flex;
  justify-content: center;
}
.adm-auto-center-content {
  flex: 0 1 auto;
}

.show-voting-pc-model .show-voting-model-image {
  display: flex;
  justify-content: center;
  padding-top: 40rem;
  padding-bottom: 10rem;
}
.show-voting-pc-model .show-voting-model-image .image {
  width: 180rem;
}
.show-voting-pc-model .show-voting-model-title {
  font-size: 36rem;
  font-weight: bold;
  text-align: center;
  padding: 0 50rem 20rem;
}
.show-voting-pc-model .show-voting-model-content-box {
  display: flex;
  justify-content: center;
  padding: 0 68rem 30rem;
}
.show-voting-pc-model .show-voting-model-content {
  font-size: 16rem;
}
.show-voting-pc-model .show-voting-model-btn-box {
  display: flex;
  justify-content: center;
  padding-bottom: 30rem;
}
.show-voting-pc-model .show-voting-model-btn-box .show-voting-model-btn {
  color: #fff;
  font-size: 24rem;
  padding: 15rem 120rem;
  border-radius: 40rem;
  background-image: linear-gradient(45deg, #2cb5fc, #007aff);
  cursor: pointer;
}
.show-voting-pc-model .voting-purchase-offer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.show-voting-pc-model .voting-purchase-offer img {
  width: 120rem;
}

.gallery-detail-pc-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.gallery-detail-pc-container .gallery-nav-box {
  display: flex;
  justify-content: flex-start;
  max-width: 1385px;
  width: 100%;
}
.gallery-detail-pc-container .gallery-nav-box .adm-nav-bar-back {
  font-size: 18px;
}
.gallery-detail-pc-container .detail-box {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 40rem;
}
.gallery-detail-pc-container .detail-box .avatar-box {
  width: 600rem;
  height: 600rem;
  border-radius: 10rem;
  background-color: #f6fbff;
  overflow: hidden;
  text-align: center;
}
.gallery-detail-pc-container .detail-box img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-detail-pc-container .detail-box .info-box {
  width: 542rem;
  margin-left: 45rem;
}
.gallery-detail-pc-container .detail-box .author {
  position: relative;
  font-size: 48rem;
  line-height: 60rem;
  word-break: break-all;
  margin-top: 27rem;
  margin-bottom: 36rem;
}
.gallery-detail-pc-container .detail-box .ticket-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120rem;
}
.gallery-detail-pc-container .detail-box .ticket-box .ticket {
  display: flex;
  align-items: center;
  font-size: 28rem;
  font-weight: bold;
}
.gallery-detail-pc-container .detail-box .ticket-box .ticket img {
  width: 40rem;
  height: 40rem;
  margin-right: 13rem;
}
.gallery-detail-pc-container .detail-box .ticket-box .like {
  cursor: pointer;
}
.gallery-detail-pc-container .detail-box .ticket-box .btn-box {
  display: flex;
  align-items: center;
}
.gallery-detail-pc-container .detail-box .ticket-box .btn {
  display: flex;
  align-items: center;
  font-size: 28rem;
}
.gallery-detail-pc-container .detail-box .ticket-box .btn img {
  width: 32rem;
  height: 32rem;
  margin-right: 13rem;
}
.gallery-detail-pc-container .detail-box .ticket-box .share {
  margin-right: 64rem;
}
.gallery-detail-pc-container .detail-box .share-description-box {
  width: 100%;
}
.gallery-detail-pc-container .detail-box .share-description-box .share-description {
  font-size: 14rem;
  word-break: break-all;
  padding: 12rem;
  border: 1rem solid #e1e5e9;
  border-radius: 5rem;
}
.gallery-detail-pc-container .detail-box .share-btn-box {
  display: flex;
  justify-content: space-around;
  margin-top: 45rem;
}
.gallery-detail-pc-container .detail-box .share-btn-box .btn {
  position: relative;
  width: 48rem;
  height: 48rem;
  cursor: pointer;
}
.gallery-detail-pc-container .detail-box .share-btn-box .btn img {
  width: 100%;
  height: 100%;
}

.show-submit-pc-model {
  width: 600rem;
  height: 490rem;
  padding-top: 90rem;
}
.show-submit-pc-model .show-submit-model-title {
  font-size: 36rem;
  font-weight: bold;
  text-align: center;
}
.show-submit-pc-model .show-submit-model-content {
  font-size: 16rem;
  text-align: center;
  margin: 10rem 0;
}
.show-submit-pc-model .form-item {
  margin: 20rem 0 60rem;
}
.show-submit-pc-model .show-submit-model-input {
  display: flex;
  justify-content: center;
  padding: 15rem 80rem 10rem;
}
.show-submit-pc-model .show-submit-model-input .ant-form-item-with-help {
  margin: 0;
}
.show-submit-pc-model .show-submit-model-input .input {
  width: 100%;
  font-size: 16rem;
  line-height: 16rem;
  padding: 12rem 63rem;
  border-radius: 50rem;
}
.show-submit-pc-model .show-submit-model-agree {
  display: flex;
  justify-content: center;
  color: #007aff;
}
.show-submit-pc-model .show-submit-model-agree .show-submit-model-agree-icon {
  width: 22rem;
  height: 22rem;
}
.show-submit-pc-model .show-submit-model-btn-box {
  display: flex;
  justify-content: center;
  padding-bottom: 30rem;
  margin-top: 16rem;
}
.show-submit-pc-model .show-submit-model-submit-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14rem;
  color: #fea42a;
}
.show-submit-pc-model .show-submit-model-submit-warning img {
  width: 12rem;
  margin-right: 6rem;
}
.show-submit-pc-model .adm-checkbox-custom-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

:global .async-comp-loading {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-voting-phone-model .show-voting-model-image {
  display: flex;
  justify-content: center;
  padding-top: 40rem;
  padding-bottom: 10rem;
}
.show-voting-phone-model .show-voting-model-image .image {
  width: 102rem;
}
.show-voting-phone-model .show-voting-model-title {
  font-size: 18rem;
  font-weight: bold;
  text-align: center;
  padding: 0 50rem 20rem;
}
.show-voting-phone-model .show-voting-model-content {
  font-size: 12rem;
  text-align: center;
  padding: 0 38rem 20rem;
}
.show-voting-phone-model .show-voting-model-agree {
  display: flex;
  justify-content: center;
  color: #007aff;
}
.show-voting-phone-model .show-voting-model-agree .show-voting-model-agree-icon {
  width: 19rem;
  height: 19rem;
}
.show-voting-phone-model .show-voting-model-btn-box {
  display: flex;
  justify-content: center;
  padding: 30rem 0;
}
.show-voting-phone-model .voting-purchase-offer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.show-voting-phone-model .voting-purchase-offer img {
  width: 100rem;
}

.gallery-detail-container {
  position: relative;
}
.gallery-detail-container .gallery-nav {
  background-color: #f9f9f9;
}
.gallery-detail-container .detail-box {
  position: relative;
  width: 100%;
  padding: 10rem;
  border-radius: 10rem;
  background-color: #f6fbff;
  overflow: hidden;
}
.gallery-detail-container .detail-box .avatar {
  position: relative;
  width: 100%;
}
.gallery-detail-container .detail-box .avatar img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery-detail-container .detail-box .avatar .message {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48rem;
}
.gallery-detail-container .detail-box .avatar .message .author {
  position: relative;
  font-size: 18rem;
  color: #fff;
  word-break: break-all;
  z-index: 10;
}
.gallery-detail-container .detail-box .avatar .message .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 10rem;
  border-bottom-right-radius: 10rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.gallery-detail-container .detail-box .ticket-box {
  display: flex;
  justify-content: space-between;
  padding: 15rem 10rem;
}
.gallery-detail-container .detail-box .ticket-box .btn {
  display: flex;
  align-items: center;
  font-size: 18rem;
}
.gallery-detail-container .detail-box .ticket-box .btn img {
  width: 30rem;
  height: 30rem;
  margin-right: 10rem;
}
.gallery-detail-container .detail-box .ticket-box .ticket {
  font-weight: bold;
}
.gallery-detail-container .detail-box .ticket-box .like {
  cursor: pointer;
}
.gallery-detail-container .detail-box .share-description-box {
  padding: 0 10rem;
}
.gallery-detail-container .detail-box .share-description-box .share-description {
  font-size: 14rem;
  word-break: break-all;
  padding: 12rem;
  border: 1rem solid #e1e5e9;
  border-radius: 5rem;
}
.gallery-detail-container .detail-box .share-btn-box {
  display: flex;
  justify-content: space-around;
  padding: 30rem 0;
}
.gallery-detail-container .detail-box .share-btn-box .btn {
  position: relative;
  width: 30rem;
  height: 30rem;
  cursor: pointer;
}
.gallery-detail-container .detail-box .share-btn-box .btn img {
  width: 100%;
  height: 100%;
}

.show-submit-phone-model {
  width: 300rem;
  height: 369rem;
  padding-top: 60rem;
}
.show-submit-phone-model .show-submit-model-title {
  font-size: 18rem;
  font-weight: bold;
  text-align: center;
}
.show-submit-phone-model .form-item {
  margin: 10rem 0 40rem;
}
.show-submit-phone-model .show-submit-model-content {
  font-size: 12rem;
  text-align: center;
  padding: 5rem 0 10rem;
}
.show-submit-phone-model .warning-line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18rem;
  line-height: 18rem;
}
.show-submit-phone-model .show-submit-model-submit-warning {
  font-size: 12rem;
  color: #fea42a;
  text-align: center;
}
.show-submit-phone-model .show-submit-model-submit-warning img {
  display: inline-block;
  width: 12rem;
  margin-right: 5rem;
}
.show-submit-phone-model .show-submit-model-input {
  display: flex;
  justify-content: center;
  padding: 10rem 23rem;
}
.show-submit-phone-model .show-submit-model-input .ant-form-item-with-help {
  margin: 0;
}
.show-submit-phone-model .show-submit-model-input .input {
  width: 100%;
  font-size: 12rem;
  padding: 8rem 20rem;
  border-radius: 50rem;
}
.show-submit-phone-model .show-submit-model-agree {
  display: flex;
  justify-content: center;
  color: #007aff;
  margin-bottom: 20rem;
}
.show-submit-phone-model .show-submit-model-agree .show-submit-model-agree-icon {
  width: 19rem;
  height: 19rem;
}
.show-submit-phone-model .show-submit-model-btn-box {
  display: flex;
  justify-content: center;
  padding-bottom: 30rem;
}
.show-submit-phone-model .adm-checkbox-custom-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/88d6dd6988e7a2e242cb.ttf);
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/d74c47f6cd2037416298.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/28c7a5780ddd11ae2446.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/a62b956f4f1ad97a2950.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/d625716e152049c1c80e.ttf);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-goglobal-web/1.1.1/59544d252b48b5c4eff4.ttf);
  font-weight: 900;
  font-style: normal;
}
* {
  font-family: 'HarmonyOS Sans';
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.adm-center-popup-wrap {
  top: 300rem;
  z-index: 500;
}
body {
  overflow: hidden;
}

