61 lines
954 B
Plaintext
61 lines
954 B
Plaintext
/* components/popup/popup.wxss */
|
|
.i-modal-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
z-index: 1000;
|
|
transition: all 0.2s ease-in-out;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.i-modal-mask-show {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
.centerView {
|
|
width: 85%;
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0 15px;
|
|
max-height: 50%;
|
|
overflow-y: auto;
|
|
}
|
|
.centerView::-webkit-scrollbar{
|
|
width: 0;
|
|
}
|
|
|
|
|
|
.contentText {
|
|
width: 100%;
|
|
color: #333;
|
|
font-size: 14px;
|
|
word-break: break-all;
|
|
}
|
|
.item{
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
border-bottom: 0.5px solid #f5f5f5;
|
|
}
|
|
.item text{
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.item:last-child{
|
|
border: 0;
|
|
}
|
|
|