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.
84 lines
1.6 KiB
84 lines
1.6 KiB
.coverview-dialog {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
background: rgba(0,0,0, 0.4);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.coverview-dialog .box {
|
|
padding: 0rpx 20rpx;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
overflow: hidden;
|
|
position: relative;
|
|
min-width: 490rpx;
|
|
}
|
|
.coverview-dialog .box .close {
|
|
width:100%;
|
|
height: 60rpx;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
.coverview-dialog .box .close cover-image {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
object-fit: cover;
|
|
margin-right: 20rpx;
|
|
}
|
|
.coverview-dialog .box .title {
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
width: 100%;
|
|
text-align:center;
|
|
font-size: 36rpx;
|
|
color: #333;
|
|
margin-bottom: 23rpx;
|
|
}
|
|
.coverview-dialog .box .content {
|
|
height: auto;
|
|
width: 100%;
|
|
padding-bottom: 35rpx;
|
|
}
|
|
.coverview-dialog .box .content cover-view {
|
|
font-size: 30rpx;
|
|
line-height: 50rpx;
|
|
height: 50rpx;
|
|
/* width: calc(100% - 20rpx); */
|
|
text-align: center;
|
|
color: #666;
|
|
padding: 0 10rpx;
|
|
}
|
|
.coverview-dialog .box .border {
|
|
width: 100%;
|
|
height: 1rpx;
|
|
background: #eaeaea;
|
|
position: absolute;
|
|
left:0;
|
|
bottom: 105rpx;
|
|
}
|
|
.coverview-dialog .box .operation {
|
|
width: 100%;
|
|
height: 75rpx;
|
|
padding: 15rpx 0;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.coverview-dialog .box .operation cover-view {
|
|
flex: 1;
|
|
color: #999;
|
|
font-size: 36rpx;
|
|
width: 49%;
|
|
height: 100%;
|
|
line-height: 75rpx;
|
|
text-align:center;
|
|
}
|
|
.coverview-dialog .box .operation .confirm{
|
|
color: #04BCA0;
|
|
}
|
|
|