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
.container {
height: 100%;
overflow: hidden;
li {
span {
text-align: center !important;
}
}
header {
height: 80px;
width: 100%;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
img {
height: 65%;
}
.menu {
height: 80px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
> ul {
height: 100% !important;
line-height: 80px !important;
}
}
.dll {
width: 98px;
height: 80px;
padding: 0 16px;
display: flex;
justify-content: space-around;
align-items: center;
margin-right: -24px;
> * {
font-size: 20px;
color: @primary-color;
}
}
}
}
.aboutheader {
position: relative;
margin-bottom: 60px;
.menucontent {
width: calc(100% - 4rem);
display: flex;
justify-content: space-around;
align-items: center;
position: absolute;
left: 0;
right: 0;
margin: auto;
bottom: -48px;
background-color: #ffffff;
height: 5rem;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
> div {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
cursor: pointer;
> div {
width: 3rem;
height: 3rem;
background-size: 40% auto;
padding: 1rem;
background-color: #ffffff;
border-radius: 50%;
transform: scale(1);
}
p {
font-size: 0.6rem;
}
}
}
}
.navbar {
padding: 1rem !important;
border-top: 1px solid #f0f0f0 !important;
background-color: #ffffff;
}
.diybtn {
font-size: 0.8rem !important;
letter-spacing: 2px;
width: 6rem;
height: 2rem;
background-color: aliceblue;
border-radius: 6rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color: #000000;
}