.button-wrap {
  font-size: 12px;
  position: absolute;
  border: none;
  touch-action: auto;

  .entrance-con {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .button-cl {
    width: 100%;
    height: 100%;

    .button-content {
      width: 100%;
      height: 100%;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      background-size: cover;
      cursor: pointer;
      position: relative;

      &.default:hover {
        background-color: var(--bgColor)!important;
        transition: background-color 0.3s;
      }

      &.left::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: var(--width);
        background-color: var(--bgColor);
        transition: width 0.3s;
        z-index: 1;
      }

      &.right::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: var(--width);
        background-color: var(--bgColor);
        transition: width 0.3s;
        z-index: 1;
      }

      &.top::after {
        content: '';
        position: absolute;
        width: 100%;
        height: var(--height);
        left: 0;
        bottom: 0;
        background-color: var(--bgColor);
        transition: height 0.3s;
        z-index: 1;
      }

      &.bottom::after {
        content: '';
        position: absolute;
        width: 100%;
        background-color: var(--bgColor);
        top: 0;
        left: 0;
        height: var(--height);
        transition: height 0.3s;
        z-index: 1;
      }

      .label {
        z-index: 10;
      }
    }
  }
  .flexCenterBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}