12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .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: 4rpx 0rpx;
- color: #666;
- font-size: 28rpx;
- }
- .followBox .screening .currentType {
- color: #333;
- font-weight: bold;
- font-size: 34rpx;
- border-bottom: 6rpx solid #00C657;
- }
- .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 {
- position: absolute;
- bottom: -4rpx;
- left: 17rpx;
- width: 68rpx;
- height: 24rpx;
- background: #61ca54;
- border-radius: 50rpx;
- border: 2rpx solid #ffffff;
- font-size: 16rpx;
- color: #ffffff;
- line-height: 24rpx;
- text-align: center;
- }
- .followBox .follow .userInfo .infoBox {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-left: 14rpx;
- margin-top: 2rpx;
- }
- .followBox .follow .userInfo .infoBox .gmtCreated {
- font-size: 24rpx;
- color: #888;
- }
- .followBox .follow .state {
- text-align: center;
- }
- .followBox .follow .state .stateText {
- width: 160rpx;
- padding: 16rpx 0rpx;
- border-radius: 50rpx;
- font-size: 24rpx;
- }
- .followBox .follow .state .already {
- background-color: #E4EDFB;
- }
- .followBox .follow .state .yet {
- background-color: #1BC665;
- color: white;
- }
- .followBox .empty {
- margin-top: 200rpx;
- }
|