index.less 464 B

1234567891011121314151617181920212223242526
  1. .cip-dynamic-video__container{
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. .m-player{
  6. height: 100% !important; // 原始值为auto
  7. }
  8. .cip-dynamic-video{
  9. &__mask{
  10. position: absolute;
  11. left: 0;
  12. right: 0;
  13. top: 0;
  14. bottom: 0;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. z-index: 1999;
  19. }
  20. &__play{
  21. cursor: pointer;
  22. width: 20%;
  23. height: 20%;
  24. }
  25. }
  26. }