84 lines
1.5 KiB
Plaintext
84 lines
1.5 KiB
Plaintext
/* components/pagination/index.wxss */
|
|
view,text,image{
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
.page-control{
|
|
width: 100%;
|
|
}
|
|
.page-control .page-control-btns{
|
|
width: 100%;
|
|
padding: 20rpx 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
.page-control .page-control-btns .page-number{
|
|
width: 20%;
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
.page-control .page-control-btns .page-number:active{
|
|
background-color: #ddd;
|
|
}
|
|
.page-control .page-control-btns .page-btn{
|
|
width: 30%;
|
|
padding: 15rpx 20rpx;
|
|
font-size: 30rpx;
|
|
background-color: #0099CC;
|
|
color: #fff;
|
|
border-radius: 10rpx;
|
|
text-align: center;
|
|
}
|
|
.page-control .page-control-btns .page-btn:active{
|
|
opacity: .5;
|
|
}
|
|
.page-control .page-control-btns .btn-disabled{
|
|
background-color: #ddd;
|
|
color: #999;
|
|
}
|
|
.page-container{
|
|
position: fixed;
|
|
top: 0rpx;
|
|
left: 0rpx;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 999;
|
|
}
|
|
.page-mask{
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background-color: rgba(0,0,0,0.5);
|
|
}
|
|
.page-popup{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.page-popup-box{
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
height: 60%;
|
|
border-radius: 10rpx;
|
|
z-index: 9999;
|
|
overflow: auto;
|
|
}
|
|
.page-line{
|
|
width: 100%;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
padding: 0rpx 20rpx;
|
|
border-bottom: 1rpx solid #e2e2e2;
|
|
}
|
|
.page-line:active{
|
|
background-color: #ddd;
|
|
}
|