@charset "utf-8";
html,body{
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
#renderCanvas{
    width: 100%;
    height: 100%;
    touch-action:none;
}
.unselectable {
    user-select: none; /* 禁止选择文本 */
    -webkit-user-select: none; /* Safari 和 Chrome 的兼容性 */
    -moz-user-select: none; /* Firefox 的兼容性 */
    -ms-user-select: none; /* IE 和 Edge 的兼容性 */
}
.loading{
    position: absolute;
    left: 0px;
    top:0px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading img{
    width: 20%;
}
.loading p{
    position: absolute;
    color: white;
    font-size: 20px;
}
.listpic{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 8%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    background: white;
}
.itempic{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
}
.itempic img{
    height: 90%;
}
