From 6dc1ad2cfd50ce4bc9cf021ea8d350286d4bd5f2 Mon Sep 17 00:00:00 2001 From: Ember Date: Thu, 16 Jan 2025 17:32:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=AA=8C=E8=AF=81=E9=A1=B5?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qualification_verify/index.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/qualification_verify/index.html b/qualification_verify/index.html index fc7680f..683e7e2 100644 --- a/qualification_verify/index.html +++ b/qualification_verify/index.html @@ -288,12 +288,15 @@ .tip { position: absolute; - bottom: 10px; + bottom: -5px; left: 50%; transform: translateX(-50%); font-size: 16px; color: #555; text-align: center; + padding: 0 10px; /* 可选:增加内边距,避免内容贴边 */ + box-sizing: border-box; /* 确保 padding 不影响宽度计算 */ + width: 100%; } /* 针对 verifybtn 按钮的样式 */ @@ -374,6 +377,20 @@ color: #aaa; } + @media (max-width: 768px) { + .title { + font-size: 19px; + margin-top: 80px; /* 根据导航栏高度调整 */ + margin-bottom: 0px; + } + + .tip { + font-size: 14px; + bottom: -20px; + } +} + +