@charset "UTF-8";
.v-select--large .v-select-selected,
.v-select--large .v-select-items-li{
    font-size:16px;
    height:40px;
    line-height: 40px;
}
.v-select--large .v-select-selected-i{
    line-height:40px !important;
}
.v-select--large .v-select-selected{
   /* width:120px;*/
}
.v-select--large .v-select-items{
 /*   min-width: 120px;*/
}


.v-select--middle .v-select-selected,
.v-select--middle .v-select-items-li{
    font-size:14px;
    height:32px;
    line-height: 32px;
}
.v-select--middle .v-select-selected-i{
    line-height:32px !important;
}
.v-select--middle .v-select-selected{
 /*   width:100px;*/
}
.v-select--middle .v-select-items{
   /* min-width: 100px;*/
}


.v-select--small .v-select-selected,
.v-select--small .v-select-items-li{
    font-size:13px;
    height:24px;
    line-height: 24px;
}
.v-select--small .v-select-selected-i{
    line-height:24px !important;
}
.v-select--small .v-select-selected{
/*    width:90px;*/
}
.v-select--small .v-select-items{
/*    min-width: 90px;*/
}

.v-select{
    display: inline-table;
    position: relative;
}

.v-select-dd,.v-select-dt{
    z-index: 9999;
}

.v-select-dd,.v-select-dt,.v-select-items {
    margin:0px;
    padding:0px;
    background-color: #fff;
}

.v-select-items{
    overflow:auto !important;
    text-overflow:ellipsis;
    word-wrap:normal;
    white-space: nowrap;
}



.v-select a, .v-select a:visited {
    color:#000;
    text-decoration:none;
    outline:none;
}

.v-select-selected {
    position: relative;
    display:block;
    border:1px solid #c8cdd4;
    border-radius: 2px;
}

.v-select-selected:hover {
    color:#ed4114;
    border-color:#ed4114;
}

.v-select-selected-span {
    width: 80%;
    display:block !important;/*修复会被别的样式覆盖的问题*/
    text-align: center;
    cursor:pointer;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 2px;
}

.v-select-input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: none;
    /*    border-radius: 4px;*/
    border: 1px solid #fff;
    box-sizing: border-box;
    color: #1f2d3d;
    display: inline-block;
    font-size: inherit;
    /* height: 36px;*/
    line-height: 1;
    outline: none;
    padding-left: 2px;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 80%;
    text-align: left;

}

.v-select-selected-i{
    display: inline-block;
    position: absolute;
    top:0;
    right:0;
    font-size: 120%;
}

.v-select-dd {
    position:absolute !important;
    z-index:9999999;
}

.v-select-items {
    position: relative;
    top:2px;
    left:0px;
    list-style:none;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.12), 0 0 6px rgba(0,0,0,.04);
    border:1px solid #d1dbe5;
    color:#C5C0B0;

    padding:5px 0px;
    width:auto;
}

.v-select-items-li{
    white-space: nowrap;
}

.v-select-items-li.active{
    background-color:#ed4114;
}

.v-select-items-li.active a{
    color:#fff;
}

.v-select-items-li-a {
    width: 100%;
    display:block;
    padding-left: 8px;
    padding-right: 8px;
}

.v-select-items-li-a-left{
    text-align: left;

}

.v-select-items-li-a-center{
    text-align: center;
}

.v-select-items-li-a-right{
    text-align: right;
}

.v-select-items-li:hover {
    background-color: #ffd4c9;
    color:#fff;
}

.v-select-items-li.active:hover{
    background-color:#ed4114;
}


