.fs-wrap {
  position: relative;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  border-top-color: rgb(220, 223, 230);
  border-right-color: rgb(220, 223, 230);
  border-bottom-color: rgb(220, 223, 230);
  border-left-color: rgb(220, 223, 230);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  box-sizing: border-box;
}

.fs-label-wrap {
  padding: 0 20px 0 15px;
  position: relative;
  cursor: default;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.fs-label-wrap,
.fs-dropdown {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fs-dropdown{
  min-width: 230px;
}
.fs-label-wrap .fs-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

.fs-arrow {
  /* width: 0;
  height: 0; */
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 10px;
  background: url(/img/bottom_jian.png) no-repeat left center;
  background-size: 100%;
}
.fs-dropdown .fs-options {
  scrollbar-color: rgba(144,147,153,.5) #ffffff; /* 第一个方块色彩，第二个轨道色彩(用于更改火狐浏览器款式) */
  scrollbar-width: thin; /* 火狐滚动条无奈自定义宽度，只能通过此属性使滚动条宽度变细 */
  -ms-overflow-style: none; /* 暗藏滚动条（在IE和Edge两个浏览器中很难更改款式，固采取暗藏形式） */
}
/* 以下是chrome浏览器自定义滚动条款式形式 */
.fs-dropdown .fs-options::-webkit-scrollbar {
  /*滚动条整体款式*/
  width: 4px; /*高宽别离对应横竖滚动条的尺寸*/
  height: 1px;
}
.fs-dropdown .fs-options::-webkit-scrollbar-thumb {
  /*滚动条外面小方块*/
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  background: #dfdfdf;
}
.fs-dropdown .fs-options::-moz-scrollbar {width:15px; } 
.fs-dropdown .fs-options::-webkit-scrollbar-track {
  /*滚动条外面轨道*/
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 4px;
  background: #fff;
}
.fs-dropdown {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 1000;
  border-radius: 4px;
}

.fs-dropdown .fs-options {
  max-height: 220px;
  overflow: auto;
}

.fs-search{
  cursor: default;
  border-bottom: 1px solid #eee;
}
.fs-search input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  /* border-radius: 4px; */
  border:none;
  /* border-bottom: 1px solid #dcdfe6; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  -o-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  width: 100%;
}

.fs-selectAll {
  float: right;
  cursor: pointer;
  margin-top: 4px;
  height: auto;
}

.fs-selectAll.selected {
  float: right;
  cursor: pointer;
  margin-top: 4px;
  height: auto;
  color: #008000;
}

.fs-selectAll:hover {
  background-color: #eee;
}

.fs-option,
.fs-optgroup-label {
  padding: 0 15px;
  border-bottom: 1px solid #eee;
  cursor: default;
}

.fs-option {
  cursor: pointer;
}

.fs-option.hl {
  background-color: #f5f5f5;
}

.fs-wrap.multiple .fs-option {
  position: relative;
  padding-right: 30px;
  padding-left: 20px;
}

.fs-wrap.multiple .fs-checkbox {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  right: 0;
  bottom: 0;
}

.fs-wrap.multiple .fs-option .fs-checkbox i {
  display: none;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  /* border: 1px solid #aeaeae; */
  border-radius: 4px;
  background-color: #fff;
}
.fs-wrap.multiple .fs-option.selected .fs-checkbox i{
  display: inline-block;
}
.fs-wrap.multiple .fs-option.selected .fs-checkbox i {
  /* background-color: #409eff;
  border-color: transparent;
  background-repeat: no-repeat;
  background-position: center; */
  background: url(/img/duihao.png) no-repeat left center;
  background-size: 100%;
}
.fs-wrap.multiple .fs-option.disabled .fs-option-label{
  color: #c0c4cc;
  cursor: not-allowed;
}
.fs-wrap.multiple .fs-option.selected .fs-option-label{
  color: #409eff;
  font-weight: 700;
}
.fs-wrap .fs-option .fs-option-label1{
  color: rgb(132, 146, 166);
  font-size: 13px;
}
.fs-wrap .fs-option.selected .fs-option-label{
  color: #409eff;
  font-weight: 700;
}
.fs-wrap .fs-option.selected .fs-option-label1{
  font-weight: 700;
}
.fs-wrap .fs-option:hover {
  background: #f5f7fa;
  border-radius: 4px;
  margin-left: 0;
}

.fs-optgroup-label {
  font-weight: 700;
}

.hidden {
  display: none;
}

.fs-options::-webkit-scrollbar {
  width: 6px;
}

.fs-options::-webkit-scrollbar-track {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
}

.fs-options::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
