1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .item {
- width: 100vw;
- padding-left: 30rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- .content {
- padding: 20rpx 0;
- border-bottom: 1px solid #DDD;
- .user {
- display: flex;
- width: 100%;
- .portrait {
- width: 64rpx;
- height: 64rpx;
- text-align: center;
- line-height: 64rpx;
- background: #3874F6;
- border-radius: 50%;
- margin-top: 16rpx;
- margin-right: 10rpx;
- flex-shrink: 0;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- }
- .right {
- flex: 1;
- .title {
- height: 42rpx;
- line-height: 42rpx;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- text {
- margin-left: 20rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- }
- .tap {
- text {
- display: inline-block;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FA8C16;
- padding: 0 10rpx;
- height: 40rpx;
- line-height: 38rpx;
- background: #FFEFD9;
- border-radius: 20rpx;
- margin-right: 10rpx;
- }
- }
- }
- }
- .exp {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- }
- }
|