html,
body {
    height: 100%;
    overflow: hidden;
    font-size:100px;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    /* 解决iOS卡顿 */
    -webkit-overflow-scrolling: touch;
    /* 取消iOS的默认样式 */
    -webkit-appearance: none;
    /* 取消iOS可点击元素的灰色背景 */
    -webkit-tap-highlight-color: transparent;
}
.toasts {
    position: fixed;
    left: 0;
    right: 0;
    top: 40%;
    overflow: auto;
    text-align: center;
    z-index: 10000;
}
.toasts .toast {
display: inline-block;
background: rgba(0, 0, 0, 0.8);
color: #fff;
text-align: center;
font-size: 0.14rem;
padding: 10px;
width: 80%;
opacity: 0;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}


/* 隐藏滚动条 */

*::-webkit-scrollbar {
    display: none;
}
ul li{
    list-style: none
}