优化 将项目中的px单位转换为rem和em单位以提高响应式设计的一致性

This commit is contained in:
yuantao
2025-11-03 18:29:26 +08:00
parent cb9488ec05
commit 80caa0712d
11 changed files with 969 additions and 1288 deletions

View File

@@ -3,24 +3,24 @@
** 否则页面将无法正常显示 **
************************************************************/
html {
font-size: 16px;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: transparent;
touch-action: pan-y;
overflow: hidden;
}
/* 禁止页面整体滚动 */
body {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
-webkit-overflow-scrolling: touch;
overscroll-behavior: none;
touch-action: pan-y;
html {
font-size: 18px;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: transparent;
touch-action: pan-y;
overflow: hidden;
}
/* 禁止页面整体滚动 */
body {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
-webkit-overflow-scrolling: touch;
overscroll-behavior: none;
touch-action: pan-y;
}
body {