/*使用新主页global.css为基础实现*/


/*******************模拟选择框 开始***************************/

.wjf-ui-select-wrapper {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    height: 36px;
    z-index: 99;
}

/*输入框*/

.wjf-ui-select {
    height: 28px;
    line-height: 28px;
    padding: 0 15px 0 8px;
    border: 1px solid #e0e0e0;
    background: url("image/wjf-icon.png") no-repeat 0 -42px;
    /*默认情况下宽度为162px*/
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*不换行才可能显示出...*/
    white-space: nowrap;
    word-break: normal;
    cursor: pointer;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    z-index: 1;
}
.wjf-ui-select-disabled {
    background-color: #f9f9f9;
}

/*下拉选择容器*/

.wjf-ui-select-container {
    position: absolute;
    left: 0;
    top: 30px;
    width: 148px;
    height: auto;
    border: 1px solid #e1e1e1;
    border-top:none;
    background-color: #fff;
    cursor: pointer;
    z-index: 98;
    overflow: auto;
    /*默认不可见*/
    display: none;
    zoom: 1;
    max-height: 400px;
}

/*下拉选择容器 子项*/

.wjf-ui-select-container .item {
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*不换行才可能显示出...*/
    white-space: nowrap;
    word-break: normal;
    z-index: 97;
    zoom: 1;
}
/*禁用项*/
.wjf-ui-select-container .item.disabled{
    background-color: #f3f3f3;
}
.wjf-ui-select-container .selected, .wjf-ui-select-container .wjf-ui-select-item-hover {
    background-color: #fff5eb;
}

/*第一个子项的最右边 向上三角形*/

.wjf-ui-select-container .first .trangle-arrow {
    background: url(image/wjf-icon.png) no-repeat 0 13px;
    float: right;
    width: 10px;
    height: 100%;
    margin-right: -4px;
    /*暂时隐藏*/
    display: none;
}

/*选中或者hover*/

.wjf-ui-select-container .selected .trangle-arrow, .wjf-ui-select-container .wjf-ui-select-item-hover .trangle-arrow {
    background-position: 0 14px;
}

/*******************模拟选择框 结束***************************/
