@charset "UTF-8";
/* 引入样式图表主题模块样式 */
@import url("../modules/chart-theme/css/index.css");
/* 引入样式图表类型模块样式 */
@import url("../modules/chart-type/css/index.css");
/* 引入样式自定义列表模块样式 */
@import url("../modules/custom-list/css/index.css");
/* 微微向上滑动 */
@keyframes layui-upbit {
  from {
    transform: translate3d(0, 30px, 0);
    opacity: 0.3;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
[select-prototype] {
  display: none !important;
}

/* 下拉按钮上三角的颜色 */
/* 下拉按钮颜色 */
/* 下拉按钮背景颜色 */
/* 图标 */
.icon {
  /* 标志 */
  /* 三角 */
}
.icon.icon-sign {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.icon-edag {
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: dashed;
  border-color: transparent;
}

/* 组件主体 */
.drop-down {
  position: relative;
  width: 100%;
  min-width: 132px;
  font-size: 12px;
  /* 三角 */
}

.drop-down .icon-edag {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  border-width: 6px;
  border-top-color: #fff;
  border-top-style: solid;
  transition: all 0.3s;
  cursor: pointer;
}

/* 主题头部 */
.drop-down__title {
  height: 26px;
  line-height: 26px;
  /* 下拉按钮 */
}

.drop-down__title .drop-down__button {
  position: absolute;
  right: 0;
  width: 100%;
  padding: 5px 30px 5px 8px;
  border: none;
  border-radius: 3px;
  outline: none;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(90deg, #74b6ff, #4ea2ff);
}

/* 下拉部分内容 */
.drop-down__anim {
  position: absolute;
  top: 36px;
  display: none;
  padding: 3px;
  min-width: 100%;
  border-radius: 3px;
  max-height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  animation-name: layui-upbit;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.drop-down__anim dd {
  margin: 0;
  padding: 5px;
  border-radius: 3px;
}

/* 主题下拉状态 */
.drop-down__selected {
  /* 三角图标 */
}

.drop-down__selected .icon-edag {
  margin-top: -9px;
  transform: rotate(180deg);
}

.drop-down__selected .drop-down__anim {
  position: absolute;
  left: 0;
  top: 36px;
  z-index: 899;
  display: block;
}