@import '../../app.less';

.select {
  position: relative;

  .mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .select-warp {
    line-height: 30px;
    display: inline-block;
    position: relative;
    text-align: center;
  }

  .select-body {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid @line_color;
    border-radius: 4px;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2;
    transform: translateY(100%);

    .select-option {
      height: 0;
      line-height: 25px;
      padding-left: 10px;
      border-bottom: 1px solid transparent;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.3s;
      text-align: left;
    }

    .select-option:hover {
      background: @theme_bg_color;
    }

    .select-option:last-child {
      border-bottom: none;
    }
  }

  .select-body.select {
    opacity: 1;

    .select-option {
      height: auto;
      border-color: @line_color;
    }
  }

  .down-arrow {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
  }

  .down-arrow::after {
    display: inline-block;
    content: " ";
    height: 8px;
    width: 8px;
    border-width: 2px 2px 0 0;
    border-color: #fff;
    border-style: solid;
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -1px;
  }

  .up-arrow {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
  }

  .up-arrow::after {
    display: inline-block;
    content: " ";
    height: 8px;
    width: 8px;
    border-width: 2px 2px 0 0;
    border-color: #fff;
    border-style: solid;
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -1px;
  }

  &.white {
    cursor: pointer;
    text-align: center;

    .select-warp.active {
      background: rgba(241, 243, 246, 1);
    }

    .button {
      width: 98px;
      padding: 0px;
      border-radius: 0;
      background: none;
      color: #686872;
      line-height: 30px;
    }

    .up-arrow {
      display: none;
    }

    .down-arrow {
      display: none;
    }

    color: #686872;

    .select-body {
      border: none;
    }

    .select-option {
      padding: 0;
      text-align: center;
      line-height: 30px;
      border: none;
    }
  }
}