schangxiang@126.com
2025-04-29 27ba504441037666e787ded85b4af2f65be65c17
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
.container {
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 100%;
  border: 1px solid #dbdbdb;
  font-family: PingFang SC, PingFang SC;
  padding: 0 12px;
  position: relative;
 
  .title {
    font-size: 16px;
    font-weight: bold;
    color: #35363b;
    margin-left: 6px;
  }
  .header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 46px;
    padding: 0 20px;
  }
  .footer {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.content {
  padding: 15px 20px 0;
  height: calc(100% - 46px);
  box-sizing: border-box;
  height: auto;
  background: #f7f8fa;
  border-radius: 5px 5px 5px 5px;
  padding: 14px 14px 20px 14px;
 
  .header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    .searchInner {
      margin-left: auto;
      width: 200px;
    }
    // padding: 20px;
  }
  .mainTable {
    height: calc(100% - 36px);
  }
}