12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- page {
- background: #F3F3F3;
- color: #333;
- }
- view,text{
- box-sizing: border-box;
- color:#333;
- font-size: 28rpx;
- }
- .van-tab--active view.van-ellipsis{
- color:#1677FF;
- }
- .message-list{
- margin:40rpx 24rpx 0;
- width:702rpx;
- }
- .message-item{
- background: #FFFFFF;
- border-radius: 18rpx;
- min-height:200rpx;
- margin-bottom:16rpx;
- padding:30rpx 24rpx 28rpx;
- }
- .message-item .title{
- height: 36rpx;
- display: flex;
- align-self: center;
-
- }
- .message-item .title image{
- width:36rpx;
- height:36rpx;
- margin-right:10rpx;
- }
- .message-item .title view{
- font-size: 32rpx;
- line-height: 32rpx;
- }
- view.content{
- margin:56rpx 0 46rpx;
- line-height: 38rpx;
- color:#666;
- font-size: 26rpx;
- }
- view.content.warn-text{
- font-weight: 600;
- color: #DC0000;
- }
- .message-bottom {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- height: 40rpx;
- line-height: 40rpx;
- }
- .message-bottom image{
- width:30rpx;
- height: 30rpx;
- margin-right:8rpx;
- }
- .message-bottom view{
- color: #0EAEFC;
- }
|