ljh 2 years ago
parent
commit
ab10653eae

+ 89 - 0
nngkxxdp/src/main/resources/static/app/css/navigation.css

@@ -0,0 +1,89 @@
+* {
+    margin: 0;
+    border: 0;
+}
+
+body,
+html {
+    width: 100%;
+    height: 100%;
+
+}
+
+.flot {
+    width: 24px;
+    height: 14px;
+}
+
+.content {
+    width: 100%;
+    min-width: 750px;
+    /* height: 1684px; */
+    background-color: #EBF0F3;
+    font-weight: 400;
+    display: flex;
+    justify-content: center;
+}
+
+.center {
+    position: absolute;
+    width: 750px;
+    height: 100%;
+}
+
+.nav {
+    width: 200px;
+}
+
+.nav p {
+    width: 200px;
+    height: 40px;
+    font-size: 42px;
+    font-family: PingFang SC;
+    font-weight: bold;
+    color: #1D498E;
+    line-height: 60px;
+}
+
+.nav .nav-line {
+    width: 89px;
+    height: 8px;
+    background: #1D498E;
+    margin: 18px 0 0 40px;
+}
+
+.zclx {
+    margin-top: 49px;
+}
+
+.zclx .zclx-nav {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+}
+
+.zclx .zclx-nav .zclx-title {
+    font-size: 26px;
+    font-family: PingFang SC;
+    font-weight: 400;
+    color: #333333;
+    line-height: 60px;
+}
+
+.zclx .zclx-nav .zclx-fold span {
+    font-size: 26px;
+    font-family: PingFang SC;
+    font-weight: 400;
+    color: #666666;
+    line-height: 60px;
+}
+
+.zclx .zclx-content {
+    width: 50px;
+    height: 12px;
+    font-size: 12px;
+    font-family: PingFang SC;
+    font-weight: 400;
+    color: #1D498E;
+    line-height: 31px;
+}

BIN
nngkxxdp/src/main/resources/static/app/img/flot-bottom.png


BIN
nngkxxdp/src/main/resources/static/app/img/flot-right.png


+ 52 - 0
nngkxxdp/src/main/resources/static/app/navigation.html

@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=0.5">
+    <link rel="stylesheet" href="./css/navigation.css">
+    <title>惠企导航</title>
+</head>
+
+<body>
+    <div class="content">
+        <div class="center">
+            <div class="nav">
+                <p>惠企导航</p>
+                <div class="nav-line"></div>
+            </div>
+
+            <div class="zclx">
+                <div class="zclx-nav">
+                    <div class="zclx-title">
+                        支持类型:
+                    </div>
+                    <div class="zclx-fold">
+                        <span>收起</span>
+                        <img src="./img/flot-right.png" alt="" class="flot">
+                    </div>
+                </div>
+                <div class="zclx-content">
+                    <ul>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                        <li>延期办理</li>
+                    </ul>
+                </div>
+            </div>
+        </div>
+    </div>
+</body>
+
+</html>