@charset "UTF-8";
.selector {
    position: fixed;
    bottom: 0px;
    z-index: 999;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #fafafa;
    -webkit-transition: height 300ms;
    -o-transition: height 300ms;
    transition: height 300ms;
}

.selector.slide-up {
    height: 200px;
}

.selector .selector-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
}

.selector .selector-header .selector-btn-ok,
.selector .selector-header .selector-btn-cancel {
    padding: 0 10px;
    font-size: 15px;
    color: #0073ff;
}

.selector .selector-header .selector-btn-ok {
    font-weight: 700;
}

.selector .selector-body {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.selector .selector-body .selector-scroll {
    position: absolute;
    top: 65px;
    z-index: 8;
    width: 100%;
    text-align: center;
    list-style: none;
}

.selector .selector-body .selector-scroll li {
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 17px;
    color: #333;
}

.selector .selector-body .selector-mask {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.7);
}

.selector .selector-body .selector-mask-top {
    top: 1px;
    -webkit-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
}

.selector .selector-body .selector-mask-bottom {
    bottom: 0;
    -webkit-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
}

.selector-backdrop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.5);
}