| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .header {
- width: 100vw;
- background-color: #fff;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- .user {
- display: flex;
- margin-bottom: 20rpx;
- .head-portrait {
- width: 96rpx;
- height: 96rpx;
- text-align: center;
- line-height: 96rpx;
- border-radius: 50%;
- background-color: #3874F6;
- margin-right: 20rpx;
- font-size: 30rpx;
- color: #FFFFFF;
- }
- .content {
- height: 96rpx;
- .name {
- line-height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- font-weight: bold;
- }
- .tag-box {
- margin-top: 16rpx;
- }
- }
- }
- .exp {
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC, PingFang SC;
- color: #666666;
- margin-bottom: 6rpx;
- }
- }
|