| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .user {
- display: flex;
- align-items: center;
- height: 104rpx;
- width: 100vw;
- box-sizing: border-box;
- background-color: #fff;
- padding: 20rpx 30rpx;
- .portrait {
- width: 64rpx;
- height: 64rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- flex-shrink: 0;
- overflow: hidden;
- .name {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- background-color: #3874F6;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- }
- }
- .userInfo {
- display: flex;
- justify-content: space-between;
- width: 100%;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- }
- .exp {
- width: 100vw;
- padding: 0 30rpx 10rpx;
- box-sizing: border-box;
- background-color: #fff;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .client {
- display: flex;
- align-items: center;
- background-color: #fff;
- box-sizing: border-box;
- padding: 10rpx 30rpx;
- .tag {
- height: 40rpx;
- line-height: 40rpx;
- padding: 0 10rpx;
- background: #FAAB16;
- border-radius: 20rpx;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- flex-shrink: 0;
- }
- .name {
- flex: 1;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-left: 20rpx;
- }
- .state {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- flex-shrink: 0;
- margin-left: 20rpx;
- }
- }
|