binxie
2024-01-20 e0de9222da210f9c8eb1a9f5400f936a14923e11
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
.activityTable1 {
    background-color: #E6E6FA;
    border-collapse: separate;
    border-spacing: 0 5px; /* 调整第二个值来控制行之间的间隔大小 */
}
.activityTable1 th {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
.activityTable2 {
    background-color: rgb(220, 220, 220);
    border-collapse: separate;
    border-spacing: 0 5px; /* 调整第二个值来控制行之间的间隔大小 */
}
.activityTable2 th {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
.activityTable3 {
    background-color: rgb(199, 255, 183);
    border-collapse: separate;
    border-spacing: 0 5px; /* 调整第二个值来控制行之间的间隔大小 */
}
.activityTable3 th {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
.activityTable4 {
    /* width: 90%; */
    background-color: rgb(199, 255, 183);
    border-collapse: separate;
    border-spacing: 0 5px; /* 调整第二个值来控制行之间的间隔大小 */
}
.activityTable4 th {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
.centered-text {
    display: flex;
    justify-content: center;
    align-items: center;
}
.centerRight-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.required-symbol {
    color: red;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    width: 7px;
    /* margin-right: 4px; */
}
/* :host::shadow lightning-input input {
    padding-left: 12px;
    padding-right: 12px;
} */
.container {
    position: relative;
}
 
.mask {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
th ,span{
    white-space: nowrap;
}
 
/*  2023-12-25 Add by Du Start 产品显示页面 */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色遮罩 */
    z-index: 999; /* 使遮罩位于其他元素之上 */
}
 
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 400px; 
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1000;
}
/*  2023-12-25 Add by Du End 产品显示页面 */