123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .followBox {
- padding: 0rpx 20rpx 20rpx;
- }
- .followBox .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;
- }
- .followBox .follow .userInfo {
- display: flex;
- }
- .followBox .follow .userInfo .avatar {
- position: relative;
- }
- .followBox .follow .userInfo .avatar .avatar-image {
- width: 96rpx;
- height: 96rpx;
- background-color: wheat;
- border-radius: 50%;
- border: 4rpx solid #61CA54;
- }
- .followBox .follow .userInfo .avatar .user-profession {
- width: 68rpx;
- height: 24rpx;
- background: #61ca54;
- border-radius: 50rpx;
- border: 2rpx solid #ffffff;
- font-size: 16rpx;
- color: #ffffff;
- line-height: 24rpx;
- text-align: center;
- position: absolute;
- bottom: -4rpx;
- left: 17rpx;
- }
- .followBox .follow .userInfo .nickName {
- margin-left: 14rpx;
- margin-top: 2rpx;
- }
- .followBox .follow .state {
- padding: 0rpx 30rpx;
- text-align: center;
- }
- .followBox .follow .state .stateImg {
- width: 46rpx;
- height: 40rpx;
- }
- .followBox .follow .state .stateText {
- color: #686868;
- font-size: 20rpx;
- }
|