-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_footer.css
74 lines (68 loc) · 1.21 KB
/
06_footer.css
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
.footer{
width: 100%;
height: 250px;
background: #E9E9E9;
display: flex;
justify-content: center;
align-items: center;
}
.footer_wrap{
width: 1440px;
opacity: 1;
display: flex;
justify-content: left;
flex-direction: column;
}
.footer_wrap span{
font-size: 16px;
letter-spacing: 0px;
color: #9E9E9E;
}
.footer_tip>span>img{
width: 200px;
height: 45px;
}
.footer_top{
text-align: left;
}
.footer_bottom{
line-height: 26px;
font-size: 16px;
display: flex;
justify-content: left;
flex-direction: row;
padding-top: 30px;
}
.footer_bottomL{
text-align: left;
}
.footer_bottomR{
padding-left: 128px;
text-align: left;
}
@media (max-width:1024px) {
.footer_wrap {
width: 800px;
}
.footer_bottomR{
padding-left: 50px;
}
}
@media (max-width:768px) {
.footer_wrap {
width: 704px;
margin-left: 5%;
}
.footer {
height: 331px;
}
.footer_bottomR{
padding-left: 0px;
}
.footer_bottomR:last-child{
padding-top: 40px;
}
.footer_bottom {
display: block;
}
}