* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'PingFang SC', sans-serif;
}

html {
  font-size: 13.333vw;
  /*开启平滑滚动会覆盖jQuery的animate动画*/
  /*scroll-behavior: smooth;*/
}

body {
  width: 7.5rem;
}

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

a {
  text-decoration: none;
}

/*图片拉伸，撑满容器*/
img {
  display: block;
  width: 100%;
  height: 100%;
}

/*Chrome、Safari不显示滚动条*/
*::-webkit-scrollbar {
  display: none;
  width: 0;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  content: '';
  height: 0;
}

.clearfix {
  zoom: 1;
}

.oh {
  overflow: hidden;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*直播video不显示时间进度条*/
.video-live::-webkit-media-controls-timeline {
  display: none;
}

.video-live::-webkit-media-controls-current-time-display {
  display: none;
}

.video-live::-webkit-media-controls-time-remaining-display {
  display: none;
}

/*video隐藏下载按钮*/
video::-internal-media-controls-overflow-button {
  display: none !important;
}

video::-internal-media-controls-download-button {
  display: none !important;
}

input,
button,
select,
textarea {
  outline: none;
}

[v-cloak] {
  display: none;
}

/*toast*/
.false {
  position: fixed;
  top: 45%;
  left: 50%;
  z-index: 999;
  display: none;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: calc(100% - 0.4rem);
  min-height: 2.5rem;
  padding: 0.3rem;
  border-radius: 0.2rem;
  background: #282828;
  font-size: 0.3rem;
  color: #ffffff;
  line-height: 0.6rem;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}

/* 下拉刷新 */
.ptr--ptr .ptr--box .ptr--icon {
  display: none !important;
}
.ptr--ptr {
  box-shadow: none !important; /* 阴影效果 */
}
.ptr--ptr .ptr--content {
  font-size: 12px !important; /* 字号 */
  font-weight: normal !important;
}
.ptr--ptr .ptr--content .ptr--text {
  color: gray !important;
}
.ptr--ptr .ptr--content .ptr--text::before {
  content: ''; /* 必须声明 */
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid gray;
  border-radius: 50%;
  vertical-align: middle;
  border-top-color: transparent; /* 顶部透明形成缺口 */
  -webkit-animation: mescrollRotate 0.6s linear infinite;
  animation: mescrollRotate 0.6s linear infinite;
  margin-right: 6px;
}
@-webkit-keyframes mescrollRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes mescrollRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
