.select-box {
    background: #F7F8FC;
    font-size: 1.8rem;
    height: 300px;
    overflow-y: scroll;
    width: 100%;
}

@media screen and (min-width: 960px) {
    .select-box {
        font-size: 2rem;
    }
}

.select-box>li {
    align-items: center;
    display: flex;
    font-weight: 500;
    height: 60px;
    padding: 0 24px;
    position: relative;
}

.select-box>li:nth-child(odd) {
    background: #EEEFF8;
}

.select-box>li:nth-child(even) {
    background: #F7F8FC;
}

.select-box>li.-check {
    background: #A4D5BD;
    box-shadow: 0 3px 8px #00000029;
    color: #E01D2C;
}

.select-box>li>input {
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}