From f04f35b562760afbac0c477357e2a29f77aec3b9 Mon Sep 17 00:00:00 2001
From: lrj <owen.stl@gmail.com>
Date: 星期四, 02 十月 2025 13:51:47 +0800
Subject: [PATCH] fix: 修复评审次数重复显示问题
---
wx/pages/index/index.wxss | 28 ++++++++++++++++------------
1 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/wx/pages/index/index.wxss b/wx/pages/index/index.wxss
index dc08e67..00624fe 100644
--- a/wx/pages/index/index.wxss
+++ b/wx/pages/index/index.wxss
@@ -289,36 +289,40 @@
/* 搴曢儴淇℃伅鏍峰紡 */
.bottom-info {
- display: flex;
- justify-content: space-between;
- align-items: center;
margin-bottom: 16rpx;
- gap: 20rpx;
}
.registration-info {
- flex: 1;
- min-width: 0;
+ width: 100%;
+}
+
+.progress-row {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 8rpx;
+ gap: 20rpx;
}
.progress-text {
color: #333333;
font-size: 24rpx;
- margin-bottom: 8rpx;
- display: block;
+ flex: 1;
+ min-width: 0;
}
.progress-bar {
- height: 6rpx;
- background: #f0f0f0;
- border-radius: 3rpx;
+ height: 8rpx;
+ background: #e0e0e0;
+ border-radius: 4rpx;
overflow: hidden;
+ margin-bottom: 8rpx;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #1976d2, #42a5f5);
- border-radius: 3rpx;
+ border-radius: 4rpx;
transition: width 0.3s ease;
}
--
Gitblit v1.8.0