html {
  height: 100%;
  font-size: 100px;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
  font-family: "NotoSansHans-Regular" !important;
}
@font-face {
  font-family: "NotoSansHans-Regular";
  src: url('https://resources.shuhua.com/publicFonts/NotoSansHans-Regular.otf') format('opentype');
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 0.14rem;
  background: #020820;
  overflow: auto;
}
@font-face {
  font-family: "sh_title";
  src: url("../font/sh_title.ttf");
}
@font-face {
  font-family: "sh_num";
  src: url("../font/sh_num.ttf");
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  padding: 0;
  margin: 0;
}
#app {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#app .sh_header {
  width: 100%;
  height: 1.3rem;
}
#app .sh_header .sh_header_main {
  position: relative;
  width: 100%;
  height: 0.9rem;
  box-sizing: border-box;
  background: url("../images/title.png") no-repeat top center;
  background-size: 100%;
  padding-top: 0.2rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#app .sh_header .sh_header_main .left_arrow {
  position: absolute;
  left: 0.58rem;
  top: 0.26rem;
  width: 0;
  height: 0.16rem;
  background: url("../images/arrow_left.png") no-repeat left center;
  background-size: 2.78rem 100%;
  animation: anim_arrow 2s infinite ease-out;
}
#app .sh_header .sh_header_main .right_arrow {
  position: absolute;
  right: 0.58rem;
  top: 0.26rem;
  width: 0;
  height: 0.16rem;
  background: url("../images/arrow_right.png") no-repeat right center;
  background-size: 2.78rem 100%;
  animation: anim_arrow 2s infinite ease-out;
}
@keyframes anim_arrow {
  from {
    width: 0;
  }
  to {
    width: 2.78rem;
  }
}
#app .sh_header .sh_header_main .header_center {
  width: 7.72rem;
  height: 0.7rem;
  line-height: 0.75rem;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
#app .sh_header .sh_header_main .header_center .double_arrow {
  width: 0.66rem;
  height: 0.55rem;
  box-sizing: border-box;
  margin-top: 0.08rem;
}
#app .sh_header .sh_header_main .header_center .double_arrow img {
  width: 100%;
  height: 100%;
}
@keyframes bounce-left {
  25% {
    transform: translatex(-3px);
  }
  50% {
    transform: translatex(0);
  }
  75% {
    transform: translatex(3px);
  }
  100% {
    transform: translatex(0);
  }
}
@keyframes bounce-right {
  25% {
    transform: translatex(3px);
  }
  50% {
    transform: translatex(0);
  }
  75% {
    transform: translatex(-3px);
  }
  100% {
    transform: translatex(0);
  }
}
#app .sh_header .sh_header_main .header_center .double_arrow_left {
  animation: bounce-left 2s infinite linear;
}
#app .sh_header .sh_header_main .header_center .double_arrow_right {
  animation: bounce-right 2s infinite linear;
}
#app .sh_header .sh_header_main .header_center .page_title {
  width: 6.4rem;
  height: 0.7rem;
  line-height: 0.75rem;
  box-sizing: border-box;
  margin: 0 auto;
  flex: none;
  text-align: center;
  color: #FFFFFF;
  font-family: "sh_title";
  font-size: 0.48rem;
  text-shadow: 0 2px 0 #341ACE;
}
#app .sh_header .sh_header_main .header_center .page_title::before {
  width: 0.66rem;
  height: 0.55rem;
  content: "";
}
#app .sh_header .sh_time {
  width: 100%;
  height: 0.2rem;
  padding-right: 0.4rem;
  line-height: 0.2rem;
  color: #FFFFFF;
  font-size: 0.16rem;
  text-align: right;
  box-sizing: border-box;
}
#app .main {
  position: relative;
  width: 100%;
  height: calc(100% - 0.9rem);
  box-sizing: border-box;
  padding-top: 0.22rem;
}
.clearfix:after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.s_elli {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.noData {
  color: #FFFFFF;
  font-size: 0.16rem;
  text-align: center;
}
[v-cloak] {
  display: none;
}
