- 添加 touch-action: manipulation 禁用双击缩放 - 添加 -webkit-tap-highlight-color: transparent 移除点击高亮 - 在全局样式和修改评分页面按钮上应用 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
42 lines
704 B
CSS
42 lines
704 B
CSS
/* 全局样式 */
|
|
page {
|
|
background-color: #F5F5F5;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
|
|
'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
/* 防止系统样式影响 */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* 清除默认样式 */
|
|
view, text, button, input {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
button {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
button::after {
|
|
border: none;
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
}
|
|
|
|
/* 防止 iOS Safari 双击缩放 */
|
|
button, .control-btn, [class*="btn"] {
|
|
touch-action: manipulation;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
/* 全局禁用双击缩放 */
|
|
html {
|
|
touch-action: manipulation;
|
|
}
|