.option {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 100;
}

.option > .body {
    position: fixed;
    min-width: 200px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0;
    translate: 0 -20px;
    transition: all 0.2s;
}
.option > .body > button {
    display: flex;
    width: 100%;
    font-family: var(--font-1);
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 10px;
    text-wrap: nowrap;
    
}
.option > .body > button > span {
    margin-block: auto;
}
.option > .body > button > p {
    margin-block: auto;
    font-size: 14px;
    margin-left: 10px;
}

.option > .cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.option-min {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 15;
    
}
.option-min > .cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(1px);
    opacity: 0;
    transition: all 0.2s;
}
.option-min > .scrollbody {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    z-index: 16;
}
.option-min > .scrollbody::-webkit-scrollbar {
    display: none;

}
.option-min .body {
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    /* translate: 0 100%; */
    padding-top: 10px;
    transition: all 0.2s;
}
.option-min .body > span {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    margin-inline: auto;
    /* margin-top: 10px; */
    margin-bottom: 10px;
    margin-bottom: 15px;
    background: gray;
}
.option-min .body > button {
    display: flex;
    width: 100%;
    font-family: var(--font-1);
    border: none;
    outline: none;
    padding: 15px;
    text-wrap: nowrap;
}

.option-min .body > button > span {
    margin-block: auto;
}
.option-min .body > button > p {
    margin-block: auto;
    font-size: 14px;
    margin-left: 15px;
}

.option-min .nullbody {
    height: 100%;
    width: 100%;
}
