.suspension-ball-container {
  position: fixed;
  width: 60px;
  height: 60px;
  background: #096dd9;
  z-index: 100000;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 12px;
  .suspension-ball-list {
    position: absolute;
    line-height: 24px;
    background: #fff;
    border-radius: 4px;
    color: #333;
    top: 50%;
    transform: translateY(-50%);
    left: 70px;
    &::after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: -10px;
      margin-top: -5px;
      border-top: 5px solid transparent;
      border-right: 5px solid #fff;
      border-bottom: 5px solid transparent;
      border-left: 5px solid transparent;
    }
    &.suspension-ball-list--right {
      left: -85px;
      &::after {
        right: -10px;
        left: unset;
        border-top: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #fff;
      }
    }
    .suspension-ball-item {
      height: 24px;
      padding: 4px 8px;
      min-width: 60px;
      line-height: 24px;
      box-sizing: content-box;
    }
  }
}
.suspension-ball-container--hidden {
  position: fixed;
  width: 20px;
  height: 20px;
  background: #52c41a;
  z-index: 100000;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 12px;
  opacity: 0.4;
  &.suspension-ball-hidden--top {
    border-radius: 0 0 50% 50%;
  }
  &.suspension-ball-hidden--left {
    border-radius: 0 50% 50% 0;
  }
  &.suspension-ball-hidden--right {
    border-radius: 50% 0 0 50%;
    left: unset !important;
    right: 0;
  }
  &.suspension-ball-hidden--bottom {
    border-radius: 50% 50% 0 0;
    top: unset !important;
    bottom: 0;
  }
}