/*引导弹窗*/
.act_content {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2001;

}

.shadow {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 20;
}

.act_list_content {
    position: relative;
    z-index: 200;
    animation: tanc .25s;
}

.close_act_list {
    position: absolute;
    right: 180px;
    cursor: pointer;
    top: 45px;
}

.close_act_list:hover {
    transform: scale(1.2);
    transition: all 0.6s;
}
.act_check_button{
    position: absolute;
    top: 43%;
    cursor: pointer;
    left: 6%;
}
.act_tps{
    position: absolute;
    top:74%;
    cursor: pointer;
    left: 5%;
}
.modalcolor{
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
@keyframes tanc {
    0% {
        transform: scale(.6);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
