| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- page {
- height: 100vh;
- overflow: hidden;
- }
- .total {
- height: 64rpx;
- line-height: 64rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- background: #F4F5F7;
- padding-left: 30rpx;
- }
- .item {
- width: 100%;
- padding-left: 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- margin-bottom: 20rpx;
- .user {
- display: flex;
- align-items: center;
- width: 100%;
- height: 120rpx;
- box-sizing: border-box;
- .portrait {
- width: 80rpx;
- height: 80rpx;
- background: #3874F6;
- border-radius: 50%;
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- flex-shrink: 0;
- }
- .exp {
- width: 100%;
- margin-left: 20rpx;
- .line-1 {
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .phone {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 4rpx;
- }
- }
- }
- .type {
- font-size: 26rpx;
- display: flex;
- justify-content: space-between;
- width: 100%;
- color: #333333;
- &-item {
- width: 48%;
- color: #000;
- }
- }
- .content {
- font-size: 26rpx;
- color: #333333;
- margin-top: 8rpx;
- }
- .time {
- margin-top: 20rpx;
- padding: 20rpx;
- font-size: 24rpx;
- color: #999;
- box-sizing: border-box;
- border-top: 1px solid #ddd;
- margin-left: -30rpx;
- }
- }
|