92 lines
1.5 KiB
Plaintext
92 lines
1.5 KiB
Plaintext
/* pages/fuliMsgList/fuliMsgList.wxss */
|
|
.page{
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.cellbox{
|
|
flex:1;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
margin-top: 172rpx;
|
|
margin-bottom: 20rpx;
|
|
|
|
}
|
|
.nonedata{
|
|
margin-top: 172rpx;
|
|
}
|
|
.cell{
|
|
margin: 30rpx 32rpx 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.cell .date{
|
|
display: flex;
|
|
align-items: center;
|
|
height: 40rpx;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
padding:0 20rpx;
|
|
background: #E1E1E1;
|
|
}
|
|
.titlebox .icon{
|
|
margin-top: 8rpx;
|
|
width:60rpx;
|
|
height:46rpx;
|
|
}
|
|
.titlebox{
|
|
position: relative;
|
|
padding:20rpx;
|
|
display: flex;
|
|
align-items:flex-start;
|
|
border-bottom: 1rpx solid #E7E7E7;
|
|
}
|
|
.circle{
|
|
top:5rpx;
|
|
right:10rpx;
|
|
width:20rpx;
|
|
position: absolute;
|
|
height:20rpx;
|
|
border-radius: 50%;
|
|
background-color: rgba(239, 79, 32, 1);
|
|
}
|
|
.board{
|
|
padding-top:20rpx;
|
|
margin-top: 36rpx;
|
|
width:100%;
|
|
padding-bottom: 30rpx;
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
}
|
|
.board .name{
|
|
margin-left: 10rpx;
|
|
font-size: 34rpx;
|
|
color: #333333;
|
|
}
|
|
.board .detail{
|
|
font-size: 28rpx;
|
|
padding:20rpx;
|
|
color: #666666;
|
|
line-height: 42rpx;
|
|
}
|
|
.board .bottom{
|
|
padding:0 20rpx;
|
|
display: flex;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #333333;
|
|
justify-content: space-between;
|
|
}
|
|
.bottom .righticon{
|
|
width:16rpx;
|
|
height:32rpx;
|
|
}
|
|
.nonedata{
|
|
min-height:600rpx;
|
|
}
|
|
.board .titlebox{
|
|
align-items: center;
|
|
} |