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

html,
body {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: 'PingFangSC-Regular';
  color: #3d3f46;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: 'YouSheBiaoTiHei';
  src: url('https://wtbl-static.oss-cn-hangzhou.aliyuncs.com/font/logo-title.woff2') format('woff2'),
    url('https://wtbl-static.oss-cn-hangzhou.aliyuncs.com/font/logo-title.ttf') format('truetype'),
    url('https://wtbl-static.oss-cn-hangzhou.aliyuncs.com/font/logo-title.eot')
      format('embedded-opentype'),
    url('https://wtbl-static.oss-cn-hangzhou.aliyuncs.com/font/logo-title.svg') format('svg'),
    url('https://wtbl-static.oss-cn-hangzhou.aliyuncs.com/font/logo-title.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

input {
  text-indent: 0;
  background: transparent;
  border: 0 none;
  resize: none;
  outline: none; /*清除选中效果的默认蓝色边框 */
  -webkit-appearance: none; /*清除浏览器默认的样式 */
  line-height: normal;
}

input:focus {
  color: #8b8791;
}

/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}

/** 重置文本格式元素 **/
a,
a:hover,
a:active,
a:link,
a:visited {
  text-decoration: none;
}

#root {
  height: 100%;
  position: relative;
  background: #fff;
}

/* iframe {
  display: none;
} */

._nc {
  position: relative !important;
}

.stage {
  width: 100%;
  height: 0.88rem !important;
  padding: 0 !important;
}

/* 滑动条高度、边框、背景色等 */
._nc .slider {
  height: 0.88rem !important;
  /*border-radius: 0.44rem !important;*/
  box-shadow: none !important;
  background-color: #f2f6ff !important;
  left: 0 !important;
  right: 0 !important;
  box-shadow: 0px 2px 4px 0px rgba(234, 234, 234, 1) !important;
}

/* 滑动条 */
._nc .track div,
._nc .label {
  /*border-radius: 0.44rem !important;*/
  color: #fff;

  line-height: 0.88rem !important;
  height: 0.88rem !important;
  text-align: center !important;
  font-size: 0.28rem !important;
}

/* 滑块 */
._nc .button {
  line-height: normal;
  width: 0.88rem !important;
  height: 0.88rem !important;
  /*border-radius: 0.44rem !important;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

._nc .icon-ok {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  margin: auto !important;

  font-size: 0.5rem !important;
  color: #004ee6 !important;
  background-image: none !important;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* 滑动条背景色-正常 */
._nc .bg-green {
  background-color: #004ee6 !important;
}

/* 滑动条背景色-失败 */
._nc .bg-red {
  background-color: #ff5500;
}

._nc .stage1 .icon {
  position: relative;
}

._nc .stage1 {
  z-index: 10 !important;
}

._nc .stage2 {
  z-index: 5 !important;
}

._nc .stage3 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  background: #f2f6ff !important;
  z-index: 0 !important;
}

._nc .stage3 .menu {
  position: relative !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
}

._nc .stage3 .title {
  font-size: 0.28rem !important;
  margin: 0 !important;
  color: #777;
  width: 100%;
}

._nc .stage3 .menu.feedback {
  display: none !important;
  background-position: -160px 0;
}

._nc .stage3 .menu.nc-sep {
  display: none !important;
  background-position: -160px 0;
}

._nc .stage3 .menu .label {
  top: 0 !important;
}

/* 刷新链接 */
._nc .stage3 .menu.refresh {
  border-right: 0 !important;
}

.default_loading {
  position: fixed;
  width: 2.5em;
  height: 2.5em;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
  transform: rotate(165deg);
}
.default_loading:before,
.default_loading:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
.default_loading:before {
  animation: before 2s infinite;
}
.default_loading:after {
  animation: after 2s infinite;
}
@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.my_fade {
  animation: myfade 0.5s 1;
  -webkit-animation: myfade 0.5s 1;
}
@keyframes myfade {
  from {
    opacity: 0.6;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes myfade /*Safari and Chrome*/ {
  from {
    opacity: 0.6;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.prism-player video {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  transform-origin: left !important;
}

/*登录滑动验证*/
.nc-container .nc_scale span {
  height: 34px !important;
}
.nc-container .nc_wrapper {
  width: auto !important;
}
.nc-container .scale_text.scale_text.slidetounlock span[data-nc-lang='_startTEXT'] {
  -webkit-text-fill-color: #666 !important;
}

.nc-container .nc_scale .btn_ok {
  color: #049e02 !important;
}
