html{
    -webkit-text-size-adjust: none;
    /* -webkit-user-select: none;
            user-select: none; */
    -webkit-touch-callout: none;
    font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, sans-serif;
    font-size: 100px;
}
html,
body{
    width: 100%;
    height: 100%;
}
body,h5,h4,h3,h2,h1,p,dl,dt,dd,ol,ul,th,td{
    margin: 0;
    padding: 0;
    font-weight: normal;
}
a{
    background: none;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
    outline: none;
    -webkit-appearance: none;
    text-decoration: none;
}
em,i{
    font-style: normal
}
li{
    list-style: none
}
img{
    border: none;
    vertical-align: top;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
::-webkit-scrollbar{
    width: 0;
    border-radius: 10%;
    background-color: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb{
    border-radius: 10%;
    background-color: rgba(10, 10, 10, 0);
    -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.bs-box{
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.bs-bg{
    background: transparent none no-repeat 0 0;
    -webkit-background-size: 100% 100%;
            background-size: 100% 100%;
}
.bs-tapColor{
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    z-index: 1;
}
.bs-btnScale{
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition-duration: .1s;
            transition-duration: .1s;
}
.bs-btnScale:active{
    -webkit-transform: scale(.9);
            transform: scale(.9);
}
.bs-after:before,
.bs-after:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background: transparent none no-repeat 0 0;
  background-size: 100% auto;
}

.bgBox {
  display: inline-block;
  background: transparent none no-repeat center 0;
  background-size: cover;
  box-sizing: border-box;
}

.absBgBox {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent none no-repeat center 0;
  background-size: cover;
  box-sizing: border-box;
}
.btnTap {
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  box-sizing: border-box;
}

.btnTapScale {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: .1s;
  transition-duration: .1s;
}

.btnTapScale:active {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}


.bs-main{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: .12rem;
    overflow: hidden;
}
.bs-absolute{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bs-exit{
    width: 1.21rem;
    height: .75rem;
    cursor: pointer;
    z-index: 100;
}
.bs-mask{
    display: none;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}
.bs-popupBox{
    position:fixed;
    z-index: -1;
    opacity: 0;
}
.bs-popupMask{
    background-color: rgba(0,0,0,.5);
}
.bs-popupCont{
    /* top: 0; */
    /* -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-duration: .1s;
    transition-duration: .1s; */
    left: 50%;
    top: 50%;
    border-radius: .35rem;
    width: 3.5rem;
    height: auto;
    min-height: .7rem;
    line-height: .7rem;
    color: #333;
    font-size: .28rem;
    text-align: center;
    background-color: white;
    letter-spacing: .1px;
    transform: translate(-50%, -50%);
    display: none;
}
.bs-popupBoxAct{
    z-index: 10;
    opacity: 1;
    transition: opacity .2s;
}

.bs-popupBoxAct .bs-popupContAct{
    display: block;
}
.bs-frame{
    display: none;
}
.bs-frameShow .bs-frame{
    display: block;
}