@import '../../style/var';
.hl-sheet {
  ul {
    margin: 0;
    padding: 0;
  }
  &-header {
    padding-top: 20px;
    text-align: center;
    background-color: #fff;
    &-title {
      color: #323232;
      font-size: 14px;
    }
  }
  &-description {
    padding: 10px 0;
    color: #969696;
    font-size: 12px;
  }
  &-body-footer {
    margin-top: 6px;
    padding: 15px 0;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
  }
  &-body {
    background-color: #eee;
  }
  &-body-content {
    background-color: #fff;
  }
  &-list:last-child {
    border: none;
  }
  &-list {
    display: flex;
    flex-direction: row;
    padding: 0 15px 15px 15px;
    overflow-x: scroll;
    overflow-y: visible;
    border-bottom: 1px solid #eee;
    li {
      width: 150px;
    }
    .list-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
      color: #444;
      font-size: 12px;
      cursor: pointer;
      .list-item-icon-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin-right: 16px;
        margin-bottom: 10px;
        margin-left: 16px;
        overflow: hidden;
        background-color: #f7f8fa;
        border-radius: 24px;
        .list-item-icon {
          width: 48px;
          height: 48px;
        }
      }
      p {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
        text-overflow: ellipsis;
      }
    }
  }
}
