* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* 新的 */

html {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%
}

html,
body {
  height: 100%;
  overflow-y: hidden;
  touch-action: manipulation;
}

#__nuxt {
  max-width: 8.8rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #F5F5FA;
  cursor: pointer;
}


body {
  font-size: 14px;
  position: relative;
  font-family: 'PingFang SC', 'Microsoft Yahei', sans-serif;
  overflow-y: auto;
}

img {
  border: none;
}

element {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: none;
}

div,
a,
img {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html {
  font-size: calc(100vw * 100 / 390);
}

body,
a,
input,
textarea,
button {
  outline: none;
  border: none;
  text-decoration: none;
}

button {
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  cursor: pointer;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.emptyText {
  font-size: 14px;
  color: #a3a4b1;
  text-align: center;
  line-height: 50px;
}

html ::-webkit-scrollbar {
  display: none;
}

@media (min-width: 8.8rem) {
  html {
    font-size: 48px;
  }
}


@keyframes roll-6 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1000%, 0);
    transform: translate3d(0, -600%, 0);
  }
}


@keyframes roll-10 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1000%, 0);
    transform: translate3d(0, -1000%, 0);
  }
}

@keyframes roll-28 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -2800%, 0);
    transform: translate3d(0, -2800%, 0);
  }
}

@keyframes roll-49 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -4900%, 0);
    transform: translate3d(0, -4900%, 0);
  }
}

@keyframes roll-80 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -8000%, 0);
    transform: translate3d(0, -8000%, 0);
  }
}

.roll {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.roll.roll6 {
  position: static;
  animation: roll-6 1.8s infinite linear;
}

.roll.roll10 {
  position: static;
  animation: roll-10 3s infinite linear;
}

.roll.roll28 {
  position: static;
  animation: roll-28 8.4s infinite linear;
}

.roll.roll49 {
  position: static;
  animation: roll-49 14.7s infinite linear;
}

.roll.roll80 {
  position: static;
  animation: roll-80 24s infinite linear;
}

.actions-popover {
  .van-popover__content {
    padding: 0 0.1rem;

    .van-popover__action {
      width: 1.84rem;
      padding: 0;
      justify-content: center;
      border-bottom: 0.01rem solid #f3f4f9;

      .van-popover__action-text {
        flex: unset;
      }

      .van-icon__image {
        width: 0.32rem;
        height: 0.32rem;
      }
    }
  }
}

@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (overscroll-behavior-y: none) {
    html {
      min-height: 100.3%;
      overscroll-behavior-y: none;
    }
  }
}

/* prevent pull-to-refresh for Safari 9~15 */
@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (not (overscroll-behavior-y: none)) {
    html {
      height: 100%;
      overflow: hidden;
    }

    body {
      margin: 0px;
      max-height: 100%;
      /* or `height: calc(100% - 16px);` if body has default margin */
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    /* in this case to disable pinch-zoom, set `touch-action: pan-x pan-y;` on `body` instead of `html` */
  }
}

/* prevent pull-to-refresh for Chrome 63+ */
body {
  overscroll-behavior-y: none;
}

.van-popup {
  width: 100%;
  max-width: 8.8rem !important;

  &.actions-popover {
    width: inherit;
  }
}

.van-overlay {
  max-width: 8.8rem;
  left: 50% !important;
  transform: translateX(-50%);
}

.van-dropdown-item {
  max-width: 8.8rem;
  margin: 0px auto;
}

.van-popup.van-popup--top {
  position: absolute;
}

.van-popup.van-popup--bottom {
  left: 50%;
  transform: translateX(-50%);
}

.van-popup.van-image-preview {
  background-color: transparent;
  height: 100%;
  left: 0;
  max-width: none;
  position: fixed;
  top: 0;
  transform: none;
  width: 100%
}

.van-icon.van-image-preview__close-icon {
  color: var(--van-image-preview-close-icon-color);
  font-size: var(--van-image-preview-close-icon-size);
  position: absolute;
  z-index: var(--van-image-preview-close-icon-z-index);
}