dropdown.scss 782 Bytes
@import '@/styles/_support';

.drop-list {
  display: inline-block;
  min-width: 6.25rem;
  position: relative;
  margin: 0 1rem;

  .list {
    position: absolute;
    width: 100%;

    .space {
      height: 1.5rem;
    }
  }

  span {
    display: block;
    text-align: center;
  }

  span:hover {
    // background: #f6f6f6;
    // color: #ec6429;
  }

  ul {
    display: none;
    overflow: hidden;
    box-shadow: 0 0 1.5rem 0 rgba(255, 87, 0, 0.15);
    border-radius: .5rem;


    li {
      border-bottom: solid 1px #f1f1f1;
      background: #ffffff;
      height: 4.25rem;
      line-height: 4.25rem;
      text-align: center;
    }

    li:last-child {
      border-bottom: none;
    }

    li:hover {
      // background: #f6f6f6;
      color: #ec6429;
    }


  }
}