From cff3c5b09f1694f639b4b66721246f3553e1826e Mon Sep 17 00:00:00 2001 From: deepfal Date: Mon, 18 Aug 2025 14:10:45 +0800 Subject: [PATCH] =?UTF-8?q?refactor(layout):=20=E4=BC=98=E5=8C=96=E9=A6=96?= =?UTF-8?q?=E9=A1=B5=E5=B8=83=E5=B1=80=E5=92=8C=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整账户列表宽度,从 208px 改为 188px - 修改底部弧形倒计时进度条的位置和大小 - 调整头部分割线的左右位置 - 优化详情页内容的样式,包括 padding、width 等属性 - 统一代码数字的样式,缩小尺寸以适应新布局 --- src/pages/index/index.ux | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/pages/index/index.ux b/src/pages/index/index.ux index 48d3940..67de9af 100644 --- a/src/pages/index/index.ux +++ b/src/pages/index/index.ux @@ -9,7 +9,7 @@
- +
{{$item.name}} @@ -30,7 +30,7 @@
- + {{timeLeft}}秒
@@ -757,8 +757,8 @@ export default { .header-divider { position: absolute; top: 55px; - left: 20px; - right: 20px; + left: 15px; + right: 15px; height: 1px; background: linear-gradient(to right, transparent, #333, transparent); flex-shrink: 0; @@ -821,7 +821,7 @@ export default { .detail-content { flex: 1; - padding: 40px 20px 20px 20px; + padding: 40px 15px 20px 15px; flex-direction: column; align-items: center; justify-content: center; @@ -847,12 +847,12 @@ export default { align-items: center; justify-content: center; margin-bottom: 25px; - padding: 20px; + padding: 15px; background-color: #1a1a1a; border-radius: 12px; border: 2px solid #333; height: 120px; - width: 170px; + width: 150px; } .detail-code-row { @@ -863,30 +863,30 @@ export default { } .detail-code-digit { - width: 30px; - height: 50px; + width: 28px; + height: 45px; margin: 0 1px; justify-content: center; align-items: center; } .detail-code-num { - font-size: 32px; + font-size: 28px; color: #00ff88; font-weight: bold; font-family: monospace; text-align: center; - line-height: 40px; + line-height: 35px; } .detail-code-single { - font-size: 32px; + font-size: 28px; color: #00ff88; font-weight: bold; font-family: monospace; letter-spacing: 3px; text-align: center; - line-height: 40px; + line-height: 35px; } .detail-time {