From 912a173f39ffe662ebf320abc8d18ce296c557a4 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 14 十一月 2025 10:14:54 +0800
Subject: [PATCH] fix: bug

---
 packages/components/src/Button/CustomerServiceButton.vue |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/packages/components/src/Button/CustomerServiceButton.vue b/packages/components/src/Button/CustomerServiceButton.vue
index 7069bce..6a694bd 100644
--- a/packages/components/src/Button/CustomerServiceButton.vue
+++ b/packages/components/src/Button/CustomerServiceButton.vue
@@ -2,7 +2,7 @@
   <button class="customer-service-btn-wrapper" :open-type="'contact'">
     <!-- <img class="back-top-img" :src="IconBackTop" /> -->
     <Service size="22" color="#333" />
-    <!-- <div class="customer-service-btn-text">瀹㈡湇</div> -->
+    <div class="customer-service-btn-text">瀹㈡湇</div>
   </button>
 </template>
 
@@ -19,10 +19,11 @@
 
 .customer-service-btn-wrapper {
   display: flex;
+  flex-direction: column;
   align-items: center;
   justify-content: center;
-  width: 92px;
-  height: 92px;
+  width: 110px;
+  height: 110px;
   border-radius: 50%;
   background-color: #fff;
   box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.18);
@@ -33,9 +34,10 @@
 
   .customer-service-btn-text {
     font-weight: 400;
-    font-size: 16px;
+    font-size: 22px;
     color: boleGetCssVar('text-color', 'regular');
     line-height: 22px;
+    margin-top: 4px;
     text-align: center;
   }
 }

--
Gitblit v1.9.1