63 lines
957 B
CSS
63 lines
957 B
CSS
|
|
html,
|
||
|
|
body {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
color: #fff;
|
||
|
|
font-family: 'Alibaba PuHuiTi R';
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-box {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
justify-content: space-evenly;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layout {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
width: 100%;
|
||
|
|
height: 60px;
|
||
|
|
font-size: 18px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#content {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% - 60px);
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
#searchForm {
|
||
|
|
width: 100%;
|
||
|
|
height: 80px;
|
||
|
|
justify-content: start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-box {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% - 80px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-layer-dialog .layui-layer-padding {
|
||
|
|
color: #000 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-table-cell {
|
||
|
|
height: auto !important;
|
||
|
|
white-space: normal !important;
|
||
|
|
padding: 5px 12px !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 图片样式 */
|
||
|
|
.layui-table img {
|
||
|
|
max-width: 100%;
|
||
|
|
max-height: 100px;
|
||
|
|
display: block;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|