This commit is contained in:
Ls
2026-03-31 08:40:11 +08:00
parent b8c05d23ae
commit a4bcd5ae1f
12 changed files with 3883 additions and 1255 deletions

View File

@@ -152,37 +152,36 @@
/* 用户信息卡片 */
.user-card {
background: linear-gradient(135deg, #1890ff 0%, #36cfc9 50%, #096dd9 100%);
background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
border-radius: 28rpx;
padding: 40rpx 30rpx;
margin-bottom: 24rpx;
display: flex;
align-items: center;
gap: 20rpx;
box-shadow: 0 12rpx 32rpx rgba(24, 144, 255, 0.35),
0 4rpx 12rpx rgba(24, 144, 255, 0.2);
box-shadow: 0 8rpx 24rpx rgba(24, 144, 255, 0.25);
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: -60%;
right: -40%;
width: 400rpx;
height: 400rpx;
background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
top: -40%;
right: -30%;
width: 300rpx;
height: 300rpx;
background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
pointer-events: none;
}
&::after {
content: '';
position: absolute;
bottom: -40%;
bottom: -30%;
left: -20%;
width: 300rpx;
height: 300rpx;
background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
width: 250rpx;
height: 250rpx;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
pointer-events: none;
}
}