TemplateAdd.css
1.2 KB
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
/* 页面滚动容器 */
.page-contain {
height: 100vh;
overflow-y: auto;
background-color: #f5f5f5;
box-sizing: border-box;
}
/* 表单容器 */
.templateName {
padding: 30px;
margin: 0 auto;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
}
/* 动作组卡片 */
.unit-card {
margin: 20px 0;
border-radius: 6px;
}
/* 动作组头部 */
.unit-header {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 20px;
flex-wrap: wrap;
}
/* 表格容器 */
.sets-table-wrapper {
margin: 20px 0;
overflow-x: auto;
}
.table-title {
margin-bottom: 10px;
font-size: 14px;
font-weight: 500;
color: #666;
}
/* 表格样式 */
.sets-table {
width: 100%;
text-align: center;
border-collapse: collapse;
}
.sets-table th {
padding: 10px 0;
font-weight: 500;
background: #fafafa;
}
.sets-table td {
padding: 8px 0;
}
.set-row:hover {
background: #f9f9f9;
}
/* 按钮居中容器 */
.btn-center-wrapper {
display: flex;
width: 100%;
padding-top: 15px;
margin-top: 30px;
border-top: 1px solid #eee;
justify-content: center;
gap: 12px;
}
/* 封面图样式 */
.sub-image {
border: 1px solid #eee;
border-radius: 10px;
}