From ff2d01588d4e69d3bf1ad856e8e225b7f6a3c0f2 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期一, 26 八月 2024 11:01:48 +0800 Subject: [PATCH] 1、基本实现电子说明书页面布局及功能 2、基本实现语言大模型页面与后端数据联动 --- public/index.html | 32 +++++++++++++++++++++++--------- 1 files changed, 23 insertions(+), 9 deletions(-) diff --git a/public/index.html b/public/index.html index fa81654..9853e46 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <meta name="viewport" content="width=device-width,initial-scale=1.0, maximum-scale=1, user-scalable=no"> <title>涓缁翠竴</title> <link rel="icon" href="<%= BASE_URL %>logo.png"> <script src="<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"></script> @@ -16,7 +16,7 @@ margin: 0px; padding: 0px; font-family: ali_main; - letter-spacing: 1px; + letter-spacing: 0.05vw; } .chromeframe { margin: 0.2em 0; @@ -223,21 +223,35 @@ /* 婊氬姩鏉′紭鍖� start */ ::-webkit-scrollbar{ width:0; - height:8px; + height:0; } + /*::-webkit-scrollbar-track{*/ + /*background: #f6f6f6;*/ + /*border-radius:20px;*/ + /*}*/ + /*::-webkit-scrollbar-thumb{*/ + /*background: #e9e9e9;*/ + /*border-radius:20px;*/ + /*}*/ + /*::-webkit-scrollbar-thumb:hover{*/ + /*background: #cfcfcf;*/ + /*}*/ + /*::-webkit-scrollbar-corner {*/ + /*background: #f6f6f6;*/ + /*}*/ ::-webkit-scrollbar-track{ - background: #f6f6f6; - border-radius:2px; + background: transparent; + border-radius:20px; } ::-webkit-scrollbar-thumb{ - background: #cdcdcd; - border-radius:2px; + background: transparent; + border-radius:20px; } ::-webkit-scrollbar-thumb:hover{ - background: #747474; + background: transparent; } ::-webkit-scrollbar-corner { - background: #f6f6f6; + background: transparent; } /* 婊氬姩鏉′紭鍖� end */ </style> -- Gitblit v1.9.3