iframe_modal_win.css 673 B

123456789101112131415161718192021222324252627282930313233
  1. .modal_win_bg {
  2. background-color: rgba(0, 0, 0, 0.8);
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. display: none;
  9. z-index: 99;
  10. }
  11. .iframe_container {
  12. display: none;
  13. z-index: 100;
  14. background-color: var(--bg-color);
  15. border-radius: 20px;
  16. width: 75%;
  17. height: 80%;
  18. margin: auto;
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. right: 0;
  23. bottom: 0;
  24. /*
  25. 版权声明:本文为CSDN博主「_吟游诗人」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
  26. 原文链接:https://blog.csdn.net/qq_32623363/article/details/77101971
  27. */
  28. }
  29. .iframe_container iframe {
  30. width: 100%;
  31. height: 100%;
  32. border: 0;
  33. }