#
Junjie
2024-07-12 61e58f3a3167be911436e69fe1728de607b3589c
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
@import './base.css';
 
.main {
  height: 100vh;
  overflow: hidden;
}
 
.trigger {
  font-size: 14px;
  line-height: 64px;
  padding: 0 6px;
  cursor: pointer;
  transition: color 0.3s;
  color: #333333;
}
 
.trigger:hover {
  color: #1890ff;
}
 
.active {
  color: #1890ff !important;
}
 
.active:hover {
  color: #333333 !important;
}
 
.logo {
  height: 50px;
  /* background: rgba(255, 255, 255, 0.3); */
  background: url('/public/img/logo.png') no-repeat;
  background-size: 100%;
  margin: 16px;
}
 
.site-layout .site-layout-background {
  background: #fff;
}
 
.header-top {
  display: flex;
  justify-content: space-between;
}
 
.header-top-left {
  flex: 1;
}
 
.header-top-right {
  margin-right: 20px;
  color: #333333;
  cursor: pointer;
  user-select: none;
  flex: 4;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}
 
.header-top-right>div {
  margin-right: 15px;
}
 
.header-user {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  cursor: pointer;
  user-select: none;
}
 
.tabs-fixed {
  position: relative;
  top: -64px;
  left: -24px;
  display: flex;
}
 
.tabs-item {
  height: 30px;
  background: #fff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0px;
  cursor: pointer;
  margin-right: 5px;
  user-select: none;
}
 
.tabs-item>div:nth-child(1) {
  margin-right: 10px;
  margin-left: 10px;
}
 
.tabs-item>div:nth-child(1):hover {
  color: #1890ff;
}
 
.tabs-item>div:nth-child(2) {
  margin-right: 10px;
  margin-left: 10px;
}
 
.tabs-item>div:nth-child(3) {
  margin-right: 10px;
  margin-left: 10px;
}
 
.tabs-item>div:nth-child(3):hover {
  color: #1890ff;
}
 
.tabs-item-active>div:nth-child(2) {
  color: rgb(24, 144, 255);
}
 
.tabs-item-reload-none {
  display: none;
}
 
.table-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
 
.table-header-right>button {
  margin-right: 10px;
}
 
.content-view {
  margin: 45px 16px;
  padding: 24px;
  background: #fff;
  min-height: 280px;
}