.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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  max-width: 54.4vw;
  max-height: 70%;
  overflow: auto;
  color: white;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2.13333vw;
  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: 3.2vw;
  min-width: 0;
}

.adm-toast-mask .adm-toast-main-icon {
  padding: 9.33333vw 3.2vw;
  min-width: 40vw;
}

.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
  text-align: center;
  margin-bottom: 2.13333vw;
  font-size: 9.6vw;
  line-height: 1;
}

.adm-toast-loading {
  --size: 12.8vw;
  margin: 0 auto 2.13333vw;
}
.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 8.53333vw;
  width: var(--size);
  height: var(--size);
}

.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  -webkit-animation: adm-spin-loading-rotate 0.8s infinite linear;
          animation: adm-spin-loading-rotate 0.8s infinite linear;
}

.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}

@-webkit-keyframes adm-spin-loading-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes adm-spin-loading-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  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-auto-center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.adm-auto-center-content {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
}
.adm-dialog {
  --z-index: var(--adm-dialog-z-index, 1000);
  ---z-index: var(--z-index);
}

.adm-dialog .adm-center-popup {
  --z-index: var(---z-index);
}

.adm-dialog-body {
  width: 100%;
  max-height: 70vh;
  font-size: var(--adm-font-size-6);
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.adm-dialog-body > * {
  -webkit-flex: none;
          flex: none;
}

.adm-dialog-body > .adm-dialog-content {
  -webkit-flex: auto;
          flex: auto;
}

.adm-dialog-body:not(.adm-dialog-with-image) {
  padding-top: 5.33333vw;
}

.adm-dialog-image-container {
  margin-bottom: 3.2vw;
  max-height: 40vh;
}

.adm-dialog-header {
  margin-bottom: 2.13333vw;
  padding: 0 3.2vw;
}

.adm-dialog-title {
  margin-bottom: 2.13333vw;
  padding: 0 3.2vw;
  font-weight: bold;
  font-size: var(--adm-font-size-10);
  line-height: 6.66667vw;
  text-align: center;
}

.adm-dialog-content {
  padding: 0 3.2vw 5.33333vw;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  color: var(--adm-color-text);
}

.adm-dialog-content-empty {
  padding: 0;
  height: 3.2vw;
}

.adm-dialog-footer {
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.adm-dialog-footer .adm-dialog-action-row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
          align-items: stretch;
  border-top: 1px solid var(--adm-color-border);
}

.adm-dialog-footer .adm-dialog-action-row > * {
  -webkit-flex: 1;
          flex: 1;
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button {
  padding: 2.66667vw;
  font-size: var(--adm-font-size-10);
  line-height: 6.66667vw;
  border-radius: 0;
  border-right: solid 1px var(--adm-color-border);
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button-bold {
  font-weight: bold;
}

.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button:last-child {
  border-right: none;
}

.adm-dialog-image-container {
  overflow-y: auto;
}
.adm-image {
  --width: var(--adm-image-width, auto);
  --height: var(--adm-image-height, auto);
  width: var(--width);
  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: 6.4vw;
  min-width: 6.4vw;
}

.adm-image-tip > svg {
  width: 6.4vw;
  height: 6.4vw;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--adm-color-weak);
}
.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, 1.06667vw);
  --border-width: var(--adm-button-border-width, 0.26667vw);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 1.86667vw 3.2vw;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.adm-button:focus {
  outline: none;
}

.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
          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: 0;
}

.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: 0;
}

.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: 0.8vw;
  padding-bottom: 0.8vw;
  font-size: var(--adm-font-size-main);
}

.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 2.4vw;
  padding-right: 2.4vw;
}

.adm-button.adm-button-small {
  padding-top: 0.8vw;
  padding-bottom: 0.8vw;
  font-size: var(--adm-font-size-7);
}

.adm-button.adm-button-large {
  padding-top: 2.93333vw;
  padding-bottom: 2.93333vw;
  font-size: var(--adm-font-size-10);
}

.adm-button.adm-button-shape-rounded {
  --border-radius: 266.66667vw;
}

.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}

.adm-button-loading {
  vertical-align: bottom;
}

.adm-button-loading-wrapper {
  display: -webkit-flex;
  display: flex;
  height: 1.4em;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: 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, 2.13333vw);
  --max-width: var(--adm-center-popup-max-width, 75vw);
  --min-width: var(--adm-center-popup-min-width, 74.66667vw);
  --z-index: var(--adm-center-popup-z-index, 1000);
  position: fixed;
  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);
  -webkit-transform: translate(-50%, -50%);
          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: 2.13333vw;
  top: 2.13333vw;
  cursor: pointer;
  padding: 1.06667vw;
  font-size: 4.8vw;
  color: var(--adm-color-weak);
}
:root {
  --adm-radius-s: 1.06667vw;
  --adm-radius-m: 2.13333vw;
  --adm-radius-l: 3.2vw;
  --adm-font-size-1: 2.4vw;
  --adm-font-size-2: 2.66667vw;
  --adm-font-size-3: 2.93333vw;
  --adm-font-size-4: 3.2vw;
  --adm-font-size-5: 3.46667vw;
  --adm-font-size-6: 3.73333vw;
  --adm-font-size-7: 4vw;
  --adm-font-size-8: 4.26667vw;
  --adm-font-size-9: 4.53333vw;
  --adm-font-size-10: 4.8vw;
  --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: 3.46667vw;
  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: unset;
  transition: none;
}

.adm-plain-anchor:active {
  opacity: unset;
}

body.adm-overflow-hidden {
  overflow: hidden !important;
}

div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 0.53333vw);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  pointer-events: none;
}
.adm-action-sheet-popup > .adm-popup-body {
  border-top-left-radius: 2.13333vw;
  border-top-right-radius: 2.13333vw;
  overflow: hidden;
}

.adm-action-sheet-extra {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-7);
  padding: 4.8vw 3.2vw;
  border-bottom: 0.26667vw solid var(--adm-color-border);
}

.adm-action-sheet-button-list {
  border-bottom: 0.26667vw solid var(--adm-color-border);
}

.adm-action-sheet-button-item-wrapper {
  border-bottom: 0.26667vw solid var(--adm-color-border);
}

.adm-action-sheet-button-item-wrapper:last-child {
  border-bottom: none;
}

.adm-action-sheet-button-item {
  text-align: center;
  display: block;
  background-color: var(--adm-color-background);
  padding: 4.26667vw;
}

.adm-action-sheet-button-item:active {
  background-color: var(--adm-color-border);
}

.adm-action-sheet-button-item-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.4;
}

.adm-action-sheet-button-item-name {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-10);
}

.adm-action-sheet-button-item-description {
  font-size: var(--adm-font-size-6);
  color: var(--adm-color-weak);
  padding-top: 1.06667vw;
}

.adm-action-sheet-button-item-danger .adm-action-sheet-button-item-name {
  color: var(--adm-color-danger);
}

.adm-action-sheet-button-item-bold .adm-action-sheet-button-item-name {
  font-weight: bold;
}

.adm-action-sheet-cancel {
  background-color: var(--adm-color-fill-content);
  padding-top: 2.13333vw;
}
.adm-picker {
  --header-button-font-size: var(--adm-font-size-7);
  --title-font-size: var(--adm-font-size-7);
  --item-font-size: var(--adm-font-size-8);
  --item-height: 9.06667vw;
  width: 100%;
  height: 80vw;
  overflow: hidden;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  ---item-font-size: var(--item-font-size);
  ---item-height: var(--item-height);
}

.adm-picker .adm-picker-view.adm-picker-view {
  --item-font-size: var(---item-font-size);
  --item-height: var(---item-height);
}

.adm-picker-header {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  border-bottom: solid 0.26667vw var(--adm-color-border);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  padding: 1.06667vw 1.06667vw;
}

.adm-picker-header-button {
  font-size: var(--header-button-font-size);
  display: inline-block;
  padding: 2.13333vw 2.13333vw;
}

.adm-picker-header-button-disabled,
.adm-picker-header-button-disabled:active {
  opacity: 0.4;
  cursor: not-allowed;
}

.adm-picker-header-title {
  padding: 1.06667vw 1.06667vw;
  font-size: var(--title-font-size);
  color: var(--adm-color-text);
  text-align: center;
  -webkit-flex: 1;
          flex: 1;
}

.adm-picker-body {
  -webkit-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}

.adm-picker-body > .adm-picker-view {
  --height: 100%;
}

.adm-picker-popup .adm-popup-body {
  border-top-left-radius: 2.13333vw;
  border-top-right-radius: 2.13333vw;
}
.adm-picker-view {
  --height: 64vw;
  --item-height: 9.06667vw;
  --item-font-size: var(--adm-font-size-8);
  height: var(--height);
  width: 100%;
  display: -webkit-flex;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--adm-color-background);
}

.adm-picker-view-column {
  height: 100%;
  -webkit-flex: 1;
          flex: 1;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  touch-action: none;
  position: relative;
  z-index: 0;
}

.adm-picker-view-column-wheel {
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  position: absolute;
  top: calc(50% - var(--item-height) / 2);
  left: 0;
}

.adm-picker-view-column-wheel::before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -100vh;
}

.adm-picker-view-column-wheel::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: -100vh;
}

.adm-picker-view-column-item {
  font-size: var(--item-font-size);
  padding: 0 1.6vw;
  height: var(--item-height);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}

.adm-picker-view-column-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.adm-picker-view-column-accessible {
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  position: relative;
  top: calc(var(--item-height) * -1);
  z-index: 0;
  padding-bottom: 0.26667vw;
}

.adm-picker-view-column-accessible > * {
  -webkit-flex: 1;
          flex: 1;
  text-overflow: ellipsis;
}

.adm-picker-view-column-accessible-current {
  position: absolute;
  width: 100%;
  height: 100%;
}

.adm-picker-view-column-accessible-button {
  width: 100%;
  height: 100%;
}

.adm-picker-view-mask {
  position: absolute;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
}

.adm-picker-view-mask-top,
.adm-picker-view-mask-bottom {
  -webkit-flex: auto;
          flex: auto;
}

.adm-picker-view-mask-middle {
  height: var(--item-height);
  box-sizing: border-box;
  -webkit-flex: none;
          flex: none;
  border-top: solid 0.26667vw var(--adm-color-border);
  border-bottom: solid 0.26667vw var(--adm-color-border);
}

.adm-picker-view-mask-top {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}

.adm-picker-view-mask-bottom {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}

.adm-picker-view-loading-content {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}

.adm-picker-view-item-height-measure {
  position: relative;
  left: 0;
  top: 0;
  height: var(--item-height);
  width: 0;
  pointer-events: none;
}
.adm-popup {
  --z-index: var(--adm-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}

.adm-popup-body {
  position: fixed;
  background-color: var(--adm-color-background);
  z-index: calc(var(--z-index) + 10);
}

.adm-popup-body .adm-popup-close-icon {
  position: absolute;
  z-index: 100;
}

.adm-popup-body-position-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

.adm-popup-body-position-bottom .adm-popup-close-icon {
  right: 2.13333vw;
  top: 2.13333vw;
}

.adm-popup-body-position-top {
  width: 100%;
  top: 0;
  left: 0;
}

.adm-popup-body-position-top .adm-popup-close-icon {
  right: 2.13333vw;
  bottom: 2.13333vw;
}

.adm-popup-body-position-left {
  height: 100%;
  top: 0;
  left: 0;
}

.adm-popup-body-position-left .adm-popup-close-icon {
  right: 2.13333vw;
  top: 2.13333vw;
}

.adm-popup-body-position-right {
  height: 100%;
  top: 0;
  right: 0;
}

.adm-popup-body-position-right .adm-popup-close-icon {
  left: 2.13333vw;
  top: 2.13333vw;
}

.adm-popup-close-icon {
  cursor: pointer;
  padding: 1.06667vw;
  font-size: 4.8vw;
  line-height: 1;
  color: var(--adm-color-weak);
}
.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));
}

@-webkit-keyframes PhotoView__rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes PhotoView__rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes PhotoView__delayShow {
  0%,
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PhotoView__delayShow {
  0%,
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.PhotoView__Spinner {
  -webkit-animation: PhotoView__delayShow 0.4s linear both;
          animation: PhotoView__delayShow 0.4s linear both;
}
.PhotoView__Spinner svg {
  -webkit-animation: PhotoView__rotate 0.6s linear infinite;
          animation: PhotoView__rotate 0.6s linear infinite;
}

.PhotoView__Photo {
  will-change: transform;
  cursor: -webkit-grab;
  cursor: grab;
}
.PhotoView__Photo:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

@-webkit-keyframes PhotoView__animateIn {
  from {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes PhotoView__animateIn {
  from {
    opacity: 0.4;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes PhotoView__animateOut {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
}
@keyframes PhotoView__animateOut {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
}
.PhotoView__animateIn {
  opacity: 0.4;
  -webkit-animation: PhotoView__animateIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
          animation: PhotoView__animateIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.PhotoView__animateOut {
  opacity: 1;
  -webkit-animation: PhotoView__animateOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
          animation: PhotoView__animateOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.PhotoView__PhotoWrap {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}
.PhotoView__PhotoBox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.PhotoView__PhotoMask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.PhotoView-SlideWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow: hidden;
}

@-webkit-keyframes PhotoView__fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes PhotoView__fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__BannerWrap,
.PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__ArrowLeft,
.PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__ArrowRight,
.PhotoView-PhotoSlider__clean .PhotoView-PhotoSlider__FooterWrap {
  opacity: 0;
}
.PhotoView-PhotoSlider__willClose .PhotoView-PhotoSlider__BannerWrap:hover {
  opacity: 0;
}
.PhotoView-PhotoSlider__Backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.PhotoView-PhotoSlider__fadeIn {
  opacity: 0;
  -webkit-animation: PhotoView__fade 0.4s linear both;
          animation: PhotoView__fade 0.4s linear both;
}
.PhotoView-PhotoSlider__fadeOut {
  opacity: 0;
  animation: PhotoView__fade 0.4s linear both reverse;
}
.PhotoView-PhotoSlider__BannerWrap {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 5.86667vw;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease-out;
  z-index: 20;
}
.PhotoView-PhotoSlider__BannerWrap:hover {
  opacity: 1;
}
.PhotoView-PhotoSlider__Counter {
  padding: 0 1.33333vw;
  font-size: 1.86667vw;
  opacity: 0.75;
}
.PhotoView-PhotoSlider__BannerRight {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
}
.PhotoView-PhotoSlider__toolbarIcon {
  box-sizing: border-box;
  padding: 1.33333vw;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.2s linear;
}
.PhotoView-PhotoSlider__toolbarIcon:hover {
  opacity: 1;
}
.PhotoView-PhotoSlider__ArrowLeft,
.PhotoView-PhotoSlider__ArrowRight {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 9.33333vw;
  height: 13.33333vw;
  margin: auto;
  opacity: 0.75;
  z-index: 20;
  cursor: pointer;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.2s linear;
}
.PhotoView-PhotoSlider__ArrowLeft:hover,
.PhotoView-PhotoSlider__ArrowRight:hover {
  opacity: 1;
}
.PhotoView-PhotoSlider__ArrowLeft svg,
.PhotoView-PhotoSlider__ArrowRight svg {
  box-sizing: content-box;
  padding: 1.33333vw;
  width: 3.2vw;
  height: 3.2vw;
  fill: white;
  background: rgba(0, 0, 0, 0.3);
}
.PhotoView-PhotoSlider__ArrowLeft {
  left: 0;
}
.PhotoView-PhotoSlider__ArrowRight {
  right: 0;
}
.PhotoView-PhotoSlider__FooterWrap {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.33333vw;
  width: 100%;
  min-height: 5.86667vw;
  line-height: 1.5;
  font-size: 1.86667vw;
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: justify;
  transition: opacity 0.2s ease-out;
  z-index: 20;
}

