.yzw-select {
    font-family: "Microsoft yahei";
    font-size: 14px;
    position: relative;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    overflow: visible;
}

.yzw-select > .checked {
    display: block;
    padding: 6px 26px 6px 6px;
    font-size: 14px;
    color: #555;
    background-color: #fff;

    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    text-decoration: none;
    line-height: initial;
}

.yzw-select > i.arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    color: #989899;
    height: 6px;
    width: 11px;
    overflow: hidden;
    background: url('/commImage/ui/bg/bg32.png') no-repeat -150px -100px;
    text-indent: -100px;
}

.yzw-select > ul {
    list-style: none;
    background-color: #fff;
    display: none;
    position: absolute;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #e6e6e6;
    z-index: 50;
    width: 100%;
    box-sizing: border-box;
    left: -1px;
}

.yzw-select > ul > li {
    line-height: 22px;
    height: 22px;
    padding: 2px 6px;
    display: block;
    font-size: 14px;
    color: #555;
    cursor: pointer;   

    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.yzw-select > ul > li:not(.active):hover {
    background: #f5f5f5;
}

.ellipsis {
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.yzw-select .active {
    background: #5891df;
    color: #fff;
}