VideoWindow.css 710 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .popup-video {
  2. position: absolute;
  3. z-index: 999;
  4. }
  5. /*标题*/
  6. .popup-video .popup-video-header {
  7. background: rgb(15, 85, 195);
  8. color: rgb(255, 255, 255);
  9. font-size: 15rem;
  10. padding: 10rem;
  11. text-align: left;
  12. }
  13. /*关闭按钮*/
  14. .popup-video .popup-video-header .popup-video1-close-button {
  15. position: absolute;
  16. right: 10rem;
  17. cursor: pointer;
  18. }
  19. /*内容*/
  20. .popup-video .popup-video-content {
  21. padding: 0rem;
  22. width: 400rem;
  23. }
  24. /*提示框-下三角*/
  25. .popup-video .popup-video-tip {
  26. position: absolute;
  27. bottom: -25rem;
  28. left: 50%;
  29. margin-left: -15rem;
  30. width: 0;
  31. height: 0;
  32. border-left: 15rem solid transparent;
  33. border-right: 15rem solid transparent;
  34. border-top: 25rem solid rgb(15, 85, 195);
  35. }