|
@@ -2,10 +2,17 @@
|
|
padding: 0rpx 20rpx 20rpx;
|
|
padding: 0rpx 20rpx 20rpx;
|
|
}
|
|
}
|
|
.followBox .screening {
|
|
.followBox .screening {
|
|
|
|
+ position: fixed;
|
|
|
|
+ top: 0px;
|
|
|
|
+ left: 0px;
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 0rpx 28rpx 20rpx;
|
|
display: flex;
|
|
display: flex;
|
|
|
|
+ z-index: 9;
|
|
align-items: center;
|
|
align-items: center;
|
|
- justify-content: space-around;
|
|
|
|
|
|
+ justify-content: space-between;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
+ background-color: #F2F6FC;
|
|
padding-left: 20rpx;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
.followBox .screening .type {
|
|
.followBox .screening .type {
|
|
@@ -15,7 +22,6 @@
|
|
}
|
|
}
|
|
.followBox .screening .currentType {
|
|
.followBox .screening .currentType {
|
|
color: #333;
|
|
color: #333;
|
|
- font-size: 32rpx;
|
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
border-bottom: 6rpx solid #00C657;
|
|
border-bottom: 6rpx solid #00C657;
|
|
}
|
|
}
|
|
@@ -23,7 +29,7 @@
|
|
font-size: 26rpx;
|
|
font-size: 26rpx;
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
- padding: 10rpx 26rpx;
|
|
|
|
|
|
+ padding: 10rpx 30rpx;
|
|
border-radius: 25rpx;
|
|
border-radius: 25rpx;
|
|
color: #666666;
|
|
color: #666666;
|
|
background-color: white;
|
|
background-color: white;
|
|
@@ -33,7 +39,11 @@
|
|
height: 22rpx;
|
|
height: 22rpx;
|
|
margin-right: 10rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
-.followBox .follow {
|
|
|
|
|
|
+.followBox .box {
|
|
|
|
+ padding-bottom: 20rpx;
|
|
|
|
+ margin-top: 100rpx;
|
|
|
|
+}
|
|
|
|
+.followBox .box .follow {
|
|
margin-top: 20rpx;
|
|
margin-top: 20rpx;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -45,21 +55,21 @@
|
|
align-items: center;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo {
|
|
|
|
|
|
+.followBox .box .follow .userInfo {
|
|
flex: 1;
|
|
flex: 1;
|
|
display: flex;
|
|
display: flex;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo .avatar {
|
|
|
|
|
|
+.followBox .box .follow .userInfo .avatar {
|
|
position: relative;
|
|
position: relative;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo .avatar .avatar-image {
|
|
|
|
|
|
+.followBox .box .follow .userInfo .avatar .avatar-image {
|
|
width: 96rpx;
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
height: 96rpx;
|
|
background-color: wheat;
|
|
background-color: wheat;
|
|
border-radius: 50%;
|
|
border-radius: 50%;
|
|
border: 4rpx solid #61CA54;
|
|
border: 4rpx solid #61CA54;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo .avatar .user-profession {
|
|
|
|
|
|
+.followBox .box .follow .userInfo .avatar .user-profession {
|
|
position: absolute;
|
|
position: absolute;
|
|
bottom: -4rpx;
|
|
bottom: -4rpx;
|
|
left: 17rpx;
|
|
left: 17rpx;
|
|
@@ -73,30 +83,30 @@
|
|
line-height: 24rpx;
|
|
line-height: 24rpx;
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo .infoBox {
|
|
|
|
|
|
+.followBox .box .follow .userInfo .infoBox {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
justify-content: space-around;
|
|
margin-left: 14rpx;
|
|
margin-left: 14rpx;
|
|
margin-top: 2rpx;
|
|
margin-top: 2rpx;
|
|
}
|
|
}
|
|
-.followBox .follow .userInfo .infoBox .gmtCreated {
|
|
|
|
|
|
+.followBox .box .follow .userInfo .infoBox .gmtCreated {
|
|
font-size: 26rpx;
|
|
font-size: 26rpx;
|
|
color: #888;
|
|
color: #888;
|
|
}
|
|
}
|
|
-.followBox .follow .state {
|
|
|
|
|
|
+.followBox .box .follow .state {
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
-.followBox .follow .state .stateText {
|
|
|
|
|
|
+.followBox .box .follow .state .stateText {
|
|
width: 160rpx;
|
|
width: 160rpx;
|
|
padding: 16rpx 0rpx;
|
|
padding: 16rpx 0rpx;
|
|
border-radius: 50rpx;
|
|
border-radius: 50rpx;
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
}
|
|
-.followBox .follow .state .already {
|
|
|
|
|
|
+.followBox .box .follow .state .already {
|
|
background-color: #E4EDFB;
|
|
background-color: #E4EDFB;
|
|
}
|
|
}
|
|
-.followBox .follow .state .yet {
|
|
|
|
|
|
+.followBox .box .follow .state .yet {
|
|
background-color: #1BC665;
|
|
background-color: #1BC665;
|
|
color: white;
|
|
color: white;
|
|
}
|
|
}
|