| 123456789101112131415161718192021222324252627282930313233 |
- .modal_win_bg {
- background-color: rgba(0, 0, 0, 0.8);
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: none;
- z-index: 99;
- }
- .iframe_container {
- display: none;
- z-index: 100;
- background-color: var(--bg-color);
- border-radius: 20px;
- width: 75%;
- height: 80%;
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- /*
- 版权声明:本文为CSDN博主「_吟游诗人」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
- 原文链接:https://blog.csdn.net/qq_32623363/article/details/77101971
- */
- }
- .iframe_container iframe {
- width: 100%;
- height: 100%;
- border: 0;
- }
|