48 lines
686 B
CSS
48 lines
686 B
CSS
|
html {
|
||
|
/* 滚动时采用平滑过渡 */
|
||
|
scroll-behavior: smooth;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
/* 管理页面全局样式 */
|
||
|
|
||
|
.main-card {
|
||
|
min-height: calc(100vh - 100px);
|
||
|
}
|
||
|
|
||
|
.search-box {
|
||
|
display: flex;
|
||
|
background-color: white;
|
||
|
height: auto;
|
||
|
box-shadow: 0 0 1px 1px #dedede;
|
||
|
border-radius: 5px;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.middle-button {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.data-box {
|
||
|
margin-top: 20px;
|
||
|
padding: 20px;
|
||
|
box-shadow: 0 0 1px 1px #dedede;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.pagination {
|
||
|
margin: 20px 0 20px 0;
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
.txt {
|
||
|
font-weight: 900;
|
||
|
font-size: 500px;
|
||
|
}
|