@import "../../index";

.adm-image-uploader .adm-space.adm-space-block .adm-space-item {
  flex: 0 !important;
}

.#{$prefixCls}preview-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(245, 245, 245);
  }
  .play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items:  center;
    justify-content: center;
  }
}

.#{$prefixCls}play-button {
  cursor: pointer;
  position: relative;
  width: 26px;
  height: 26px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.#{$prefixCls}play-button::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid white;  /* 调整三角形的大小 */
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
