From 66e98219bcac1af4d9bf684cc31af330c68b679a Mon Sep 17 00:00:00 2001
From: YFeng <499756901@qq.com>
Date: Wed, 28 Feb 2024 10:16:19 +0800
Subject: [PATCH] 提供签名组件的显示兼容性

---
 layout/homeNav/cHomeNav.scss |   33 ++++++++++++++++++++++++++++-----
 1 files changed, 28 insertions(+), 5 deletions(-)

diff --git a/layout/homeNav/cHomeNav.scss b/layout/homeNav/cHomeNav.scss
index 14abb91..913cad1 100644
--- a/layout/homeNav/cHomeNav.scss
+++ b/layout/homeNav/cHomeNav.scss
@@ -6,9 +6,22 @@
 @import "../../common/sassMixin";
 
 .c-home-nav {
+    width: 100%;
     margin-bottom: 20px;
+    .c-home-nav-title {
+        width: 100%;
+        color: #666;
+        text-align: center;
+        background-color: #fff;
+        border-top: #e2e2e2 1PX solid;
+    }
+    .c-home-nav-content {
+        width: 100%;
+    }
     &.col-two {
-        @include clearfix;
+        .c-home-nav-content {
+            @include clearfix;
+        }
         .c-home-item {
             float: left;
             width: 50%;
@@ -50,21 +63,31 @@
         }
     }
     &.col-three {
-        width: 100%;
-        @include flexbox(flex, flex-start center, n wrap);
+        .c-home-nav-content {
+            @include flexbox(flex, flex-start center, n wrap);
+        }
         .c-home-item {
             width: 33.3%;
             height: 246px;
             padding: 36px 0 0;
             text-align: center;
             box-sizing: border-box;
-            border-right: 1px solid #e2e2e2;
-            border-bottom: 1px solid #e2e2e2;
+            border-right: 1PX solid #e2e2e2;
+            border-bottom: 1PX solid #e2e2e2;
             box-sizing: border-box;
             background-color: #fff;
             &:active {
                 background-color: #f2f2f2;
             }
+            &:nth-child(1) {
+                border-top: #e2e2e2 1PX solid;
+            }
+            &:nth-child(2) {
+                border-top: #e2e2e2 1PX solid;
+            }
+            &:nth-child(3) {
+                border-top: #e2e2e2 1PX solid;
+            }
             &:nth-child(3n+3) {
                 border-right: none;
             }

--
Gitblit v1.9.1