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
| /* TMS 详情/工具条通用样式,按需在页面 import */
|
| .tms-page-header {
| display: flex;
| justify-content: space-between;
| align-items: center;
| gap: 12px;
| margin-bottom: 12px;
| }
|
| .tms-page-header__title {
| font-size: 16px;
| font-weight: 600;
| line-height: 1.4;
| color: rgba(0, 0, 0, 0.88);
| }
|
| .tms-page-header__sub {
| margin-top: 4px;
| font-size: 13px;
| color: rgba(0, 0, 0, 0.45);
| line-height: 1.4;
| }
|
| .tms-page-header__actions {
| display: flex;
| flex-wrap: wrap;
| justify-content: flex-end;
| gap: 8px;
| flex-shrink: 0;
| }
|
| .tms-page-tip {
| margin-bottom: 12px;
| }
|
| .tms-toolbar-hint {
| font-size: 13px;
| color: rgba(0, 0, 0, 0.45);
| }
|
|