-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
225 lines (195 loc) · 4.12 KB
/
style.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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
* {
font-family: Arial, sans-serif;
}
header {
background-color: white;
padding: 5px;
text-align: center;
}
body {
background-color: #f0f0f0;
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
form {
text-align: center;
margin-bottom: 20px;
}
input[type="text"],
select {
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
margin-right: 10px;
}
.details-toggle {
cursor: pointer;
text-decoration: none;
color: #007bff;
margin-bottom: 10px;
}
.details-content {
display: none;
}
.details-toggle::after {
font-family: 'Font Awesome 5 Free';
content: "\f107";
/* 表示尖头向下 */
display: inline-block;
margin-left: 5px;
}
.details-toggle.open::after {
content: "\f106";
/* 表示尖头向上 */
}
ul {
list-style-type: none;
padding: 0;
}
.result h2 {
text-transform: uppercase;
text-align: center;
margin-bottom: 10px;
}
ul li {
margin-bottom: 5px;
}
a {
color: #20a53a;
text-decoration: none;
/* 链接颜色 */
}
.illustrate {
width: 80%;
max-width: 600px;
padding: 20px;
border-radius: 10px;
margin: 20px auto;
/* 居中显示 */
}
footer {
background-color: white;
padding: 5px;
text-align: center;
margin-top: auto;
}
/* 适配电脑用户 */
@media screen and (min-width: 768px) {
input[type="text"],
select {
border-radius: 30px;
width: 30%;
/* 搜索栏 */
box-sizing: border-box;
/* 包含内边距和边框在内的总宽度 */
margin-top: 10px;
/*留出空间*/
}
.result {
margin-top: 15px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.header-icon {
display: none;
}
.submit-button:hover {
background-color: #0056b3;
/* 悬停变化 */
}
.submit-button i {
margin-right: 5px;
/* 图标和文本之间的间距 */
}
/* 提交按钮样式 */
.submit-button {
color: black;
border: none;
padding: 12px 20px;
/* 调整内边距 */
border-radius: 25px;
/* 圆角 */
cursor: pointer;
/* 悬停显示 */
font-size: 20px;
transition: background-color 0.3s ease;
/* 过渡效果 */
margin-top: 3px;
/* 与上方元素的间隔 */
}
}
/* 适配手机用户 */
@media screen and (max-width: 767px) {
form {
display: flex;
flex-direction: column;
/* 垂直排列 */
align-items: center;
/* 水平居中 */
}
input[type="text"] {
border-radius: 30px;
width: 100%;
box-sizing: border-box;
/* 包含内边距和边框在内的总宽度 */
margin-bottom: 10px;
}
select {
border-radius: 35px;
width: 100%;
box-sizing: border-box;
/* 包含内边距和边框在内的总宽度 */
margin-bottom: 10px;
/* 下方元素的间隔 */
}
.form-group {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.submit-button {
border-radius: 30px;
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
width: 96%;
/* 宽度占满容器 */
margin-top: 3px;
/* 与上方元素的间隔 */
}
.result {
margin-top: 15px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.header-icon {
position: absolute;
top: 6px;
left: 12px;
width: 30px;
height: 30px;
}
h2 {
font-size: 13.2px;
}
}