From fff91628e125b6ffcb0d1dd5c795fb00c2c5b767 Mon Sep 17 00:00:00 2001 From: Youzini-afk <13153778771cx@gmail.com> Date: Tue, 7 Apr 2026 20:02:19 +0800 Subject: [PATCH] =?UTF-8?q?style(mobile):=20=E8=A1=A5=E5=85=A8=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E7=AB=AF=E9=80=82=E9=85=8D=20=E2=80=94=20=E8=83=BD?= =?UTF-8?q?=E5=8A=9B=E5=8D=A1=E7=89=87=20toggle/=E6=96=87=E5=AD=97?= =?UTF-8?q?=E6=94=BE=E5=A4=A7=E3=80=81config=20=E6=B8=90=E5=8F=98=E8=B7=9F?= =?UTF-8?q?=E9=9A=8F=E4=B8=BB=E9=A2=98=E3=80=81action=20=E7=BD=91=E6=A0=BC?= =?UTF-8?q?=E7=AA=84=E5=B1=8F=201=20=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 7f983d1..58b022b 100644 --- a/style.css +++ b/style.css @@ -595,7 +595,7 @@ background: radial-gradient( circle at top right, - rgba(233, 69, 96, 0.1), + var(--bme-primary-dim, rgba(233, 69, 96, 0.15)), transparent 32% ), linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%), @@ -4048,6 +4048,42 @@ gap: 10px; } + /* P1: 能力卡片 toggle 移动端放大 */ + .bme-capability-card input[type="checkbox"] { + width: 44px; + height: 24px; + border-radius: 12px; + } + + .bme-capability-card input[type="checkbox"]::after { + width: 18px; + height: 18px; + } + + .bme-capability-card input[type="checkbox"]:checked::after { + transform: translateX(20px); + } + + /* P2: 能力卡片文字 / icon 移动端微调 */ + .bme-cap-icon { + width: 38px; + height: 38px; + font-size: 17px; + border-radius: 10px; + } + + .bme-cap-title { + font-size: 14px; + } + + .bme-cap-desc { + font-size: 12px; + } + + .bme-capability-card { + padding: 14px; + } + .bme-stripe-row { flex-direction: column; gap: 12px; @@ -4097,4 +4133,9 @@ .bme-capability-grid { grid-template-columns: 1fr; } + + /* P3: Action 网格窄屏 1 列 fallback */ + .bme-action-grid { + grid-template-columns: 1fr; + } }