基于廊坊系统为基础,国防科技大学系统演示Demo
surprise
2024-04-28 c310c155e3e91e6b285b3fb3519a3ef7c6690d66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body,
p,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,#app {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "微软雅黑";
}
i{
  font-style:normal;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #0099FF;
  text-decoration: none;
}
input,
img,button {
  padding: 0;
  vertical-align: middle;
  border: 0 none;
}
 
input,select,button{
  -webkit-appearance:none;
  appearance:none;
}
 
.clearfix::after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  clear: both;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
.flex_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 
}
.table_box {
  border-radius: 5px;
  /*border: 1px solid #dcdfe6;*/
  padding: 8px;
  box-sizing: border-box;
 
}
.table_box .el-table,
.table_box .el-table .el-table__expanded-cell {
  background-color: transparent !important;
}
.table_box .el-table th,
.table_box .el-table tr {
  background-color: transparent !important;
}
.pagination_box{
  margin-top: 25px
}
.BoxFlex {
  display: flex;
  justify-content: space-around;
  width: 85%;
 
}
.BoxFlexinput {
  flex: 1;
}
 
/*取消分页粗体*/
.el-pagination{
  font-weight: normal;
}
.el-input__suffix{
  right: 10px;
}
.content-border{
  border: 1px solid #dcdfe6
}