.drop-s {
    position: relative;
}
.drop-s-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #52B85C;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    box-sizing: border-box;
}
.drop-s-label > * {
    margin-right: 20px;
}
.drop-s-label-hide:after {
    content: '';
    width: 13px;
    height: 5px;
    margin-left: 10px;
    background: url("/web/site/assets/img/style/down.png") center center no-repeat;
    background-size: 13px auto;
}
.drop-s-label-show:after {
    content: '';
    width: 13px;
    height: 5px;
    margin-left: 10px;
    background: url("/web/site/assets/img/style/up.png") center center no-repeat;
    background-size: 13px auto;
}
.drop-s-panel {
    position: absolute;
    padding: 16px;
    background: #fff;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    display: flex;
    flex-direction: column;
    line-height: 19px;
    border-radius: 5px;
    z-index: 2;
    box-sizing: border-box;
}
.drop-s-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-weight: inherit;
    cursor: pointer;
    font-size: 15px;
}
.drop-s-option.drop-s-option-active:after {
    content: '';
    width: 20px;
    height: 16px;
    margin-left: 10px;
    background: url('/web/site/assets/img/style/check-mark.svg') center center no-repeat;
    background-size: 17px auto;
}