index.css
1.2 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
body {
padding: 0;
margin: 0;
color: #FFFFFF;
}
.index_bg {
width: 100%;
height: 100vh;
/*background-color: #f5f5f5;*/
background-image: url(./img/bg.png);
background-size: 100% 100%;
}
.index_header {
width: 100%;
height: 80px;
/*background-color: #fff;*/
position: absolute;
top: 25%;
left: 0;
display: flex;
align-items: center;
justify-content: center;
text-shadow: 0px 4px 4px rgba(0, 40, 85, 0.72);
font-size: 32px;
}
.index_core {
width: 100%;
height: 350px;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
}
.index_core_item {
width: 261px;
height: 350px;
margin: 0 20px;
cursor: pointer;
border-radius: 16px;
}
.index_core_item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.index_core_item:hover {
box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.3);
}
.index_footer {
width: 100%;
height: 80px;
position: absolute;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
}
.index_footer div {
margin: 0 20px;
}