From 89e7ed902461f28d6a7dd3e6c927eaf40b154f5e Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期四, 15 八月 2024 10:12:07 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 wechat_staff/pages/userinfo/index.wxss |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/wechat_staff/pages/userinfo/index.wxss b/wechat_staff/pages/userinfo/index.wxss
index 048cde9..c9ed61b 100644
--- a/wechat_staff/pages/userinfo/index.wxss
+++ b/wechat_staff/pages/userinfo/index.wxss
@@ -1,3 +1,6 @@
+.main_app {
+  padding: 0 0 148rpx;
+}
 .avatar {
   margin: 52rpx auto 40rpx;
   width: 160rpx;
@@ -38,8 +41,11 @@
   flex: 1;
   color: #111111;
   text-align: right;
-  white-space: break-spaces;
-  word-break: break-word;
+  display: -webkit-box;
+  overflow: hidden;
+  -webkit-line-clamp: 2;
+  -webkit-box-orient: vertical;
+  text-overflow: ellipsis;
 }
 .list .line .input .van-cell {
   padding: 0;
@@ -63,15 +69,18 @@
   justify-content: space-between;
 }
 .list .save {
+  position: fixed;
   color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 670rpx;
   height: 88rpx;
+  left: 40rpx;
+  bottom: 12rpx;
+  z-index: 999;
   background: var(--themeColor);
   border-radius: 8rpx;
   font-weight: 500;
   font-size: 32rpx;
-  margin-top: 20rpx;
 }

--
Gitblit v1.9.3