Files
PC-Light-Forum/css/search-tag.css
DESKTOP-RQ919RC\Pc 51179c3842 refactor: 移除调试日志并优化代码结构
移除多个文件中的console.log调试语句
添加search-tag.css和search-tag.less中的set-hint-box样式
新增recommend.js推荐功能模块
优化ajaxGet调用和用户信息处理逻辑
2025-12-17 19:36:53 +08:00

134 lines
2.8 KiB
CSS

#search-tag {
width: 1200px;
margin: 0 auto;
}
#search-tag .label-title {
margin-bottom: 24px;
}
#search-tag .label-title .icon {
width: 25px;
height: 20px;
margin-right: 12px;
}
#search-tag .label-title .text {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 28px;
color: #000000;
}
#search-tag .set-hint-box {
line-height: 24px;
margin-bottom: 16px;
}
#search-tag .set-hint-box .set-hint-icon {
height: 24px;
margin-right: 10px;
}
#search-tag .classify {
margin-bottom: 16px;
}
#search-tag .classify .item {
width: 50px;
height: 32px;
line-height: 32px;
text-align: center;
background-color: #ffffff;
border: 1px solid #f2f2f2;
border-radius: 12px;
color: #333333;
cursor: pointer;
font-size: 15px;
}
#search-tag .classify .item.pitch {
background-color: #d35110;
color: #ffffff;
}
#search-tag .classify .item:not(:last-child) {
margin-right: 10px;
}
#search-tag .quantity {
font-size: 14px;
line-height: 26px;
color: #555;
margin-bottom: 14px;
}
#search-tag .quantity .line {
width: 1px;
height: 14px;
background-color: #aaaaaa;
margin: 0 10px;
}
#search-tag .quantity .num {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
color: #000000;
margin: 0 10px;
}
#search-tag .matter {
align-items: flex-start;
}
#search-tag .matter .matter-content {
margin-right: 12px;
position: sticky;
z-index: 1;
}
#search-tag .matter .matter-content .list-box .item-box {
margin-bottom: 12px;
}
#search-tag .matter .matter-content .empty {
width: 100%;
height: 70vh;
background-color: #ffffff;
border: 1px solid #e9eef2;
border-radius: 10px;
flex-direction: column;
margin-right: 12px;
}
#search-tag .matter .matter-content .empty .empty-icon {
width: 80px;
height: 94px;
}
#search-tag .matter .matter-content .empty .empty-text {
font-size: 14px;
color: #7f7f7f;
margin-top: 10px;
}
#search-tag .matter .matter-content .pages-box {
padding-bottom: 60px;
padding-top: 30px;
}
#search-tag .matter .matter-content .pages-box .item {
min-width: 24px;
height: 24px;
line-height: 24px;
text-align: center;
border-radius: 50px;
font-size: 14px;
color: #555555;
cursor: pointer;
padding: 0 4px;
}
#search-tag .matter .matter-content .pages-box .item.pitch {
background-color: #6fc16d;
color: #ffffff;
}
#search-tag .matter .matter-content .pages-box .arrows {
width: 7px;
height: 12px;
margin: 0 30px;
cursor: pointer;
}
#search-tag .matter .matter-content .pages-box .arrows.rotate180 {
transform: rotate(180deg);
}
#search-tag .matter .sidebar-box {
width: 291px;
position: sticky;
}
#search-tag .matter .sidebar-box.fixed {
position: fixed;
right: calc((100% - 1200px) / 2);
bottom: 10px;
}