* {
    padding: 0;
    margin: 0;
    list-style: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
html, body {
    height: 100%;
    -webkit-user-select:none;
    user-select: none; 
}
html { -ms-touch-action:none; }
body {
    background-image: url(../images/svg/scan_bg.svg);
    background-size: cover;
}
.loading {
    position: absolute;
    width: 6rem;
    height: 7rem;
    background-color: #eee;
    border-radius: 0.4rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    line-height: 11rem;
    font-size: 0.9rem;
}
#userInfo, #readyPK {
    background: #fff;
    border-radius: 0.5rem;
    margin: 0 1rem;
}
#userInfo {
    margin-top: 4rem;
    padding: 2rem 0 1rem 0;
}
#readyPK {
    margin: 0.8rem 1rem;
}
#achievementPK {
    margin-top: 1.5rem;
}
section, section .sectionPart {
    display: flex;
    flex-direction: column;
}
#userInfo .headPhoto, #searchContainer .smallCircle, .currentUser .headerPhoto, .cotherUser .headerPhoto {    /* 头像 */
    background-size: cover;
}
.vsIcon {
    animation: vs_show 5s .6s ease-in-out
}
@keyframes vs_show {
    0%,100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
}
.css {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}