You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.5 KiB
90 lines
1.5 KiB
2 years ago
|
.m-popover2 {
|
||
|
position: fixed;
|
||
|
z-index: 2000;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: auto;
|
||
|
background-color: rgba(#000, 0.4);
|
||
|
overflow: auto;
|
||
|
|
||
|
> .wrap {
|
||
|
position: absolute;
|
||
|
box-sizing: border-box;
|
||
|
top: 50%;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
margin: 0 auto;
|
||
|
transform: translateY(-56%);
|
||
|
transition: transform 1s;
|
||
|
width: 560rpx;
|
||
|
min-height: 400rpx;
|
||
|
padding: 30rpx;
|
||
|
border-radius: 20rpx 20rpx 0 0;
|
||
|
background-color: #fff;
|
||
|
|
||
|
.i-jag {
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
bottom: -20rpx;
|
||
|
left: 0;
|
||
|
width: 560rpx;
|
||
|
height: 30rpx;
|
||
|
}
|
||
|
|
||
|
.close {
|
||
|
position: absolute;
|
||
|
top: -110rpx;
|
||
|
right: 4rpx;
|
||
|
width: 54rpx;
|
||
|
height: 112rpx;
|
||
|
opacity: 0.9;
|
||
|
|
||
|
image {
|
||
|
display: block;
|
||
|
width: 54rpx;
|
||
|
height: 112rpx;
|
||
|
}
|
||
|
|
||
|
.close-circle {
|
||
|
box-sizing: border-box;
|
||
|
position: relative;
|
||
|
width: 54rpx;
|
||
|
height: 54rpx;
|
||
|
border: 2px solid #fff;
|
||
|
border-radius: 100%;
|
||
|
|
||
|
&::after,
|
||
|
&::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
margin: auto;
|
||
|
width: 28rpx;
|
||
|
height: 2px;
|
||
|
border-radius: 2px;
|
||
|
background-color: #fff;
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
|
||
|
&::after {
|
||
|
transform: rotate(-45deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.close-pole {
|
||
|
margin: 0 auto;
|
||
|
width: 2px;
|
||
|
height: 64rpx;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|