123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- .followBox {
- padding: 0rpx 20rpx 20rpx;
- }
- .followBox .screening {
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- padding: 0rpx 28rpx 20rpx;
- display: flex;
- z-index: 9;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- background-color: #F2F6FC;
- padding-left: 20rpx;
- }
- .followBox .screening .type {
- padding: 4rpx 0rpx;
- color: #666;
- font-size: 26rpx;
- }
- .followBox .screening .currentType {
- color: #333;
- font-weight: bold;
- border-bottom: 6rpx solid #00C657;
- }
- .followBox .screening .searchFriend {
- font-size: 26rpx;
- display: flex;
- align-items: center;
- padding: 10rpx 30rpx;
- border-radius: 25rpx;
- color: #666666;
- background-color: white;
- }
- .followBox .screening .searchFriend image {
- width: 22rpx;
- height: 22rpx;
- margin-right: 10rpx;
- }
- .followBox .box {
- padding-bottom: 20rpx;
- margin-top: 100rpx;
- }
- .followBox .box .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 .box .follow .userInfo {
- flex: 1;
- display: flex;
- }
- .followBox .box .follow .userInfo .avatar {
- position: relative;
- }
- .followBox .box .follow .userInfo .avatar .avatar-image {
- width: 96rpx;
- height: 96rpx;
- background-color: wheat;
- border-radius: 50%;
- border: 4rpx solid #61CA54;
- }
- .followBox .box .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 .box .follow .userInfo .infoBox {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-left: 14rpx;
- margin-top: 2rpx;
- }
- .followBox .box .follow .userInfo .infoBox .gmtCreated {
- font-size: 26rpx;
- color: #888;
- }
- .followBox .box .follow .state {
- text-align: center;
- }
- .followBox .box .follow .state .stateText {
- width: 160rpx;
- padding: 16rpx 0rpx;
- border-radius: 50rpx;
- font-size: 24rpx;
- }
- .followBox .box .follow .state .already {
- background-color: #E4EDFB;
- }
- .followBox .box .follow .state .yet {
- background-color: #1BC665;
- color: white;
- }
- .followBox .empty {
- margin-top: 200rpx;
- }
|