/*
 * @Author: 天吾
 * @Date: 2019-01-23 16:29:55
 * @Last Modified by: 天吾
 * @Last Modified time: 2019-04-27 19:55:52
 */
/*
    size 统一用  sm base lg  表示,  对于不能满足的情况, 仿照衣服尺寸加上 x(EXTRA) 比如  font-size-xlg 表示特大
*/
.gd-select {
  display: inline-flex;
  align-items: center;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  height: 30px;
  width: 200px;
  position: relative;
  vertical-align: top;
  text-align: left;
  box-sizing: content-box;
}
.gd-select--disabled {
  cursor: default;
}
.gd-select--border {
  border: 1px solid #eee;
}
.gd-select--border .gd-select__placeholder {
  color: #eee;
}
.gd-select--small {
  width: 115px;
}
.gd-select__placeholder,
.gd-select__label {
  display: block;
  background: #fff;
  padding: 0 28px 0 12px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  font-style: normal;
  text-overflow: ellipsis;
}
.gd-select__arrow {
  position: absolute;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}
.gd-select__popover {
  background: #fff;
  margin: 0;
  max-height: 276px;
  box-shadow: 0px 10px 14px rgba(53, 100, 175, 0.15);
  border: none;
  overflow: auto;
  overflow-x: hidden;
  padding: 8px 0;
}
.gd-select__popover li {
  margin: 0;
  list-style: none;
}
