ustcyc
2025-01-08 e58b27d9b5b6b3d63267ca89d28ebe9d3363f94b
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.themeDark {
  .page {
    .page-container {
      display: flex;
 
      .page-container-left {
        width: 280px;
        min-height: calc(100vh - 120px);
        border-right: 1px solid #1a235d;
 
        .tree {
          height: calc(100vh - 170px);
          max-height: calc(100vh - 170px);
          overflow-y: auto;
        }
      }
 
      .page-container-right {
        flex: 1;
        border-radius: 0px 0px 0px 0px;
        overflow: hidden;
        padding-bottom: 15px;
      }
    }
 
    .form-card {
      background: #1a235d;
      border-radius: 0px 0px 0px 0px;
      border: 1px solid #000000;
      padding: 18px 0 0 15px;
    }
 
    .tree {
      // padding: 20px;
      margin-top: 25px;
      // margin-left: 20px;
      overflow: hidden;
    }
  }
 
  .chart-box {
    width: 100%;
    height: 320px;
 
    div {
      width: 100%;
      height: 100%;
    }
  }
 
  .table-box {
    margin: 20px;
 
    .table-title-box {
      font-weight: bold;
      font-size: 22px;
      color: #fffefe;
      line-height: 29px;
      text-align: center;
      display: flex;
      justify-content: space-between;
      margin-top: 23px;
 
      font-family: OPPOSans, OPPOSans;
      font-weight: 500;
      font-size: 16px;
    }
  }
 
}
 
.themeLight {
  .page {
    .page-container {
      display: flex;
 
      .page-container-left {
        width: 280px;
 
        // border-right: 1px solid #1a235d;
        .tree {
          height: calc(100vh - 170px) !important;
          max-height: calc(100vh - 170px) !important;
          overflow-y: auto;
        }
      }
 
      .page-container-right {
        flex: 1;
        border-radius: 0px 0px 0px 0px;
        overflow: hidden;
        padding-bottom: 15px;
        background-color: #fff;
      }
    }
 
    .form-card {
      background: #fff;
      border-radius: 0px 0px 0px 0px;
      // border: 1px solid #000000;
      padding: 18px 0 0 15px;
    }
 
    .tree {
      // padding: 20px;
      margin-top: 25px;
      // margin-left: 20px;
      overflow: hidden;
    }
  }
 
  .chart-box {
    width: 100%;
    height: 320px;
 
    div {
      width: 100%;
      height: 100%;
    }
  }
 
  .table-box {
    margin: 20px;
 
    .table-title-box {
      font-weight: bold;
      font-size: 22px;
      color: #000;
      line-height: 29px;
      text-align: center;
      display: flex;
      justify-content: space-between;
      margin-top: 23px;
 
      font-family: OPPOSans, OPPOSans;
      font-weight: 500;
      font-size: 16px;
    }
  }
 
}
 
.padding {
  padding: 15px;
}