
/* rest */
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: 12px;
}
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 */
::-webkit-scrollbar{
    width: .01rem;
    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 6px rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

/* keyframes */
@keyframes scaleBig{
    0%{
        transform: scale(0);
    }
    20%{
        transform: scale(1.3);
    }
    40%{
        transform: scale(.8);
    }
    100%{
        transform: scale(1);
    }
}
@-webkit-keyframes scaleBig{
    0%{
        -webkit-transform: scale(0);
    }
    20%{
        -webkit-transform: scale(1.3);
    }
    40%{
        -webkit-transform: scale(.8);
    }
    100%{
        -webkit-transform: scale(1);
    }
}

/* base */
.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-main{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: .12rem;
    overflow: hidden;
}
.bs-mask{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10;
}
.bs-frame{
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.bs-frameShow{
    opacity: 1;
    -webkit-transition-duration: .1s;
            transition-duration: .1s;
}
.bs-degin{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    width: 100%;
    height: 100%;
}
.bs-exit{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 1.25rem;
    height: .75rem;
    cursor: pointer;
    z-index: 100;
}
.bs-tipMsgBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.bs-tipMsgMask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
.bs-tipMsgCont{
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid white;
    border-radius: .2rem;
    padding: .15rem .5rem;
    line-height: 1;
    color: white;
    background-color: #6d1f00;
    font-size: .2rem;
    box-shadow: 0 0.1rem 0.2rem 0.1rem rgba(0, 0, 0, .35);
    z-index: 1;
}