.viewcentent,
.full_of {
    width: 100%;
    height: 100%;
}

.has_max {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 640px;
}

#headimg_lump {
    position: absolute;
    top: 5.7%;
    left: 8%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 5rem;
    height: 5rem;
    color: #ffffff;
    z-index: 100;
    /* background-color: #ffffff; */
}

.userImg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #ffffff;
}

.userImg img {
    max-width: 90%;
    border-radius: 50%;
}

.userinfo {
    position: absolute;
    top: 5%;
    right: 2%;
    width: 50%;
    min-width: 180px;
    background-color: #fff;
}

.action_panel {
    position: absolute;
    top: 30%;
    left: 5%;
    padding: 10px 0px;
    width: 40%;
    background-color: rgba(255, 107, 9, 0.74);
    border-radius: 10px;
    z-index: 10;
}

.action_panel a {
    color: white;
}

.ap_cover {
    position: absolute;
    top: 0.5rem;
    width: 70%;
    left: 25%;
}

.ap_btn {
    width: 70%;
    margin-bottom: 10%;
}

.ap1 {
    width: 68%;
    margin-bottom: 8%;
    padding-top: 2%;
}

.ap2 {
    margin-top: 10%;
    margin-left: 11%;
    width: 85%;
}

.ap3 {
    margin-top: 12%;
    margin-left: 12%;
}

.ui_cover {
    position: absolute;
    top: 15%;
    width: 100%;
    right: 0px;
    color: white;
    background-color: rgba(35, 166, 243, 0.81);
    padding: 10px 0px;
    border-radius: 10px;
}

.ui_txt {
    margin: 8px 0px;
    padding-left: .3rem;
}

.ui_txt2 {
    padding-left: 1rem;
}

.bottom_btn {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 95%;
}

.bottom_btn div {
    width: 70%
}

.rotate_bg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* top: 3.5rem;
    right: 0.5rem; */
    bottom: 3rem;
    right: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    /* background: #14e2b3; */
    z-index: 50;
}

.forbid_none {
    display: none;
    position: absolute;
    max-width: 100%;
}

.forbid_block {
    display: block;
    position: absolute;
    max-width: 100%;
}

.rotateImages {
    max-width: 60%;
}

.rotateAnimation {
    max-width: 60%;
    -webkit-animation: myRotate 10s linear infinite;
    animation: myRotate 10s linear infinite;
}

@-webkit-keyframes myRotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes myRotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

#cars_panel {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 40%;
    right: 10px;
    width: 40%;
    height: 4rem;
    border-radius: 10px;
    background-color: rgba(248, 250, 251, 0.81);
}

.cars_num {
    color: red;
}

.car_btns {
    display: flex;
    /* padding: 0.2rem 0.3rem; */
    /* background-color: #ff0000; */
}

.car_btn {
    background: #ff0800;
    border: 2px solid #FF4742;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    padding: 0.3rem 0.6rem;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.car_btn:active {
    border: 2px solid #000;
    opacity: .5;
}

.runcar_panel {
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 35%;
    /* background-color: #ffffff42; */
}

/* .runcars {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 5rem;
} */

.runcar_right {
    position: absolute;
    top: 0%;
    right: -25%;
    /*-webkit-filter: drop-shadow(0 0 6px #699bff);*/
    /*filter: drop-shadow(0 0 6px #699bff);*/
    -webkit-animation: tail 5000ms;
    animation: tail 5000ms;
}

@-webkit-keyframes tail {
    0% {
        top: 0%;
        right: -25%;
        width: 4rem;
    }

    100% {
        top: 70%;
        right: 130%;
        width: 5rem;
    }
}

@keyframes tail {
    0% {
        top: 0%;
        right: -25%;
        width: 4rem;
    }

    100% {
        top: 70%;
        right: 130%;
        width: 5rem;
    }
}

.runcar_left {
    position: absolute;
    top: 13%;
    right: -25%;
    /*-webkit-filter: drop-shadow(0 0 6px #699bff);*/
    /*filter: drop-shadow(0 0 6px #699bff);*/
    -webkit-animation: tail-1 4000ms;
    animation: tail-1 4000ms;
}

@-webkit-keyframes tail-1 {
    0% {
        top: 13%;
        right: -25%;
        width: 4rem;
    }

    100% {
        top: 100%;
        right: 100%;
        width: 5rem;
    }
}

@keyframes tail-1 {
    0% {
        top: 13%;
        right: -25%;
        width: 4rem;
    }

    100% {
        top: 100%;
        right: 100%;
        width: 5rem;
    }
}