54 lines
795 B
CSS
54 lines
795 B
CSS
.popout_wrap {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
z-index: 108;
|
|
}
|
|
|
|
.show_popout {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-width: 1120px;
|
|
min-height: 580px;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 1;
|
|
}
|
|
|
|
.popout_cancel {
|
|
position: absolute;
|
|
top: 1px;
|
|
right: -1px;
|
|
width: 24px;
|
|
height: 24px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
|
|
.test_wrap {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
z-index: 108;
|
|
}
|
|
|
|
.show_test {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-width: 1120px;
|
|
min-height: 580px;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 1;
|
|
} |