From afe777a76ae3448a53986aac22b3a667a21c64c7 Mon Sep 17 00:00:00 2001
From: whycq <whycq>
Date: 星期五, 18 三月 2022 09:55:41 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/xgmwcs' into xgmwcs

---
 src/main/webapp/static/css/index.css |  155 ++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 109 insertions(+), 46 deletions(-)

diff --git a/src/main/webapp/static/css/index.css b/src/main/webapp/static/css/index.css
index a9323e2..2b5ee44 100644
--- a/src/main/webapp/static/css/index.css
+++ b/src/main/webapp/static/css/index.css
@@ -1,52 +1,115 @@
-/* 瀵艰埅 */
-.nav {
-    background-color: #fff; /*todo*/
-    color: #000;
-    list-style-type: none;
-    position: fixed;
-    width: 100%;
+* {
+    margin: 0;
     overflow: hidden;
-    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1)
 }
-.nav li {
-    float: left;
-    border-right: 1px solid #f1f1f1; /*todo*/
-}
-.nav li a {
-    font-size: 15px;
-    letter-spacing: 1px;
-    display: block;
-    text-decoration: none;
-    padding: 12px 16px;
-    text-align: center;
-    font-weight: bold;
-}
-.nav li a:hover {
-    color: #000;
-}
-.nav li.right {
-    float: right;
-}
-
-.nav-unselect {
-    color: #666;
-}
-.nav-select {
-    background-color: #f1f1f1;  /*todo*/
-    color: #000;
-}
-
-/* 涓讳綋 */
-#content {
-    box-sizing: border-box;
-    padding-top: 46px;
-    width: 100%;
+html,body {
     height: 100%;
 }
+.nav {
+    width: 100%;
+    height: 90px;
+    line-height: 90px;
+    list-style: none;
+    color: #fff;
+    position: fixed;
+    text-align: center;
+    letter-spacing:3px;
 
+}
+.right {
+    float: right;
+    margin-right: 1%;
+    margin-top: 1%;
+
+}
+#about {
+    width: 47px;
+    height: 47px;
+    display: inline-block;
+    background-image: url(../images/cancellation.png);
+}
+
+.sidebar {
+    width: 8%;
+    height: 40%;
+    line-height: 90px;
+    position: fixed;
+    top: 50%;
+    transform: translateY(-50%);
+}
+/* Effect 1: Brackets */
+.cl-effect-1 a::before,
+.cl-effect-1 a::after {
+    display: inline-block;
+    opacity: 0;
+    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
+    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
+    transition: transform 0.3s, opacity 0.2s;
+}
+
+.cl-effect-1 a::before {
+    margin-right: 10px;
+    content: '[';
+    -webkit-transform: translateX(20px);
+    -moz-transform: translateX(20px);
+    transform: translateX(20px);
+}
+
+.cl-effect-1 a::after {
+    margin-left: 10px;
+    content: ']';
+    -webkit-transform: translateX(-20px);
+    -moz-transform: translateX(-20px);
+    transform: translateX(-20px);
+}
+
+.cl-effect-1 a:hover::before,
+.cl-effect-1 a:hover::after,
+.cl-effect-1 a:focus::before,
+.cl-effect-1 a:focus::after {
+    opacity: 1;
+    -webkit-transform: translateX(0px);
+    -moz-transform: translateX(0px);
+    transform: translateX(0px);
+}
+/* Effect 1: Brackets 馃憜*/
+.sidebar ul {
+    font-size: 20px;
+    font-weight: 500;
+    padding-left: 5%;
+
+}
+.sidebar a {
+    text-decoration: none;
+    /*color: #cbcbcb;*/
+}
+
+.sidebar a:hover {
+    color: rgb(255, 148, 111);
+}
+
+
+
+.nav-unselect {
+    color: #FFFFFF;
+}
+.nav-select {
+    font-weight: 900;
+    color: rgb(255, 148, 111);
+}
+
+
+
+
+/* 涓讳綋 */
+iframe {
+    width: 100%;
+    height: 100%;
+    border-width: 0;
+}
 /* 搴曢儴 */
 footer {
-    border-top: 1px solid #e3e3e3;
+    /* border-top: 1px solid #e3e3e3; */
     position: fixed;
     bottom: 0;
     right: 0;
@@ -55,15 +118,15 @@
     font: 14px Helvetica Neue,Helvetica,PingFang SC,\5FAE\8F6F\96C5\9ED1,Tahoma,Arial,sans-serif;
     box-shadow: 0 -1px 2px 0 rgba(0,0,0,.0);
     box-sizing: border-box;
-    background-color: #fff;
+    background-color: rgba(255,255,255,.05);
     z-index: 999;
-    height: 30px;
+    height: 20px;
     font-size: 13px;
-    line-height: 30px;
+    line-height: 20px;
 }
 footer a {
     color: #3573ab;
     font-weight: bold;
     text-decoration: none;
     cursor: pointer;
-}
\ No newline at end of file
+}

--
Gitblit v1.9.1