2025-04-01 17:45:42 +08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
.box {
|
|
|
|
color: blue;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
// 添加新的样式
|
|
|
|
.Adelay-02 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 0.2s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-03 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 0.3s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-04 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 0.4s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-05 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 0.5s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-1 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 1s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-15 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 1.5s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-2 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 2s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-01 17:45:42 +08:00
|
|
|
.Adelay-25 {
|
2025-04-10 18:06:54 +08:00
|
|
|
animation-delay: 2.5s;
|
2025-04-01 17:45:42 +08:00
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
2025-04-10 18:06:54 +08:00
|
|
|
|
2025-04-09 18:00:59 +08:00
|
|
|
//保留一行
|
|
|
|
.one-line {
|
2025-04-10 18:06:54 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
/* 禁止换行 */
|
|
|
|
overflow: hidden;
|
|
|
|
/* 隐藏溢出内容 */
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
/* 溢出显示省略号(可选) */
|
|
|
|
display: inline-block;
|
|
|
|
/* 使块元素能应用省略号 */
|
|
|
|
max-width: 100%;
|
|
|
|
/* 配合省略号的宽度限制 */
|
|
|
|
}
|
|
|
|
//保留三行
|
|
|
|
.my_text_2 {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|