1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .followBox {
- padding: 0rpx 20rpx 20rpx;
- .screening {
- display: flex;
- align-items: flex-end;
- justify-content: space-around;
- padding: 0rpx 24rpx;
- box-sizing: border-box;
- .type {
- padding: 10rpx 20rpx;
- color: #666;
- font-size: 26rpx;
- }
- .currentType {
- color: #333;
- font-weight: bold;
- font-size: 34rpx;
- }
- }
- .follow {
- margin-top: 20rpx;
- 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 {
- flex: 1;
- 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 {
- width: 100rpx;
- text-align: center;
- .stateImg {
- width: 46rpx;
- height: 40rpx;
- }
- .stateText {
- color: #686868;
- font-size: 20rpx;
- }
- }
- }
- .empty {
- margin-top: 200rpx;
- }
- }
|