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.
82 lines
1.2 KiB
82 lines
1.2 KiB
3 years ago
|
.pushbox {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: #FFFFFF;
|
||
|
box-sizing: border-box;
|
||
|
padding: 20px;
|
||
|
overflow: hidden;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
|
||
|
}
|
||
|
|
||
|
.topbox {
|
||
|
width: 100%;
|
||
|
height: 36px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 12px;
|
||
|
|
||
|
.lefttop {
|
||
|
span:nth-child(1) {
|
||
|
color: #000D21;
|
||
|
margin-right: 16px;
|
||
|
}
|
||
|
|
||
|
span:nth-child(2) {
|
||
|
color: rgba(36, 36, 36, 0.24);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.righttop {
|
||
|
display: flex;
|
||
|
|
||
|
button {
|
||
|
margin-left: 16px;
|
||
|
}
|
||
|
|
||
|
nz-input-group {
|
||
|
height: 32px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.tablebox {
|
||
|
flex: 1;
|
||
|
overflow-y: auto;
|
||
|
|
||
|
//滚动条样式
|
||
|
::-webkit-scrollbar {
|
||
|
display: none;
|
||
|
}
|
||
|
table{
|
||
|
width: 100%;
|
||
|
tr{
|
||
|
height: 40px;
|
||
|
line-height: 40px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
tr:nth-child(1) th{
|
||
|
font-weight: 600;
|
||
|
font-size: 15px;
|
||
|
}
|
||
|
tr,tr th,td{
|
||
|
border: 0px;
|
||
|
color: #000D21;
|
||
|
font-family: synormal;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
tr:nth-child(odd) {
|
||
|
background-color:rgba(145, 204, 255, 0.16);
|
||
|
}
|
||
|
tr:nth-child(even) {
|
||
|
background-color:#fff;
|
||
|
}
|
||
|
tr th:nth-child(1),td:nth-child(1){
|
||
|
box-sizing: border-box;
|
||
|
padding-left: 5%;
|
||
|
}
|
||
|
}
|
||
|
}
|