修改功能,现已测试注册登录忘记密码
This commit is contained in:
@@ -1544,6 +1544,61 @@
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.cxz-recommend-section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.cxz-recommend-card {
|
||||
padding: 18px 20px;
|
||||
border: 1px solid #e7edf6;
|
||||
border-radius: 12px;
|
||||
background: #fff;
|
||||
box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
|
||||
}
|
||||
|
||||
.cxz-recommend-title {
|
||||
margin-bottom: 12px;
|
||||
color: var(--primary);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.cxz-recommend-list {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.cxz-recommend-list li {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
color: var(--text-muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.cxz-recommend-list a {
|
||||
overflow: hidden;
|
||||
color: var(--text-dark);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.cxz-recommend-list a:hover {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.cxz-recommend-empty {
|
||||
grid-template-columns: 1fr !important;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.cxz-nav-item {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@@ -1664,6 +1719,17 @@
|
||||
border: 1px solid #e7edf6;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.cxz-recommend-section {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.cxz-recommend-list li {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.cxz-comment-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user