// ？？
div.rg-selected-container
  /*padding 5px 16px 7px*/
  border-top 1px solid #E6E7E7
  background-color white
  border-bottom-left-radius 2px
  border-bottom-right-radius 2px
  display inline-block
  width 400px
  position relative
  div.rg-selected-content
    /*margin-right 30px*/
    display inline-block
    width 350px
  div.rg-done
    height 100%
    width 50px
    display inline-block
    text-align center
    position absolute
    top 0
    bottom 0
    right 0
    i
      line-height 1
      font-size 20px
      top 50%
      position absolute
      margin-top -10px

// caller
div.rg-select
  display inline-block
  position relative
  margin-right 5px
  &:last-child
    margin-right 0
  div.rg-select__el
    border 1px solid #ddd
    border-radius 3px
    transition border-color .15s ease-in-out,box-shadow .15s ease-in-out
    cursor pointer
    color #666
    div.rg-select__content
      padding 6px 30px 6px 15px
      font-size 14px
      display inline-block
      min-width 80px
    &:hover
      border 1px solid #bbb
    &.rg-select__el--active
      outline 0
      box-shadow 0 0 0 3px rgba(180,180,180,.25)
      border 1px solid #888
      span.rg-select__caret
        transform rotate(180deg)
    &.rg-select_el--disabled
      border 1px solid #eee
      background-color #f5f5f5
      color #aaa
  span.rg-select__caret
    position absolute
    top 50%
    right 12px
    margin-top -1px
    vertical-align middle
    display inline-block
    width 0
    height 0
    margin-left 2px
    border-top 4px dashed
    /*border-top 4px solid\9*/
    border-right 4px solid transparent
    border-left 4px solid transparent
    transition transform .2s ease

ul.rg-select__list
  list-style none
  overflow-y auto
  overflow-x hidden
  max-height 300px
  margin 0
  padding 3px 0
  li
    padding 3px 10px
    cursor pointer
    min-width 80px
    color #888
    font-size 13px
    line-height 1.5
    &:hover
      background-color #F5F7FA
    &.selected
      background-color #E4EAEE
      color black
