From 38d13d33ce195b150333a9761934ee7fd0a6fc98 Mon Sep 17 00:00:00 2001 From: haomingming Date: Fri, 14 Nov 2025 13:57:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BC=BA=E5=88=B6=E9=80=80?= =?UTF-8?q?=E5=87=BA=E7=99=BB=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 382 +++++++++++++++++++++++++++++++------------------------- 1 file changed, 209 insertions(+), 173 deletions(-) diff --git a/App.vue b/App.vue index 5f04f10..e614b74 100644 --- a/App.vue +++ b/App.vue @@ -1,185 +1,221 @@ - + // 设置整个项目的背景色 + page { + background-color: #f5f5f5; + } + + .uni-navbar__header-btns-right { + min-width: 120rpx; + width: auto !important; + } + + /* #endif */ + .uni-nav-bar-text { + font-weight: bold; + font-size: 36rpx !important; + } + + .example-info { + font-size: 14px; + color: #333; + padding: 10px; + } + + .twoline { + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow: hidden; + } + + .oneline { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + + .uni-navbar .uniui-left { + font-weight: bold; + font-size: 50rpx !important; + } + + ::-webkit-scrollbar { + display: none; + } + + .status_bar { + height: var(--status-bar-height); + background-color: #eeeeee; + } + + .navbox { + position: fixed; + top: 0; + left: 0; + right: 0; + height: calc(var(--status-bar-height) + 44px); + z-index: 9999; + } + \ No newline at end of file