89 lines
1.3 KiB
Plaintext
89 lines
1.3 KiB
Plaintext
.pindao-mask {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.55);
|
|
z-index: 9999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 40rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pindao-panel {
|
|
width: 100%;
|
|
max-height: 80vh;
|
|
background: #fff;
|
|
border-radius: 24rpx;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.pindao-head {
|
|
padding: 28rpx 32rpx 16rpx;
|
|
align-items: center;
|
|
}
|
|
|
|
.pindao-title {
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: #222;
|
|
}
|
|
|
|
.pindao-close {
|
|
width: 56rpx;
|
|
height: 56rpx;
|
|
line-height: 52rpx;
|
|
text-align: center;
|
|
font-size: 40rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.pindao-channel {
|
|
padding: 0 32rpx 20rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.pindao-channel-label {
|
|
display: block;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.pindao-channel-no {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #c9a962;
|
|
}
|
|
|
|
.pindao-scroll {
|
|
flex: 1;
|
|
max-height: 60vh;
|
|
padding: 0 24rpx 24rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pindao-img {
|
|
width: 100%;
|
|
display: block;
|
|
margin-bottom: 16rpx;
|
|
border-radius: 12rpx;
|
|
}
|
|
|
|
.pindao-empty {
|
|
text-align: center;
|
|
color: #999;
|
|
padding: 48rpx 0;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.flexb {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|