的撒法打赏
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-23 16:56:07 +08:00
parent 4108932d72
commit fa821e8c4d

View File

@@ -514,12 +514,19 @@
align-items: center; align-items: center;
gap: 16px; gap: 16px;
/* 去掉毛玻璃背景 */ /* 毛玻璃效果 */
background: transparent; background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
/* 细腻的边框处理 */ /* 边框和圆角 */
border-left: 1px solid rgba(148, 163, 184, 0.15); border: 1px solid rgba(148, 163, 184, 0.2);
border-bottom: 1px solid rgba(148, 163, 184, 0.08); border-radius: 0;
/* 阴影效果 */
box-shadow:
0 8px 32px rgba(15, 23, 42, 0.4),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
/* 内部发光 */ /* 内部发光 */
overflow: hidden; overflow: hidden;
@@ -567,10 +574,12 @@
/* 悬浮效果 */ /* 悬浮效果 */
.banner-s .banner-list .banner-item:hover { .banner-s .banner-list .banner-item:hover {
transform: translateY(-4px); transform: translateY(-8px);
background: rgba(15, 23, 42, 0.3); border-color: rgba(56, 189, 248, 0.3);
border-left-color: rgba(56, 189, 248, 0.4); background: rgba(15, 23, 42, 0.75);
border-bottom-color: rgba(56, 189, 248, 0.2); box-shadow:
0 12px 40px rgba(15, 23, 42, 0.6),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.banner-s .banner-list .banner-item:hover::before { .banner-s .banner-list .banner-item:hover::before {