header.css
2.7 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
166
167
/* 头部 */
#header {
width: 100%;
height: 80px;
line-height: 80px;
background-color: white;
}
#header section {
float: left;
}
/* logo */
#header .home_logo {
width: 110px;
height: 70px;
margin: 0 175px 0 210px;
}
#header .home_logo img {
width: 100%;
height: 100%
}
/* 导航栏 */
#header .home_nav ul li {
position: relative;
float: left;
font-size: 17px;
color: rgba(77, 77, 77, 1);
width: 70px;
height: 76px;
margin: 0 30px;
text-align: center;
border-top: 4px solid rgba(255, 255, 255, 1);
}
#header .home_nav ul li:hover .home_nav_down {
display: block;
}
.home_nav_down {
display: none;
position: absolute;
width: 146px;
top: 70px;
z-index: 1;
}
.home_nav_down2 {
width: 146px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 4px 16px 0px rgba(35, 35, 35, 0.2);
border-radius: 2px;
position: relative;
}
.home_nav_down2 img {
top: -10px;
left: 12%;
position: absolute;
width: 7px;
height: 13px;
transform: rotate(90deg);
}
.home_nav_down2 dl {
margin-top: 10px;
}
.home_nav_down2 dl dd:hover {
background: rgba(58, 255, 165, 1);
}
.home_nav_down2 dl dd {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
color: rgba(51, 51, 51, 1);
cursor: pointer;
text-align: left;
height: 40px;
padding-left: 17px;
box-sizing: border-box;
line-height: 40px;
display: block;
}
#header .home_nav ul li a {
padding-top: 28px;
}
.home_nav_act {
color: rgba(9, 255, 142, 1);
border-top: 4px solid rgba(9, 255, 142, 1);
}
.home_nav .home_nav_act_A:hover {
color: rgba(9, 255, 142, 1);
border-top: 4px solid rgba(9, 255, 142, 1);
}
/* 搜索框 */
#header .home_search {
position: relative;
width: 308px;
}
/* 图标 */
#header .home_search .search_icon {
position: absolute;
left: 85px;
top: 32px;
background-image: url("../starImg/aicon_23.png");
background-repeat: no-repeat;
background-position: 0px 0px;
width: 18px;
height: 18px;
z-index: 3
}
/* 输入框 */
#header .home_search input {
margin: 0 16px 0 76px;
width: 160px;
height: 33px;
background: rgba(242, 242, 242, 1);
border-radius: 17px;
outline: none;
border: none;
padding-left: 40px;
}
/* 登录注册按钮 */
#header .home_login span p {
float: left;
margin-left: 16px
}
/* 注册按钮 */
#header .home_login span p:first-child {
width: 78px;
height: 40px;
background: rgba(18, 237, 136, 1);
border-radius: 20px;
color: rgba(255, 255, 255, 1);
line-height: 40px;
text-align: center;
margin-top: 20px
}