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
| .edition-view {
| &-row {
| background-color: #fff;
| min-height: 42vh;
| margin: 24px;
| &-col {
| display: flex;
| justify-content: space-between;
| padding: 10px;
| }
| }
| &-title {
| font-size: 16px;
| font-weight: 600;
| }
| &-first {
| width: 220px;
| background-color: #fafafa !important;
| }
| &-menu {
| position: relative;
| &-change {
| position: absolute;
| top: 54px;
| right: 12px;
| &-col {
| height: 40px;
| margin: 4px 0 8px;
| line-height: 40px;
| &-a {
| display: flex;
| align-items: center;
| }
| }
| }
| }
| }
|
| .tabtop {
| margin-top: 13px;
| }
| .tabtop td {
| background-color: #ffffff;
| height: 50px;
| line-height: 150%;
| border: 1px solid #e8e8e8;
| text-align: center;
| }
|
| .padding-left {
| padding: 24px;
| }
|
| .font-left {
| text-align: left !important;
| }
|
|