.combo-box-component {
    height: 46px;
    width: 380px;
}

.combo-select-span {
    border-top: 1px solid rgba(204, 204, 204, 1);
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    border-left: 1px solid rgba(204, 204, 204, 1);
    border-radius: 4px 0 0 4px;
    width: 102px;
    text-align: center;
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin: 0;
    padding: 0 0;
    line-height: 44px;
    float: left;
}

.combo-box {
    border-radius: 0 4px 4px 0;
    width: 274px;
    height: 46px;
    display: inline-block;
    margin: 0;
    padding: 0 0;
    float: left;
    position: relative;
}

.combo-box-input {
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: 14px;
    font-weight: 400;
    color: rgba(74, 74, 74, 1);
    border-radius: 0 4px 4px 0;
    width: 100%;
    padding: 12px 36px 12px 12px;
}

.combo-box-input:focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1);
    border: 1px solid rgba(177, 216, 255, 1);
}

.combo-box-input:focus+.combo-box-arrow:before {
    border-top: none;
    border-bottom: 5px solid #cccccc;
}

.combo-box-arrow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #999999;
}

.combo-box-arrow:before {
    content: " ";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #cccccc;
    display: block;
    width: 0;
    height: 0;
    top: 0;
    right: 15px;
    bottom: 0;
    position: absolute;
    margin: auto 0;
}

.combo-box-select {
    width: 100%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 1px solid #999999;
    border-radius: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-sizing: border-box;
    display: none;
}

.combo-box-select li {
    padding: 8px 1em;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px #e3e3e3 solid;
    font-size: 14px;
}

.combo-box-selected {
    color: #fff;
    background: #2589eb;
}

.combo-box-highlight {
    text-decoration: underline;
}

/* 滚动条样式 TOP */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #fff;
}

::-webkit-scrollbar:hover {
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    min-height: 5px;
    min-width: 5px;
    -webkit-border-radius: 20px;
    border: 1px solid #606060;:: -webkit-border-radius: 1 px;
    background-color: #606060;
}

::-webkit-scrollbar-thumb:hover {
    min-height: 5px;
    min-width: 5px;
    -webkit-border-radius: 20px;
    border: 1px solid #535353;
    background-color: #535353;
}

::-webkit-scrollbar-thumb:active {
    -webkit-border-radius: 20px;
    border: 1px solid #535353;
    background-color: #535353;
}
/* 滚动条样式 END */
