From 9a0e2661c69fea29a0a53ecdf9e11333da9b9615 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 07 七月 2025 15:27:21 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
web/.idea/modules.xml | 8 +
web/assets/images/home_imga@2x.png | 0
web/assets/images/home_imgb@2x.png | 0
web/.idea/web.iml | 12 ++
web/.idea/vcs.xml | 6 +
web/index.html | 123 ++++++++++++++++++++++++
web/.idea/.gitignore | 5 +
web/assets/common.css | 54 ++++++++++
web/.idea/misc.xml | 6 +
web/assets/home.css | 80 ++++++++++++++++
10 files changed, 294 insertions(+), 0 deletions(-)
diff --git a/web/.idea/.gitignore b/web/.idea/.gitignore
new file mode 100644
index 0000000..b58b603
--- /dev/null
+++ b/web/.idea/.gitignore
@@ -0,0 +1,5 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/web/.idea/misc.xml b/web/.idea/misc.xml
new file mode 100644
index 0000000..28a804d
--- /dev/null
+++ b/web/.idea/misc.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="JavaScriptSettings">
+ <option name="languageLevel" value="ES6" />
+ </component>
+</project>
\ No newline at end of file
diff --git a/web/.idea/modules.xml b/web/.idea/modules.xml
new file mode 100644
index 0000000..f589ca3
--- /dev/null
+++ b/web/.idea/modules.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="ProjectModuleManager">
+ <modules>
+ <module fileurl="file://$PROJECT_DIR$/.idea/web.iml" filepath="$PROJECT_DIR$/.idea/web.iml" />
+ </modules>
+ </component>
+</project>
\ No newline at end of file
diff --git a/web/.idea/vcs.xml b/web/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/web/.idea/vcs.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="VcsDirectoryMappings">
+ <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
+ </component>
+</project>
\ No newline at end of file
diff --git a/web/.idea/web.iml b/web/.idea/web.iml
new file mode 100644
index 0000000..24643cc
--- /dev/null
+++ b/web/.idea/web.iml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+ <component name="NewModuleRootManager">
+ <content url="file://$MODULE_DIR$">
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
+ </content>
+ <orderEntry type="inheritedJdk" />
+ <orderEntry type="sourceFolder" forTests="false" />
+ </component>
+</module>
\ No newline at end of file
diff --git a/web/assets/common.css b/web/assets/common.css
index 785810a..25813f2 100644
--- a/web/assets/common.css
+++ b/web/assets/common.css
@@ -68,6 +68,60 @@
}
ul li a {
display: block;
+ position: relative;
+}
+ul li:hover .drop-down {
+ display: block;
+}
+.fa {
+ position: fixed !important;
+ left: 0 !important;
+ width: 100vw !important;
+ padding: 30px 0 !important;
+ box-sizing: border-box !important;
+}
+.fa-content {
+ width: 1200px;
+ margin: 0 auto;
+}
+.fa-content-item {
+ width: 100%;
+}
+.fa-content-item-label {
+ font-weight: 600;
+ font-size: 18px;
+ color: #191B1F;
+}
+.fa-content-item-list {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ flex-wrap: wrap;
+}
+.drop-down {
+ position: absolute;
+ top: 70px;
+ left: -50px;
+ width: 164px;
+ display: none;
+ background: #FFFFFF;
+ box-shadow: 0 7px 20px 0 rgba(0,0,0,0.1);
+}
+.drop-down-item {
+ width: 100%;
+ height: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: 400;
+ font-size: 14px;
+ color: #222222;
+ cursor: pointer;
+}
+.drop-down-item:hover {
+ font-weight: 500;
+ color: #FF7900;
}
ul li {
margin-right: 50px;
diff --git a/web/assets/home.css b/web/assets/home.css
index a2bc05f..33ddbd8 100644
--- a/web/assets/home.css
+++ b/web/assets/home.css
@@ -720,3 +720,83 @@
width: 100%;
height: 100%;
}
+.index-h {
+ width: 100%;
+ padding: 60px 0;
+ box-sizing: border-box;
+ background: #FAFBFF;
+}
+.h-content {
+ width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ align-items: start;
+ justify-content: space-between;
+}
+.h-content-left {
+ width: 32%;
+ display: flex;
+ flex-direction: column;
+}
+.h-content-left-item {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ margin-bottom: 20px;
+}
+.h-content-left-item:last-child {
+ margin: 0 !important;
+}
+.h-content-left-item span {
+ font-weight: bold;
+ font-size: 18px;
+ color: #191B1F;
+}
+.h-content-left-item img {
+ width: 100%;
+ height: 134px;
+ margin-top: 20px;
+}
+.h-content-right {
+ width: 32%;
+}
+.h-content-right-title {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ cursor: pointer;
+}
+.h-content-right-title span {
+ font-weight: bold;
+ font-size: 18px;
+ color: #191B1F;
+}
+.h-content-right-title a {
+ font-weight: 400;
+ font-size: 13px;
+ color: #7B7F87;
+}
+.h-content-row {
+ width: 100%;
+ height: 58px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ border-bottom: 1px solid #DFE2E8;
+}
+.h-content-row-nr {
+ width: 75%;
+ font-weight: 400;
+ font-size: 14px;
+ color: #333333;
+ white-space: nowrap; /* 闃叉鏂囨湰鎹㈣ */
+ overflow: hidden; /* 闅愯棌婧㈠嚭鐨勬枃鏈� */
+ text-overflow: ellipsis; /* 鏄剧ず鐪佺暐鍙� */
+}
+.h-content-row-date {
+ width: 20%;
+ font-weight: 400;
+ font-size: 13px;
+ color: #898B8F;
+}
diff --git a/web/assets/images/home_imga@2x.png b/web/assets/images/home_imga@2x.png
new file mode 100644
index 0000000..8c0b223
--- /dev/null
+++ b/web/assets/images/home_imga@2x.png
Binary files differ
diff --git a/web/assets/images/home_imgb@2x.png b/web/assets/images/home_imgb@2x.png
new file mode 100644
index 0000000..d809bda
--- /dev/null
+++ b/web/assets/images/home_imgb@2x.png
Binary files differ
diff --git a/web/index.html b/web/index.html
index 335895b..874c8c0 100644
--- a/web/index.html
+++ b/web/index.html
@@ -28,9 +28,28 @@
</li>
<li>
<a href="./intelligent_system.html">鏅烘収绯荤粺</a>
+ <div class="drop-down">
+ <a class="drop-down-item">鏅烘収鍦洪杩愯惀绯荤粺</a>
+ <a class="drop-down-item">鏅烘収鍦洪杩愮淮绯荤粺</a>
+ </div>
</li>
<li>
<a href="./solution.html">瑙e喅鏂规</a>
+ <div class="drop-down fa">
+ <div class="fa-content">
+ <div class="fa-content-item">
+ <div class="fa-content-item-label">鏁版櫤浣撹偛鍦洪 ></div>
+ <div class="fa-content-item-list">
+ <div class="fa-content-item-list-row">
+ <img src="" alt="">
+ <div class="fa-content-item-list-row-info">
+
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
</li>
<li>
<a href="./alot.html">Alot鐗╄仈</a>
@@ -492,6 +511,110 @@
</div>
</div>
</div>
+
+ <div class="index-h">
+ <div class="index-fa-head">
+ <span>璧勮鐭ヨ瘑</span>
+ <span>鏈�鏂板姩鎬� 涓庢偍鍒嗕韩</span>
+ </div>
+ <div class="h-content">
+ <div class="h-content-left">
+ <div class="h-content-left-item">
+ <span>杩愯惀缁忛獙</span>
+ <img src="./assets/images/home_imga@2x.png" alt="" />
+ </div>
+ <div class="h-content-left-item">
+ <span>鍔熻兘浠嬬粛</span>
+ <img src="./assets/images/home_imgb@2x.png" alt="" />
+ </div>
+ </div>
+ <div class="h-content-right">
+ <div class="h-content-right-title">
+ <span>琛屼笟璧勮</span>
+ <a href="about.html">鏌ョ湅鏇村></a>
+ </div>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ </div>
+ <div class="h-content-right">
+ <div class="h-content-right-title">
+ <span>甯傚満淇℃伅</span>
+ <a href="about.html">鏌ョ湅鏇村></a>
+ </div>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ <a class="h-content-row">
+ <div class="h-content-row-nr">
+ 鎱у睍鍦洪杩愯惀绠$悊绯荤粺锛氶噸濉戝満棣嗘暟閲嶅鍦洪鏁伴噸濉戝満棣嗘暟閲嶅鍦洪鏁�
+ </div>
+ <div class="h-content-row-date">2025-06-12</div>
+ </a>
+ </div>
+ </div>
+ </div>
+
<div class="index-x">
<div class="index-fa-head">
<span>瀹㈡埛妗堜緥</span>
--
Gitblit v1.9.3