123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .message-list {
- margin-top: 30rpx;
- }
- .message-list .message-item {
- background: #fff;
- display: flex;
- padding: 24rpx 30rpx;
- position: relative;
- }
- .message-list .message-item::before {
- content: '';
- position: absolute;
- bottom: 0;
- right: 0;
- left: 150rpx;
- height: 2rpx;
- background: #d9d9d9;
- }
- .message-list .message-system-icon {
- width: 100rpx;
- height: 100rpx;
- border-radius: 16rpx;
- text-align: center;
- line-height: 100rpx;
- background: #08979c;
- }
- .message-list .message-image {
- width: 100rpx;
- height: 100rpx;
- border-radius: 16rpx;
- overflow: hidden;
- }
- .message-list .message-content {
- flex: 1;
- width: 0;
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .message-list .message-title {
- font-size: 32rpx;
- font-weight: 600;
- margin-bottom: 10rpx;
- }
- .message-list .message-sub-content {
- font-weight: 300;
- color: #8c8c8c;
- }
- .message-list .message-date {
- position: absolute;
- top: 34rpx;
- right: 30rpx;
- font-size: 24rpx;
- font-weight: 300;
- color: #8c8c8c;
- }
|