99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
.container {
|
|
display: flex;
|
|
gap: 24px;
|
|
height: 100%;
|
|
|
|
.left {
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
.tip {
|
|
background: #f6f8fa;
|
|
border: 1px solid #e1e4e8;
|
|
border-radius: 6px;
|
|
padding: 12px 16px;
|
|
margin-bottom: 20px;
|
|
font-size: 14px;
|
|
color: #586069;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.formItem {
|
|
margin-bottom: 20px;
|
|
|
|
.label {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #24292e;
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
|
|
.primaryBtn {
|
|
margin-top: 20px;
|
|
height: 40px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
:global(.ant-list-item) {
|
|
padding: 16px 0;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
:global(.ant-list-item-meta-title) {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #24292e;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
:global(.ant-list-item-meta-description) {
|
|
font-size: 12px;
|
|
color: #586069;
|
|
}
|
|
}
|
|
|
|
.emptyState {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 200px;
|
|
text-align: center;
|
|
|
|
.emptyText {
|
|
font-size: 16px;
|
|
color: #999;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.emptyDesc {
|
|
font-size: 14px;
|
|
color: #ccc;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 响应式设计
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
|
|
.left,
|
|
.right {
|
|
flex: none;
|
|
}
|
|
}
|
|
}
|