technology.css
2.53 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
.head ul {
position: relative;
}
.head ul .to_li {
position: absolute;
display: block;
width: 40px;
height: 5px;
background: #C70009;
border-radius: 49px 21px 0px 0px;
bottom: -34px;
left: 46%;
}
.fen {
width: 81.25rem;
margin: 0 auto;
position: relative;
}
.fen .title {
font-size: 30px;
font-family: Source Han Sans, Source Han Sans;
font-weight: 900;
color: #3D3D3D;
line-height: 56px;
display: flex;
align-items: center;
margin-top: 46px;
position: relative;
}
.fen .title::before {
content: "";
display: inline-block;
width: 6px;
height: 56px;
margin-right: 20px;
background-color: #C70009;
}
.fen .two {
width: 80rem;
margin-left: 20px;
font-size: 18px;
font-family: Source Han Sans, Source Han Sans;
font-weight: 400;
color: #787878;
line-height: 30px;
margin-top: 30px;
}
.fen .technology {
width: 100%;
margin-top: 20px;
display: flex;
justify-content: space-between;
align-content: space-between;
flex-wrap: wrap;
z-index: 2;
}
.fen .technology a {
display: block;
width: 49.2%;
}
.fen .technology .child {
position: relative;
width: 100%;
height: 312px;
display: flex;
flex-direction: column;
justify-content: flex-end;
transition: linear all 500ms;
border-radius: 10px 10px 10px 10px;
margin-top: 36px;
overflow: hidden;
}
.fen .technology .child:hover {
box-shadow: 27px 21px 44px 0px rgba(24, 35, 80, 0.18);
}
.fen .technology .child:hover .tec_sp {
bottom: 62px;
}
.fen .technology .child:hover div {
left: 0px;
bottom: 12px;
}
.fen .technology .child .tec_more {
position: absolute;
font-size: 14px;
font-family: Source Han Sans, Source Han Sans;
font-weight: 700;
color: #FCD106;
margin-left: 46px;
border: none;
transition: all linear 300ms;
bottom: -100px;
}
.fen .technology .child .tec_more::after {
content: "";
display: inline-block;
width: 14px;
height: 8px;
background: url("../../imgs/home/info_to_yellow.png") center right no-repeat;
background-size: 100%;
margin-left: 9px;
}
.fen .technology .child .tec_sp {
position: absolute;
bottom: 23px;
margin-left: 46px;
transition: all linear 300ms;
}
.fen .technology .child .tec_sp span {
font-size: 36px;
font-family: Source Han Sans, Source Han Sans;
font-weight: 700;
color: #FFFFFF;
transition: all linear 300ms;
}
.fen .technology .child .tec_sp p {
width: 550px;
font-size: 18px;
font-family: Source Han Sans, Source Han Sans;
font-weight: 500;
color: #FFFFFF;
transition: all linear 300ms;
margin-top: 17px;
}