| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .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: 1001;
- }
- .iframe_container {
- display: none;
- z-index: 1002;
- background-color: var(--bg-color);
- border-radius: 20px;
- width: 75%;
- height: 80%;
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .iframe_container iframe {
- width: 100%;
- height: 100%;
- border: 0;
- }
- .model_win_container {
- display: none;
- z-index: 1002;
- background-color: var(--bg-color);
- border-radius: 20px;
- width: 95%;
- height: 90%;
- margin: auto;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- overflow-y: scroll;
- }
|