1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* pages/rethink/rethink.wxss */
- page{
- padding: 30rpx 30rpx 160rpx;
- }
- .list{
- position: relative;
- padding-left: 80rpx;
- margin-bottom: 24rpx;
- }
- .list>image{
- width: 64rpx;
- height: 64rpx;
- position: absolute;
- left: 0;
- top: 0;
- border-radius: 100%;
- }
- .content,.name{
- font-size: 30rpx;
- line-height: 48rpx;
- color: #333;
- }
- .msg view{
- color: #666;
- font-size: 28rpx;
- }
- .msg view label{
- font-size: 28rpx;
- }
- .comment{
- padding: 24rpx 0;
- border-bottom: 1px solid rgba(245, 245, 245, 1);
- }
- .comment image{
- width: 32rpx;
- margin-right: 10rpx;
- position: relative;
- top: 5rpx;
- }
- .comment text{
- color: #999;
- font-size: 28rpx;
- margin-right: 40rpx;
- }
|