2.地图服务整合,新增腾讯地图接入功能 3.信息查询模块升级,实现详情页同步适配(含手机端) 4.接口数据优化,同步调整页面图片展示效果 5.文章内容扩容,提升页面视觉展示效果 6.顶部导航栏优化,实现PC端与手机端自适应调整
50 lines
983 B
SCSS
50 lines
983 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.box {
|
|
color: blue;
|
|
}
|
|
// 添加新的样式
|
|
.Adelay-02 {
|
|
animation-delay: 0.2s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-03 {
|
|
animation-delay: 0.3s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-04 {
|
|
animation-delay: 0.4s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-05 {
|
|
animation-delay: 0.5s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-1 {
|
|
animation-delay: 1s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-15 {
|
|
animation-delay: 1.5s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-2 {
|
|
animation-delay: 2s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
.Adelay-25 {
|
|
animation-delay: 2.5s;
|
|
animation-duration: 0.1s;
|
|
}
|
|
//保留一行
|
|
.one-line {
|
|
white-space: nowrap; /* 禁止换行 */
|
|
overflow: hidden; /* 隐藏溢出内容 */
|
|
text-overflow: ellipsis; /* 溢出显示省略号(可选) */
|
|
display: inline-block; /* 使块元素能应用省略号 */
|
|
max-width: 100%; /* 配合省略号的宽度限制 */
|
|
}
|
|
|