123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .followBox {
- padding: 0rpx 20rpx 20rpx;
- .follow {
- box-sizing: border-box;
- width: 100%;
- background-color: white;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- padding: 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .userInfo {
- display: flex;
- .avatar {
- position: relative;
- .avatar-image {
- width: 96rpx;
- height: 96rpx;
- background-color: wheat;
- border-radius: 50%;
- border: 4rpx solid #61CA54;
- }
- .user-profession {
- width: 68rpx;
- height: 24rpx;
- background: rgba(97, 202, 84, 1);
- border-radius: 50rpx;
- border: 2rpx solid rgba(255, 255, 255, 1);
- font-size: 16rpx;
- color: rgba(255, 255, 255, 1);
- line-height: 24rpx;
- text-align: center;
- position: absolute;
- bottom: -4rpx;
- left: 17rpx;
- }
- }
- .nickName {
- margin-left: 14rpx;
- margin-top: 2rpx;
- }
- }
- .state {
- padding: 0rpx 30rpx;
- text-align: center;
- .stateImg {
- width: 46rpx;
- height: 40rpx;
- }
- .stateText {
- color: #686868;
- font-size: 20rpx;
- }
- }
- }
- }
|