  .select-wrapper{
    font: normal 14px '\5FAE\8F6F\96C5\9ED1';
    width: 240px;
    height: 34px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    *display: inline;
    *float: left;
    *margin-right: 10px;
    background: none;
    border-radius: 3px;
    /*border: 1px solid #e3e3e3;*/
    margin: 0 10px;
  }
  .select-wrapper.focus{
    /*border: 1px solid #61b988;*/
  }
  .select-button{
    font: normal 14px '\5FAE\8F6F\96C5\9ED1';
    width: 238px;
    height: 34px;
    border: 0;
    border-radius: 40px;
    background: none;
    cursor: pointer;
    /*padding: 0 26px 0 10px;*/
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #999;
    border:1px solid #ccc;
    padding-left: 15px;
    padding-right: 28px;
  }
  .select-down{
    position: absolute;
    top: 1px !important;
    right: 1px;
    height:32px;
    width:28px;
    overflow: hidden;
    font-size: 0;
    border:0 !important;
    background: url(../images/secjt.png) no-repeat left center;
  }  
  .disabled{
    color: #cccccc;
  }
  .select-list{
    width: 238px;
    background: rgba(35,35,35,0.8);
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: 35px;
    overflow: hidden;
  }
  .select-list ul{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 34px;
    max-height: 240px;
  }
  .select-list ul li{
    width: auto;
    height: 34px;
    padding-left: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 34px;
    color: #999;
  }
  .select-list ul li.selected,
  .select-list ul li:hover{
    color: #fff;
    background: rgb(35,35,35);
  }
  
  /* 下拉列表不可用样式 */
  .select-button-disable{
    color: #ccc;
    width: 238px;
    height: 34px;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    padding-left: 10px;
    overflow: hidden;
    text-align: left;
    outline: none;
  }
  .select-down-disable{
   color: #ccc;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 10px;
   line-height: 34px;
  }