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