|
|
|
|
@ -1,5 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.step01Layout {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
@ -10,7 +8,7 @@
|
|
|
|
|
.leftPanel {
|
|
|
|
|
width: 20%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: green; // 暂定颜色,后续可调整为主题色
|
|
|
|
|
background: linear-gradient(180deg, #CCFFEF 0%, #FDFEFE 100%);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
@ -20,18 +18,55 @@
|
|
|
|
|
|
|
|
|
|
.leftTop {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
// gap: 10px;
|
|
|
|
|
width: 80%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.toggleBtn {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 28px;
|
|
|
|
|
width: 80%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
background: rgba(3, 197, 152, 1);
|
|
|
|
|
border-color: rgba(3, 197, 152, 1);
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
|
|
|
|
background: rgba(3, 197, 152, 1);
|
|
|
|
|
border-color: rgba(3, 197, 152, 1);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
background: rgba(226, 255, 228, 1);
|
|
|
|
|
border-color: rgba(226, 255, 228, 1);
|
|
|
|
|
color: rgba(169, 169, 169, 1);
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
|
|
|
|
background: rgba(226, 255, 228, 1);
|
|
|
|
|
border-color: rgba(226, 255, 228, 1);
|
|
|
|
|
color: rgba(169, 169, 169, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.leftBottom {
|
|
|
|
|
flex: 1;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
// border-radius: 2px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
@ -79,9 +114,12 @@
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
:global {
|
|
|
|
|
.ant-table-thead>tr>th {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|