_select.css 638 Bytes
.select {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 1001;
    transform: translate3d(0, 100%, 0);
    transition: all 0.1s ease-in-out;

    ul {
        font-size: 34px;
        text-align: center;

        li {
            height: 100px;
            line-height: 100px;
            border-bottom: 1px solid #e0e0e0;
        }

        .disabled {
            color: #b0b0b0;
        }

        .item-del {
            margin-top: 10px;
            border-top: 1px solid #e0e0e0;
            color: #5c99e4;
        }
    }

    &.slide-in {
        transform: translate3d(0, 0, 0);
    }
}