@charset "UTF-8";
:root {
  --van-action-bar-background: var(--van-background-2);
  --van-action-bar-height: 50px;
}
.van-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  box-sizing: content-box;
  height: var(--van-action-bar-height);
  background: var(--van-action-bar-background);
}
:root {
  --van-action-bar-button-height: 40px;
  --van-action-bar-button-warning-color: var(--van-gradient-orange);
  --van-action-bar-button-danger-color: var(--van-gradient-red);
}
.van-action-bar-button {
  flex: 1;
  height: var(--van-action-bar-button-height);
  font-weight: var(--van-font-bold);
  font-size: var(--van-font-size-md);
  border: none;
  border-radius: 0;
}
.van-action-bar-button--first {
  margin-left: 5px;
  border-top-left-radius: var(--van-radius-max);
  border-bottom-left-radius: var(--van-radius-max);
}
.van-action-bar-button--last {
  margin-right: 5px;
  border-top-right-radius: var(--van-radius-max);
  border-bottom-right-radius: var(--van-radius-max);
}
.van-action-bar-button--warning {
  background: var(--van-action-bar-button-warning-color);
}
.van-action-bar-button--danger {
  background: var(--van-action-bar-button-danger-color);
}
@media (max-width: 321px) {
  .van-action-bar-button {
    font-size: 13px;
  }
}
:root {
  --van-dialog-width: 320px;
  --van-dialog-small-screen-width: 90%;
  --van-dialog-font-size: var(--van-font-size-lg);
  --van-dialog-transition: var(--van-duration-base);
  --van-dialog-radius: 16px;
  --van-dialog-background: var(--van-background-2);
  --van-dialog-header-font-weight: var(--van-font-bold);
  --van-dialog-header-line-height: 24px;
  --van-dialog-header-padding-top: 26px;
  --van-dialog-header-isolated-padding: var(--van-padding-lg) 0;
  --van-dialog-message-padding: var(--van-padding-lg);
  --van-dialog-message-font-size: var(--van-font-size-md);
  --van-dialog-message-line-height: var(--van-line-height-md);
  --van-dialog-message-max-height: 60vh;
  --van-dialog-has-title-message-text-color: var(--van-gray-7);
  --van-dialog-has-title-message-padding-top: var(--van-padding-xs);
  --van-dialog-button-height: 48px;
  --van-dialog-round-button-height: 36px;
  --van-dialog-confirm-button-text-color: var(--van-primary-color);
}
.van-dialog {
  top: 45%;
  width: var(--van-dialog-width);
  overflow: hidden;
  font-size: var(--van-dialog-font-size);
  background: var(--van-dialog-background);
  border-radius: var(--van-dialog-radius);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: var(--van-dialog-transition);
  transition-property: transform, opacity;
}
@media (max-width: 321px) {
  .van-dialog {
    width: var(--van-dialog-small-screen-width);
  }
}
.van-dialog__header {
  color: var(--van-text-color);
  padding-top: var(--van-dialog-header-padding-top);
  font-weight: var(--van-dialog-header-font-weight);
  line-height: var(--van-dialog-header-line-height);
  text-align: center;
}
.van-dialog__header--isolated {
  padding: var(--van-dialog-header-isolated-padding);
}
.van-dialog__content--isolated {
  display: flex;
  align-items: center;
  min-height: 104px;
}
.van-dialog__message {
  color: var(--van-text-color);
  flex: 1;
  max-height: var(--van-dialog-message-max-height);
  padding: 26px var(--van-dialog-message-padding);
  overflow-y: auto;
  font-size: var(--van-dialog-message-font-size);
  line-height: var(--van-dialog-message-line-height);
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
}
.van-dialog__message--has-title {
  padding-top: var(--van-dialog-has-title-message-padding-top);
  color: var(--van-dialog-has-title-message-text-color);
}
.van-dialog__message--left {
  text-align: left;
}
.van-dialog__message--right {
  text-align: right;
}
.van-dialog__message--justify {
  text-align: justify;
}
.van-dialog__footer {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}
.van-dialog__confirm,
.van-dialog__cancel {
  flex: 1;
  height: var(--van-dialog-button-height);
  margin: 0;
  border: 0;
  border-radius: 0;
}
.van-dialog__confirm,
.van-dialog__confirm:active {
  color: var(--van-dialog-confirm-button-text-color);
}
.van-dialog--round-button .van-dialog__footer {
  position: relative;
  height: auto;
  padding: var(--van-padding-xs) var(--van-padding-lg) var(--van-padding-md);
}
.van-dialog--round-button .van-dialog__message {
  padding-bottom: var(--van-padding-md);
  color: var(--van-text-color);
}
.van-dialog--round-button .van-dialog__confirm,
.van-dialog--round-button .van-dialog__cancel {
  height: var(--van-dialog-round-button-height);
}
.van-dialog--round-button .van-dialog__confirm {
  color: var(--van-white);
}
.van-dialog--round-button .van-action-bar-button--first {
  border-top-left-radius: var(--van-radius-max);
  border-bottom-left-radius: var(--van-radius-max);
}
.van-dialog--round-button .van-action-bar-button--last {
  border-top-right-radius: var(--van-radius-max);
  border-bottom-right-radius: var(--van-radius-max);
}
.van-dialog-bounce-enter-from {
  transform: translate3d(0, -50%, 0) scale(0.7);
  opacity: 0;
}
.van-dialog-bounce-leave-active {
  transform: translate3d(0, -50%, 0) scale(0.9);
  opacity: 0;
}
.table-container[data-v-df311e97] {
  overflow-x: auto;
  max-width: 100%;
  position: relative;
}
table[data-v-df311e97] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
}
th[data-v-df311e97],
td[data-v-df311e97] {
  border: 1px solid #ebeef5;
  padding: 12px 8px;
  text-align: center;
  white-space: nowrap;
}
.frozen[data-v-df311e97] {
  position: sticky;
  background-color: #fff;
  z-index: 2;
}
td[data-v-df311e97]:first-child,
th[data-v-df311e97]:first-child {
  left: 0;
  z-index: 3;
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.06);
}
td[data-v-df311e97]:last-child,
th[data-v-df311e97]:last-child {
  right: 0;
  z-index: 3;
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.06);
}
th[data-v-df311e97]:first-child,
th[data-v-df311e97]:last-child {
  z-index: 4;
}
[data-v-df311e97] .van-popup .van-button__text {
  font-size: 14px !important;
}
[data-v-df311e97] .van-popup .van-dialog__header {
  padding-top: 13px;
}
[data-v-df311e97] .van-popup .van-cell__title {
  display: flex;
  align-items: center;
}
[data-v-df311e97] .van-popup .van-cell {
  padding: 4px 0 16px;
  font-size: 14px !important;
}
[data-v-df311e97] .van-popup .van-cell .van-cell__value {
  padding: 10px;
  background: #f3f3f3;
}
.whatbgvideo[data-v-9591394d] {
  display: block;
}
.whatbgvideonone[data-v-9591394d] {
  display: none;
}
[data-v-9591394d] .van-cell {
  font-size: 15px;
}
.bordersd[data-v-9591394d] {
  border: 1px solid #5b56e8;
  padding: 3px;
  border-radius: 3px;
}
.whatbgs[data-v-9591394d] {
  position: relative;
}
.whatbgs .whatbg[data-v-9591394d] {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e8e7fe;
  z-index: 10;
}
.whatbgs .whatbg .cens[data-v-9591394d] {
  display: inline-block;
  border: 1px solid #5b56e8;
}
.whatbgnone[data-v-9591394d] {
  display: none;
}