.pick-area {
    display: inline-block;
    position: relative;
    font-size: 14px;
    background: #182029;
    text-decoration: none;
    cursor: default;
    width: 100% !important;
}

.pick-show {
    position: relative;
    padding: 0 0 !important;
    height: 36px;
    line-height: 36px;
    border: 1px solid #182029;
    border-radius: 3px;;
    width: 100% !important;
    /*padding-left: 1px*/
}

.pick-show span {
    float: left;
    display: inline-block;
    max-width: 100px;
    height: 24px;
    line-height: 24px;
    padding: 0 3px;
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
}

.pick-show span:hover {
    color: #FFF !important;
    border-radius: 3px;
}

.pick-show span.pressActive {
    background: #182029;
    color: #FFF !important;
    border-radius: 3px
}

.pick-show em.pick-arrow {
    position: absolute;
    top: 14px;
    right: 8px;
    display: block;
    border: 8px solid #182029;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.pick-show i {
    float: left;
    display: inline-block;
    padding: 0 3px;
    color: #333;
    font-style: normal;
}

.pick-list {
    display: none;
    position: absolute;
    line-height: 36px;
    margin: 0;
    padding: 0;
    background: #182029;
    z-index: 999999999;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #182029;
    border-top: none;
    width: 100% !important;
}

.pick-list li {
    margin: 0;
    padding: 4px 8px !important;
    list-style: none;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pick-list li:hover {
    background: #30353a !important;
}

