From 89923ab8614f551985a8a3cb7c3807b593344a21 Mon Sep 17 00:00:00 2001 From: lyf <2514544224@qq.com> Date: Tue, 7 Jul 2026 23:45:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=AE=B2=E8=A7=A3=E9=A1=B5?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/explain/ExplainHallSelect.vue | 22 ++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/components/explain/ExplainHallSelect.vue b/src/components/explain/ExplainHallSelect.vue index eea1560..1e68d6b 100644 --- a/src/components/explain/ExplainHallSelect.vue +++ b/src/components/explain/ExplainHallSelect.vue @@ -332,27 +332,37 @@ const handleBack = () => { display: flex; align-items: center; justify-content: flex-start; - gap: 2px; + gap: 6px; z-index: 1; } .header-back-icon { + position: relative; width: 18px; - height: 24px; + height: 18px; display: flex; align-items: center; justify-content: center; - font-size: 27px; - line-height: 24px; + font-size: 0; + line-height: 0; color: #151713; } +.header-back-icon::before { + content: ''; + width: 9px; + height: 9px; + border-left: 2px solid currentColor; + border-bottom: 2px solid currentColor; + transform: translateX(2px) rotate(45deg); +} + .header-back-text { display: flex; align-items: center; - height: 24px; + height: 20px; font-size: 15px; - line-height: 24px; + line-height: 20px; font-weight: 500; color: #151713; }