1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .box {
- width: 100vw;
- background-color: #ffffff;
- box-sizing: border-box;
- padding: 20rpx 0 0 30rpx;
- .head {
- display: flex;
- .portrait {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 80rpx;
- height: 80rpx;
- background: #3874F6;
- border-radius: 50%;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .content {
- .title {
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- text {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-left: 20rpx;
- }
- }
- .time {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 8rpx;
- }
- }
- }
- }
|