.dc-select-container {
    width: 160px;
    height: 30px;
    font-size: 12px;
    color: #333;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 5px;
    margin: 0 10px;
    padding: 0;
    display: inline-block;
    position: relative
}

.dc-select-container:hover {
    border-color: #3d70b2
}

.dc-select-container:active {
    border-color: #0081cc
}

.dc-select-container.disable {
    background: #f5f5f5;
    border-color: #ccc;
    color: #999
}

.dc-select-input {
    padding: 5px 10px;
    width: 100%;
    height: 30px;
    position: relative;
}

.dc-select-input>input {
    outline: none;
    border: none;
    width: 90%;
    height: 18px;
    line-height: 18px;
    background: none;
    position: relative;
    z-index: 1;
}

.dc-select-input>input:read-only {
    cursor: default
}

.dc-select-input>span {
    display: block;
    position: absolute;
    width: 78%;
    height: 18px;
    left: 10px;
    top: 5px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 0;
}

.dc-select-btn {
    width: 0;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 20px 0 10px;
    cursor: pointer;
}

.dc-select-container.disable .dc-select-btn {
    cursor: default;
}

.dc-select-arrow {
    border: solid 4px transparent;
    border-top-width: 6px;
    border-top-color: #333;
    width: 0;
    height: 0;
}

.dc-select-container.disable .dc-select-arrow {
    border-top-color: #ccc;
}

.dc-select-drop {
    position: absolute;
    top: 28px;
    left: -1px;
    width: calc(100% + 2px);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, .2);
    padding: 10px 0;
    background: #fff;
    list-style: none;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    z-index: 1000;
}

.dc-select-drop>li {
    width: 100%;
    height: 30px;
    line-height: 26px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 11px
}

.dc-select-drop>li:hover {
    color: #fff;
    background: #3d70b2
}