diff --git a/fe/index.html b/fe/index.html
index a3e313a..3f7f0b8 100644
--- a/fe/index.html
+++ b/fe/index.html
@@ -18,6 +18,20 @@
button, input, span {
-webkit-tap-highlight-color: transparent;
}
+ *::-webkit-scrollbar { /*滚动条整体样式*/
+ width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
+ height: 1px;
+ }
+
+ *::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
+ /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
+ background: #ffffff;
+ border-right: 2px solid #054ba8;
+ }
+ *::-webkit-scrollbar-track {/*滚动条里面轨道*/
+ padding: 2px;
+ background: #cccccc00;
+ }