.component {
  display: flex;
  flex-direction: column;
  background-color: #3e3e3e;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 88rpx;
  > .button {
    padding: 0 16rpx;
    &:nth-child(1) {
      color: #999999;
    }
    &:nth-child(2) {
      color: #141414;
    }
  }
}

.content {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  > .pointer {
    background-color: #00000011;
    position: absolute;
    width: calc(100% - 64rpx);
    height: 72rpx;
    top: 50%;
    left: 32rpx;
    transform: translateY(-50%);
    border-radius: 16rpx;
    pointer-events: none;
  }
}
