|
@@ -1 +1,94 @@
|
|
|
-/* pages/searchFriend/index.wxss */
|
|
|
+.searchFriend .searchBox {
|
|
|
+ position: fixed;
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ width: 100%;
|
|
|
+ padding: 4rpx 20rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ z-index: 9;
|
|
|
+}
|
|
|
+.searchFriend .searchBox .input {
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 50rpx;
|
|
|
+ padding: 12rpx 30rpx;
|
|
|
+ padding-right: 140rpx;
|
|
|
+}
|
|
|
+.searchFriend .searchBox .searchBtn {
|
|
|
+ position: absolute;
|
|
|
+ right: 40rpx;
|
|
|
+ top: 12rpx;
|
|
|
+ padding: 6rpx 40rpx;
|
|
|
+ background: #00C657;
|
|
|
+ border-radius: 40rpx;
|
|
|
+}
|
|
|
+.searchFriend .searchBox .searchBtn .img {
|
|
|
+ width: 24rpx;
|
|
|
+ height: 24rpx;
|
|
|
+}
|
|
|
+.searchFriend .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;
|
|
|
+}
|
|
|
+.searchFriend .follow .userInfo {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.searchFriend .follow .userInfo .avatar {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.searchFriend .follow .userInfo .avatar .avatar-image {
|
|
|
+ width: 96rpx;
|
|
|
+ height: 96rpx;
|
|
|
+ background-color: wheat;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 4rpx solid #61CA54;
|
|
|
+}
|
|
|
+.searchFriend .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;
|
|
|
+}
|
|
|
+.searchFriend .follow .userInfo .infoBox {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-around;
|
|
|
+ margin-left: 14rpx;
|
|
|
+ margin-top: 2rpx;
|
|
|
+}
|
|
|
+.searchFriend .follow .userInfo .infoBox .gmtCreated {
|
|
|
+ font-size: 26rpx;
|
|
|
+ color: #888;
|
|
|
+}
|
|
|
+.searchFriend .follow .state {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.searchFriend .follow .state .stateText {
|
|
|
+ width: 160rpx;
|
|
|
+ padding: 16rpx 0rpx;
|
|
|
+ border-radius: 50rpx;
|
|
|
+ font-size: 24rpx;
|
|
|
+}
|
|
|
+.searchFriend .follow .state .already {
|
|
|
+ background-color: #E4EDFB;
|
|
|
+}
|
|
|
+.searchFriend .follow .state .yet {
|
|
|
+ background-color: #1BC665;
|
|
|
+ color: white;
|
|
|
+}
|