.mission_wrap {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 15;
    
    display: none;
    /* width: 30%;
    transform: scale(0.7); */
}
.mission_wrap > .dim{
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
}
.mission_layer {
    background: #fff;
    width: 480px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 21px;
    cursor: pointer;
}
@media (max-width: 950px) {
    .mission_layer {
        transform: translate(-50%, -50%) scale(0.7);
    }
}
.mission_layer > * {
    position: relative;
    word-break: keep-all;
}
.mission_layer > .current_step {
}
.mission_layer > .current_step > .text_1 {
    position: relative;
    margin: 25px 1px 1px 41px;
}
.mission_layer > .current_step > .text_1::before {
    position: absolute;
    content: "";
    background: url(../img/ui/pin.png);
    background-size: 100% 100%;
    width: 7px;
    height: 7px;
    left: -11px;
    top: 7px;
}
.mission_layer > .line {
    width: 90%;
    margin: 20px 5%;
    border-bottom: 1px solid #c9c9c9;
}
.mission_layer > .mission_title {
    position: relative;
    margin: 14px 1px 1px 41px;
}
.mission_layer > .mission_title::before {
    position: absolute;
    content: "";
    background: url(../img/ui/pin.png);
    background-size: 100% 100%;
    width: 7px;
    height: 7px;
    left: -11px;
    top: 7px;
}
.mission_layer > .list {
    font-size: 20px;
    margin: 12px 1px 12px 75px;
}
.mission_layer > .list::before {
    position: absolute;
    content: "";
    background: url(../img/page/none_check.png);
    background-size: 100% 100%;
    width: 22px;
    height: 22px;
    left: -29px;
    top: -1px;
}
.mission_layer > .list[data-state="toggle"]::before {
    background: url(../img/page/check.png);
    background-size: 100% 100%;
}

.top_display_wrap{
    top: 0;
    width: 100%;
    height: fit-content;
    background-color: #000;
    max-width: 100%;
}
.top_display_wrap > .display{
    position: relative;
    font-size: 21px;
    color: #fff;
    padding: 10px 10px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    height: fit-content;
}
@media (max-width: 950px) {
    .top_display_wrap > .display {
        font-size: 16px;
    }
}