对接数据

This commit is contained in:
2025-10-24 15:45:38 +08:00
parent 672a2f4c90
commit d3375a347f
138 changed files with 16904 additions and 1026 deletions

View File

@ -23,6 +23,28 @@ body {
cursor: pointer;
}
// 自定义滚动条样式
::-webkit-scrollbar {
width: 16px; // 滚动条宽度(背景槽宽度)
}
::-webkit-scrollbar-track {
background: #f9fafc; // 滚动条背景槽颜色
border-radius: 16px; // 背景槽圆角
}
::-webkit-scrollbar-thumb {
background: #2563eb; // 滑块颜色
border-radius: 12px; // 滑块圆角
width: 8px; // 滑块宽度
}
// 为兼容Firefox浏览器的滚动条样式
* {
scrollbar-width: thin;
scrollbar-color: #2563eb #f9fafc;
}
a {
text-decoration: none;
-webkit-user-drag: none;
@ -81,11 +103,12 @@ a {
border: none;
border-radius: 12px;
background-color: #ffffff;
font-family: 'Poppins-Medium', serif;
/* 白色背景 */
color: #666666;
/* 文字颜色 */
outline: none;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
box-shadow: 0 20px 30px 0 #0000000f;
/* 添加轻微阴影效果 */
}