@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;
    font-family: 'Microsoft YaHei';
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes jump4 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.rotate-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    background-color: #222;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 320px;
    color: #fff;
    text-align: center;
}

// @media screen and (orientation:landscape) {
//     .rotate-overlay {
//         display: block;
//     }
// }


