You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.6 KiB
102 lines
1.6 KiB
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
html,
|
|
body,
|
|
#app,
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
font-family: 'PingFang SC', "Helvetica Neue", Helvetica, "microsoft yahei", arial, STHeiTi, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 21px;
|
|
color: #4E5969;
|
|
}
|
|
|
|
/* 面包屑 */
|
|
.breadcrumb{
|
|
width: 100%;
|
|
background: white;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 26px;
|
|
}
|
|
.body{
|
|
padding: 0 20px;
|
|
padding-top: 20px;
|
|
}
|
|
.query{
|
|
height: 105px;
|
|
background-color: white;
|
|
padding-left: 36px;
|
|
padding-right: 30px;
|
|
}
|
|
.f_title{
|
|
font-size:16px
|
|
}
|
|
.query_item{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 14px;
|
|
}
|
|
.query_item .ant-input,.query_item .ant-select{
|
|
width: 160px;
|
|
}
|
|
.query_item2 .ant-input{
|
|
width: 213px;
|
|
}
|
|
.query_item >span{
|
|
display: inline-block;
|
|
/* min-width: 96px; */
|
|
min-width: 85px;
|
|
/* padding: 10px; */
|
|
}
|
|
|
|
.query_item1{
|
|
justify-content: flex-end;
|
|
}
|
|
.query_button{
|
|
width: 70px;
|
|
}
|
|
.table{
|
|
height: 620px;
|
|
background-color: white;
|
|
margin-top: 20px;
|
|
padding-left: 20px;
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
padding-right: 30px;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
}
|
|
.table_title{
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
margin-bottom: 13px;
|
|
}
|
|
.table_title_right_del{
|
|
margin-left: 15px;
|
|
}
|
|
.table_operation{
|
|
color: #1890FF;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
.pagination{
|
|
text-align: right;
|
|
margin-top: 21px;
|
|
}
|
|
.ant-table-tbody > tr > td {
|
|
padding: 11px 16px;
|
|
}
|
|
.ant-table-thead > tr > th {
|
|
padding: 11px 16px;
|
|
}
|
|
|