/**
 * Component: Dropdown
 * --------------------------------------------------
 */
.c-dropdown {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  text-align: left;
  margin-top: 0;
}

.c-dropdown__list {

  max-height: 400px;
  overflow: hidden;
  margin: 5px 0 0 0;
  margin: 0;
  padding: 10px;
  list-style: none;
  position: absolute;
  z-index: 100;
  top: 125%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 3px;
  background: #fff;
  -webkit-transition: opacity 0.25s linear, top 0.25s linear;
  transition: opacity 0.25s linear, top 0.25s linear;
  border: 1px solid #eee;
}

.c-dropdown.is-open .c-dropdown__list {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.options-box .c-dropdown__list {
  display: none;
}

.options-box .c-dropdown.is-open .c-dropdown__list {
  display: block;
}


.c-dropdown__item {
  padding: 6px 12px;
  font-size: 14px;
  font-size: 12px;
  line-height: 20px;
  cursor: pointer;
  color: #434a54;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* transition: background-color 0.25s; */
}

.c-dropdown__item:hover {
  background-color: #0789C5;
  color: #fff;
}

/**
 * Component: Button
 * --------------------------------------------------
 */

.c-button {
  width: 100%;
  min-width: 10px;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  overflow: visible;
  font: inherit;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-button:hover,
.c-button:focus {
  outline: none;
  text-decoration: none;
}

.c-button:not(:disabled) {
  cursor: pointer;
}

/**
 * Component: Button
 * Modifier: Dropdown
 * --------------------------------------------------
 */
.c-button--dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  color: #e6e9ed;
  color: #333;
  font-size: 14px;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.c-button--dropdown:hover {
  /* background-color: #ac92ec;
  background-color: #f5f5f5; */
}

.c-button--dropdown:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #e6e9ed;
  border-top-color: #ccc;
  transition: .3s;
  transform: translate(0, -20%);
}

.is-open .c-button--dropdown:after {
  transform: translate(0, -80%) rotate(180deg);
}


.c-dropdown.is-open .c-dropdown__list {
  max-height: 400px;
  overflow-y: auto;
}





/* 标题选项样式 */
.title-box .c-dropdown__list {
  padding: 5px;
}

.title-box .c-dropdown__item {
  display: flex;
  align-items: center;
  padding-left: 3px;
  padding-right: 3px;
  /* margin-bottom: 5px; */
}

.title-box .c-dropdown__item .img-check {
  margin-right: 5px;
}


.shaixuan-confirm-box {
  line-height: 1;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
}

.shaixuan-confirm {
  background: #0789C5;
  color: #fff;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 4px;
  width: 60px;
  height: 28px;
}


.title-box .c-button--dropdown {
  color: #fff;
}