index.css
3.29 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#index {
color: #d3d6dd;
width: 1920px;
height: 1080px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-transform-origin: left top;
transform-origin: left top;
overflow: hidden;
}
#index .bg {
width: 100%;
height: 100%;
padding: 16px 16px 0 16px;
background-image: url("../assets/pageBg.png");
background-size: cover;
background-position: center center;
}
#index .host-body .dv-dec-10,
#index .host-body .dv-dec-10-s {
width: 33.3%;
height: 5px;
}
#index .host-body .dv-dec-10-s {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
#index .host-body .dv-dec-8 {
width: 200px;
height: 50px;
}
#index .host-body .title {
position: relative;
width: 500px;
text-align: center;
background-size: cover;
background-repeat: no-repeat;
}
#index .host-body .title .title-text {
font-size: 24px;
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translate(-50%);
transform: translate(-50%);
}
#index .host-body .title .dv-dec-6 {
position: absolute;
bottom: -30px;
left: 50%;
width: 250px;
height: 8px;
-webkit-transform: translate(-50%);
transform: translate(-50%);
}
#index .host-body .aside-width {
width: 40%;
}
#index .host-body .react-r-s,
#index .host-body .react-l-s {
background-color: #0f1325;
}
#index .host-body .react-right {
font-size: 18px;
width: 300px;
line-height: 50px;
text-align: center;
-webkit-transform: skewX(-45deg);
transform: skewX(-45deg);
}
#index .host-body .react-right.react-l-s {
text-align: right;
width: 500px;
}
#index .host-body .react-right .react-after {
position: absolute;
right: -25px;
top: 0;
height: 50px;
width: 50px;
background-color: #0f1325;
-webkit-transform: skewX(45deg);
transform: skewX(45deg);
}
#index .host-body .react-right .text {
display: inline-block;
-webkit-transform: skewX(45deg);
transform: skewX(45deg);
}
#index .host-body .react-left {
font-size: 18px;
width: 300px;
height: 50px;
line-height: 50px;
text-align: center;
-webkit-transform: skewX(45deg);
transform: skewX(45deg);
background-color: #0f1325;
}
#index .host-body .react-left.react-l-s {
width: 500px;
text-align: left;
}
#index .host-body .react-left .react-before {
position: absolute;
left: -25px;
top: 0;
height: 50px;
width: 50px;
background-color: #0f1325;
-webkit-transform: skewX(-45deg);
transform: skewX(-45deg);
}
#index .host-body .react-left .text {
display: inline-block;
-webkit-transform: skewX(-45deg);
transform: skewX(-45deg);
}
#index .host-body .body-box {
margin-top: 16px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
#index .host-body .body-box .content-box {
display: -ms-grid;
display: grid;
-ms-grid-columns: 6fr 7fr 1fr;
grid-template-columns: 6fr 7fr 1fr;
}
#index .host-body .body-box .bototm-box {
margin-top: 10px;
display: -ms-grid;
display: grid;
-ms-grid-columns: 4fr 3fr 4fr;
grid-template-columns: 4fr 3fr 4fr;
}
/*# sourceMappingURL=index.css.map */