message.wxss 1.3 KB
/* pages/message/message.wxss */
page{
 background: #EBEBEB;
 padding:130rpx 0 20rpx 0;
}
.message_top{
 height: 100rpx;
 width:100%;
 position: fixed;
 top:0;
 left:0;
 background: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 0 30rpx 0;
 z-index:2;
}
.message_top view{
 position: relative;
 color:#999;
 font-size:30rpx;
 margin: 0 30rpx;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}
.message_top view.no{
 color:#5CC348;
}
.message_top view.no::before{
 content: '';
 position: absolute;
 bottom:10rpx;
 left:50%;
 transform: translateX(-50%);
 width:40rpx;
 height: 6rpx;
 background: #5CC348;
 z-index:10;
}
.messagebox{
 margin: 16rpx 32rpx 0 32rpx;
 background: #fff;
 padding:0 43rpx 40rpx 43rpx;
 border-radius: 16rpx;
}
.messaage_title{
 display: flex;
 justify-content: space-between;
 color:#292525;
 font-size:28rpx;
 padding:35rpx 0;
 border-bottom:1rpx solid #EBEBEB;
}
.message_time{
 display: flex;
 align-items: center;
 color:#999999;
 font-size:26rpx;
}
.message_time .dot{
 width: 12rpx;
 height: 12rpx;
 border-radius: 50%;
 background: #FF0000;
 z-index: 100; 
 margin: 0 0 0 8rpx;
}
.message_mian{
 display: flex;
 align-items: center;
 margin: 18rpx 0 0 0;
 background: #FAFAFA;
 border-radius: 16rpx;
 color:#333333;
 font-size:26rpx;
 padding:29rpx 20rpx;
}