39 lines
599 B
CSS
39 lines
599 B
CSS
.broker-page {
|
|
padding: 0;
|
|
}
|
|
|
|
.broker-search-form {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.broker-search-form .ant-form-item {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.broker-action-bar {
|
|
margin-bottom: 16px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
/* 表格样式优化 */
|
|
.broker-page .ant-table {
|
|
background: #fff;
|
|
}
|
|
|
|
.broker-page .ant-table-thead > tr > th {
|
|
background: #fafafa;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* 响应式 */
|
|
@media (max-width: 768px) {
|
|
.broker-search-form .ant-form-item {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.broker-action-bar {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|