2022-03-11 00:39:09 +08:00
|
|
|
body {
|
|
|
|
line-height:1.5;
|
|
|
|
font-size:14px;
|
|
|
|
color:var(--color-dark-1);
|
|
|
|
}
|
|
|
|
a {color:inherit;text-decoration:none;}
|
|
|
|
|
|
|
|
.app {
|
|
|
|
width:100%;
|
|
|
|
height:100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
display:flex;
|
|
|
|
|
|
|
|
&.column {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.ac {
|
|
|
|
justify-content:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.alc {
|
|
|
|
align-items:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.acc {
|
|
|
|
justify-content:center;
|
|
|
|
align-items:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.asc {
|
|
|
|
justify-content:space-between;
|
|
|
|
align-items:center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
width:1024px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topbar {
|
|
|
|
width:100%;
|
|
|
|
height:64px;
|
|
|
|
background:#fff;
|
|
|
|
box-shadow:0 6px 16px rgba(0, 0, 0, .1);
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
font-size:24px;
|
|
|
|
color:var(--color-red-1);
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size:14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navs {
|
|
|
|
font-size:16px;
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
margin-left:32px;
|
|
|
|
cursor:pointer;
|
|
|
|
transition:color .2s linear;
|
|
|
|
|
|
|
|
&.active,&:hover {
|
|
|
|
text-decoration:underline;
|
|
|
|
color:var(--color-red-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
flex:1;
|
|
|
|
|
|
|
|
.table-info {
|
|
|
|
width:100%;
|
|
|
|
height:64px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
width:100%;
|
|
|
|
height:64px;
|
|
|
|
border-top:1px solid var(--color-plain-1);
|
|
|
|
}
|