合规页面
parent
b7609d894b
commit
3392835a65
@ -1,15 +1,85 @@
|
||||
.container {
|
||||
.permitContainer {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
// padding: 20px;
|
||||
background-color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.searchSection {
|
||||
margin-bottom: 20px;
|
||||
padding: 20px;
|
||||
// background-color: #fafafa;
|
||||
border-radius: 4px;
|
||||
|
||||
:global {
|
||||
.ant-form-inline {
|
||||
display: flex;
|
||||
|
||||
.ant-form-item {
|
||||
margin-right: 16px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ant-form-item:nth-last-child(2) {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.content {
|
||||
font-size: 24px;
|
||||
color: #999999;
|
||||
font-weight: 400;
|
||||
.ant-form-item:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-form-item-label {
|
||||
font-weight: 500;
|
||||
|
||||
label {
|
||||
color: #666666;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-input::placeholder,
|
||||
.ant-picker-input input::placeholder {
|
||||
color: #00000040;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableSection {
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
padding: 0 20px;
|
||||
|
||||
:global {
|
||||
.ant-table {
|
||||
font-size: 14px;
|
||||
|
||||
.ant-table-thead > tr > th {
|
||||
background-color: #fafafa;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.ant-table-tbody > tr:hover > td {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #1890ff;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: #40a9ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ant-pagination {
|
||||
margin-top: 16px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue