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
| @use './common.scss' as *;
|
| .main-cell-container {
| .main-cell-wrapper {
| padding: 18px 20px 60px;
| border-radius: 32px;
| background: #ffffff;
|
| .main-cell-title-wrapper {
| margin-left: 12px;
| display: flex;
| align-items: center;
| height: 88px;
|
| .main-cell-title-line {
| width: 8px;
| height: 36px;
| background: boleGetCssVar('color', 'primary');
| border-radius: 4px;
| margin-right: 16px;
| }
|
| .main-cell-title {
| font-size: 34px;
| font-weight: 400;
| color: boleGetCssVar('text-color', 'primary');
| line-height: 44px;
| }
| }
|
| .main-cell-icon {
| display: flex;
| justify-content: center;
| margin-top: 40px;
| }
| }
| }
|
| .lp-chunk-wrapper {
| padding: 0 26px;
| border-radius: 32px;
| background: #ffffff;
| margin-bottom: 32px;
|
| &:last-child {
| margin-bottom: 0;
| }
|
| &.hasPaddingBottom {
| padding-bottom: 48px;
| }
|
| &.borderRadiusSmall {
| border-radius: 20px;
| }
|
| .lp-chunk-title {
| height: 88px;
| background: #ffffff;
| font-weight: 500;
| font-size: 34px;
| color: boleGetCssVar('text-color', 'primary');
| line-height: 88px;
| }
|
| .lp-chunk-content {
| .nut-cell.bole-form-item {
| padding: 0;
| }
| }
| }
|
|