1234567891011121314151617181920212223242526272829303132333435 |
- #popup {
- display: none;
- position: relative;
- padding: 0;
- width: 100%;
- height: 100%;
- text-align: center;
- background: rgba(0, 0, 0, 0.6);
- z-index: var(--z-hot-popper);
- &.wait {
- opacity: 0.1;
- }
- }
- #id1 {
- width: 100%;
- height: 100%;
- }
- .popup-content {
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- #closepop {
- position: absolute;
- top: 30px;
- right: 30px;
- width: 60px;
- height: 60px;
- cursor: pointer;
- text-indent: -999em;
- background-size: 100% 100%;
- background: url('/public/images/close1.png') no-repeat;
- }
|