@charset "UTF-8";

html {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
    font-size: 16px;
}

@media all and (min-width: 400px) {
    html {
        font-size: 22px;
    }
}

@media all and (min-width: 600px) {
    html {
        font-size: 32px;
    }
}

body {
    width: 100%;
    height: 100%;
    position: relative;
}

.rotate-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    color: #fff;
    line-height: 300px;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1000;
    font-size: 20px;
    display: none;
}

// userinfo test
.userinfo-box {
    position: fixed;
    width: 100%;
    height: 50px;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    z-index: 100;
    .info {
        height: 24px;
    }
    .control {
        overflow: hidden;
        span {
            font-size: 18px;
            padding: 0 10px;
            color: #000;
            background-color: rgba(255, 255, 255, 0.6);
            line-height: 24px;
            margin-left: 10px;
            float: left;
        }
    }
}