From 67a6915401d368c8bd6a305d7e746b026125eef6 Mon Sep 17 00:00:00 2001 From: gfjz-ruijun <994923161@qq.com> Date: Wed, 26 Feb 2025 20:17:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reference material/ag | 1 + web/index.html | 203 ++++++++++++++++++++++++++++++++++++++++++ web/style.css | 122 +++++++++++++++++++++++++ 3 files changed, 326 insertions(+) create mode 160000 reference material/ag create mode 100644 web/index.html create mode 100644 web/style.css diff --git a/reference material/ag b/reference material/ag new file mode 160000 index 0000000..4846e08 --- /dev/null +++ b/reference material/ag @@ -0,0 +1 @@ +Subproject commit 4846e0815f6533d7dfcbb190de82975948c1cef2 diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..249faae --- /dev/null +++ b/web/index.html @@ -0,0 +1,203 @@ + + + + + + 反诈骗软件 Demo + + + + +
+

反诈骗软件 Demo

+ + +
+

钓鱼网站检测

+ + +
+
+ + +
+

聊天图片检测

+ + +
+
+ + +
+

话术检测

+ + +
+
+
+ + + + + diff --git a/web/style.css b/web/style.css new file mode 100644 index 0000000..d26b1c5 --- /dev/null +++ b/web/style.css @@ -0,0 +1,122 @@ +/* 重置一些默认样式 */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + color: #333; + line-height: 1.6; +} + +/* 容器样式 */ +.container { + width: 80%; + margin: 50px auto; + text-align: center; +} + +/* 标题 */ +h1, h2 { + color: #444; + font-size: 24px; + margin-bottom: 20px; +} + +/* 按钮样式 */ +button { + background-color: #4CAF50; + color: white; + padding: 10px 20px; + border: none; + cursor: pointer; + font-size: 16px; + margin-top: 10px; + border-radius: 5px; +} + +button:hover { + background-color: #45a049; +} + +/* 输入框样式 */ +textarea, select, input[type="number"], input[type="checkbox"] { + width: 100%; + padding: 10px; + margin: 10px 0; + border-radius: 5px; + border: 1px solid #ddd; + font-size: 16px; +} + +/* 表格样式 */ +table { + width: 100%; + border-collapse: collapse; + margin-top: 20px; +} + +table, th, td { + border: 1px solid #ddd; +} + +th, td { + padding: 10px; + text-align: left; +} + +th { + background-color: #f2f2f2; +} + +/* 页面内容区 */ +#settings-page, #manual-detect-page, #auto-detect-toggle, #intercept-logs-page, #system-logs-page { + background-color: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + margin-top: 20px; +} + +/* 结果展示区域 */ +#manual-result, #auto-detect-toggle, #intercept-logs-page, #system-logs-page { + margin-top: 20px; + font-size: 18px; +} + +/* 间距与对齐 */ +label { + font-size: 16px; + display: block; + margin-top: 10px; +} + +input[type="number"], select, textarea { + max-width: 300px; + margin: 10px auto; + display: block; +} + +/* 开关样式 */ +input[type="checkbox"] { + width: 20px; + height: 20px; +} + +/* 手动检测文本框 */ +textarea { + height: 120px; +} + +/* 日志页面内容 */ +#intercept-logs-page, #system-logs-page { + overflow-y: auto; + max-height: 300px; +} + +#intercept-logs-page table, #system-logs-page table { + margin-top: 10px; +}