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
.title th {
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
.basicInfo {
    border-spacing: 0;
    margin: 8px;
}
.basicInfo td {
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
}
.basicInfo 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; */
}
.overlay {
    position: fixed;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 设置遮罩的颜色和透明度 */
    z-index: 9999; /* 设置遮罩的层级 */
  }
  .scrollable-container {
    height: 500px; /* 设置固定高度 */
    overflow-y: auto; /* 启用垂直滚动条 */
  }