From 8b324fc7527762eb7c7590751757b87834cfca00 Mon Sep 17 00:00:00 2001
From: litian <C21AF165>
Date: 星期四, 21 三月 2024 09:23:49 +0800
Subject: [PATCH] ...

---
 pages/personalCenter/index.wxss |   63 +++++++++++++++++++++++++++++--
 1 files changed, 59 insertions(+), 4 deletions(-)

diff --git a/pages/personalCenter/index.wxss b/pages/personalCenter/index.wxss
index 6668928..e3c23ce 100644
--- a/pages/personalCenter/index.wxss
+++ b/pages/personalCenter/index.wxss
@@ -10,9 +10,9 @@
   top: 0;
   left: 0;
   height: 80rpx;
+  line-height: 80rpx;
   z-index: 3;
   text-align: center;
-  padding-top: 60rpx;
   font-size: 36rpx;
 }
 
@@ -122,12 +122,14 @@
   width: 46rpx;
   height: 46rpx;
   margin: 0 auto;
+  display: flex;
 }
 
-.listItem .icon .t-image {
-  width: 100%;
+
+.listItem .icon .img {
+  /* width: 100%; */
   height: 100%;
-  object-fit: contain;
+
 }
 
 .listItem .label {
@@ -136,4 +138,57 @@
   line-height: 40rpx;
   text-align: center;
   margin-top: 20rpx;
+}
+
+.block {
+  width: 100vw;
+  background: #fff;
+  border-top-left-radius: 16rpx;
+  border-top-right-radius: 16rpx;
+}
+
+.block .header {
+  display: flex;
+  align-items: center;
+  height: 116rpx;
+}
+
+.block .title {
+  flex: 1;
+  text-align: center;
+  font-weight: 600;
+  font-size: 36rpx;
+}
+
+.block .body {
+  padding: 0 20rpx;
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: space-between;
+}
+
+.item {
+  width: calc(100%/2 - 30rpx);
+  text-align: center;
+  padding: 30rpx 0;
+  margin: 0 10rpx 20rpx 10rpx;
+  background: #F9F9F9;
+  border: 4rpx solid #F9F9F9;
+  border-radius: 10rpx;
+}
+
+.activeItem {
+  border: 4rpx solid #ff6c00;
+  background: #fff;
+}
+
+.footer {
+  width: 80%;
+  margin: 10rpx auto;
+}
+
+.submit {
+  background: #ff6c00;
+  color: #fff;
+  border-radius: 50rpx;
 }
\ No newline at end of file

--
Gitblit v1.9.1