Browse Source

Merge branch 'master' of http://git.fmode.cn:3000/0235697/food-picture

0235695 4 ngày trước cách đây
mục cha
commit
5bd87984b7

+ 1 - 5
picture-web/src/modules/picture/home-tab/home-tab.html

@@ -2,9 +2,6 @@
 <header class="header">
   <div class="logo">播菜汪</div>
   <div class="nav-icons">
-    <i class="bi bi-heart"></i>
-    <i class="bi bi-bell"></i>
-    <i class="bi bi-person"></i>
   </div>
 </header>
 
@@ -12,7 +9,6 @@
   <!-- 搜索区域 -->
   <section class="search-section">
     <div class="search-bar">
-      <i class="bi bi-search search-icon"></i>
       <input type="text" class="search-input" placeholder="请输入关键词" routerLink="/mobile/image-search" >
     </div>
     
@@ -28,7 +24,7 @@
   <section class="recommend-section">
     <div class="section-title">
       <h2>智能推荐</h2>
-      <a href="#">更多推荐</a>
+      
     </div>
     
     <div class="swiper-container">

+ 2 - 2
picture-web/src/modules/picture/home-tab/home-tab.scss

@@ -3,7 +3,7 @@
   --secondary-color: #F7C59F;
   --accent-color: #EFEFD0;
   --text-dark: #333;
-  --text-light: #fff;
+  --text-light: #ea6513e1;
   --bg-gradient: linear-gradient(135deg, #FF6B35 0%, #FFBE0B 100%);
 }
 
@@ -32,7 +32,7 @@ body {
   top: 0;
   left: 0;
   right: 0;
-  background: rgba(255, 255, 255, 0.9);
+  background: rgb(247, 215, 183);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   z-index: 1000;

+ 4 - 0
picture-web/src/modules/thired-ser/ogin-screen/ogin-screen.html

@@ -1,3 +1,7 @@
+<!-- 返回按钮 -->
+    <a href="#" class="back-button" id="backButton">
+        <i class="fas fa-arrow-left"></i>
+    </a>
 <!-- 装饰元素 -->
 <div class="decorations">
   <i class="decoration fas fa-utensils" style="top: 10%; left: 5%;"></i>

+ 24 - 0
picture-web/src/modules/thired-ser/ogin-screen/ogin-screen.scss

@@ -1,3 +1,27 @@
+/* 返回按钮 */
+.back-button {
+position: absolute;
+top: 25px;
+left: 25px;
+z-index: 100;
+background: rgba(255, 255, 255, 0.9);
+width: 50px;
+height: 50px;
+border-radius: 50%;
+display: flex;
+justify-content: center;
+align-items: center;
+box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
+transition: all 0.3s ease;
+color: #ff7e5f;
+font-size: 1.3rem;
+text-decoration: none;
+}        
+.back-button:hover {
+transform: translateX(-3px);
+background: white;
+box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
+}
 * {
   margin: 0;
   padding: 0;