123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- page {
- height: 100vh;
- overflow: hidden;
- }
- .unread {
- height: 64rpx;
- line-height: 64rpx;
- padding-left: 30rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- }
- .item {
- background-color: #fff;
- margin-bottom: 20rpx;
- .top {
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- border-bottom: 1rpx solid #ddd;
- .time {
- display: flex;
- justify-content: space-between;
- height: 34rpx;
- font-size: 24rpx;
- font-weight: normal;
- color: #888888;
- margin-top: 20rpx;
- }
- }
- .bottom {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100vw;
- height: 90rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #5C5C5C;
- image {
- height: 40rpx;
- margin-right: 10rpx;
- }
- }
- }
|