html,
body,
#app {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* position: fixed 不能动，去掉会引发跳转三方游戏时，iframe 高度为0 */
    position: fixed;
    top: 0;
    left: 0;
    font-family: Helvetica, STXihei, SimHei, serif;
}
* {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.refContanier {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.error {
    color: #ff1a18 !important;
}

.success {
    color: #4cbe00 !important;
}

.await {
    color: #ff6633 !important;
}

.handleUp {
    animation: handleUp 0.35s linear;
    animation-fill-mode: forwards;
    transform-origin: 0 0;
}

.handleDown {
    animation: handleDown 0.35s linear;
    animation-fill-mode: forwards;
    transform-origin: 0 0;
}

@keyframes handleUp {
    from {
        transform: rotate(0) translate(-50%, -50%);
    }
    to {
        transform: rotate(180deg) translate(-50%, -50%);
    }
}

@keyframes handleDown {
    from {
        transform: rotate(180deg) translate(-50%, -50%);
    }
    to {
        transform: rotate(0) translate(-50%, -50%);
    }
}

.slide-left-enter,
.slide-right-leave-active {
    opacity: 1;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    z-index: 1000;
}

.slide-left-leave-active,
.slide-right-enter {
    opacity: 1;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.slide-out-enter-active {
    /*animation: slide-out .35s;*/
    animation: slide-in 0.35s;
}

.slide-in-enter-active {
    animation: slide-in 0.35s;
}

@keyframes slide-out {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: none;
        z-index: -1;
    }
}

.window-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 200;
}

.window-loading-img {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.window-loading-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.area-number-row {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 1rem !important;
    align-items: center;

    .area-number-wrap {
        flex-shrink: 0;
    }
    input {
        flex: 1;
    }
}
