common-form.scss
2.11 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@import '@/styles/_support.scss';
.common-form-container {}
.table {
$girdHei: 4.333333rem;
text-align: center;
&-header {
@include border-top-radius(.666667rem);
display: flex;
align-items: center;
height: 3.25rem;
color: #ffffff;
font-weight: bold;
&-item {}
}
&-header:lang(zh) {
letter-spacing: .1rem;
}
&-content {
color: $cFontGray;
background-color: #f2f2f2;
text-align: center;
border: solid 1px #f2f2f2;
@include border-bottom-radius(.666667rem);
$gridHei: 5.25rem;
&-item {
position: relative;
// @extend .fcc;
display: flex;
align-items: center;
width: 100%;
height: auto;
.hl {
position: absolute;
width: 6.45rem;
height: 1px;
background-color: #dcdddd;
bottom: 0;
left: 1rem;
}
.grid {
position: relative;
height: $gridHei;
@extend .fcc;
// border-bottom: solid 1px #f2f2f2;
background-color: #ffffff;
.v-line {
position: absolute;
width: 1px;
height: 2.25rem;
background-color: #dcdddd;
right: 0;
top: 0;
bottom: 0;
margin: auto 0;
}
.icon {
margin-right: .916667rem;
}
}
.ww {
position: relative;
.h-line {
position: absolute;
width: 100%;
height: 1px;
background-color: #dcdddd;
bottom: 0;
left: 0;
}
}
.w1 {}
.w4 {
.h-line {
width: 12rem;
}
color: $cOrange;
}
}
}
.t1 {
background-color: #f2f2f2;
}
.w1 {
width: 8.75rem; // 105
}
.w2 {
width: 29rem; // 348
}
.w3 {
width: 29.75rem; // 357
}
.w4 {
width: 12rem;
width: 13.75rem;
}
}
.orange {
background-color: $cOrange;
}
@media (max-width: 1200px) {
.container {
display: -webkit-box;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
width: 92vw;
}
}
.container::-webkit-scrollbar {
display: none;
}