@import '../var';

.cl-arst {
  height: 60vh;
  transform: translateZ(0);
  display: flex;
  width: 100%;
  flex-direction: column;
  // overflow: scroll;
  &--fixed {
    // position: fixed;
    position: relative;
    // left: 0;
    // right: 0;
    width: 100%;
    z-index: 9999;
  }
  &__header {
    line-height: 44px;
    text-align: center;
    font-size: 18px;
    position: relative;
    background: #fff;
    &__icon {
      position: absolute;
      top: 11px;
      right: 15px;
      font-size: 22px;
      line-height: 22px;
      color: #777;
    }
  }
  &__bar {
    background-color: #fff;
    border-bottom: 1px solid $grey-100;
    // padding: 0 5px;
  }

  &__body {
    // margin-top: 80px;
    z-index: 1000;
    overflow-y: scroll;
  }
  &__bar {
    &__ul {
      margin: 0;
      padding: 0 0 0 10px;
      width: 100%;
      height: 41px;
    }
    &__li {
      float: left;
      line-height: 40px;
      background-color: #fff;
      font-size: 16px;
      padding: 0 5px;
      &.is-select {
        color: $blue-900;
        border-bottom: 1px solid $blue-900;
      }
    }
  }

  &__content {
    background-color: #fff;
    overflow-y: scroll;
    &__ul {
      margin: 0;
      padding: 0;
      // overflow-y: auto;
    }
    &__li {
      margin: 0;
      padding: 10px 0 10px 15px;
      font-size: 16px;
      &.is-select {
        color: $blue-900;
      }
    }
  }
}
