加入了node_modules

添加了新的功能项
This commit is contained in:
zyb
2025-05-13 21:23:41 +08:00
parent 8d53374568
commit 0c0b5d869c
3589 changed files with 893641 additions and 233 deletions

View File

@@ -81,4 +81,45 @@
margin: 0 -20px;
border-radius: 0;
}
}
/* 渐变按钮基础样式 */
.gradient-btn {
display: inline-block;
padding: 10px 20px;
background: linear-gradient(135deg, #71eaeb 0%, #416bdf 100%);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
text-decoration: none;
text-align: center;
}
.gradient-btn:hover {
background: linear-gradient(135deg, #416bdf 0%, #71eaeb 100%);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.gradient-btn:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 按钮变体 */
.gradient-btn.block {
display: block;
width: 100%;
}
.gradient-btn.left {
margin: 20px 0;
}
.gradient-btn.center {
margin: 20px auto;
}