首页搜索

This commit is contained in:
cxc
2022-10-13 17:42:32 +08:00
parent e8fb69f0e3
commit e2da1fd45b
46 changed files with 7598 additions and 456 deletions

1052
src/assets/styles/index.css Normal file

File diff suppressed because it is too large Load Diff

1
src/assets/styles/index.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -191,3 +191,55 @@ aside {
.multiselect--active {
z-index: 1000 !important;
}
// 自定义全局样式
.conter1000 {
width: 1000px;
margin: 0 auto;
}
.conter1400 {
width: 1400px;
margin: 0 auto;
}
// 1行文本省略号
.ellipsis{
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
// 2行文本省略号
.text_hidden {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
word-break: break-all;
}
.x_btns {
font-size: 16px !important;
color: #fff !important;
border-radius: 0 !important;
background-color: #0054ff !important;
}
.x16{
font-size: 16px !important;
}
.x_fff{
color: #fff !important;
}
.x_blue{
color: #0054ff !important;
}
.x_border_blue{
border: 1px solid #0054ff !important;
}
.x_bg_blue{
background-color: #0054ff !important;
}
// 富文本图片
.html img {
max-width: 100%;
}