This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
608 lines (472 loc) · 15.7 KB
/
index.html
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="76x76" href="/null">
<link rel="icon" type="image/png" href="/null">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<title>00后与年味的故事</title>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="description" content="00后的年味研究课题组">
<meta name="author" content="00后对年味研究课题组">
<meta name="keywords" content="">
<style>
:root{
--shadow-color: rgba(0,0,0,0.2);
--sec-shadow: rgba(0,0,0,0.03);
--shadow-hover-color: rgba(0,0,0,0.28);
--first-text-color: #ed5736;
--second-text-color: #37475b;
--third-text-color: #858585;
--default-text-color: #505050;
--default-link-color: #007bff;
--link-color: #000000;
--second-link-color: #4F9BFA;
--code-color:rgba(27,31,35,.05);
--post-bkg-color: #ffffff90;
--page-bkg-color: #ffffff90;
--nav-a-hover-color: #3498db;
--post-sec-text-color: #718096;
--sec-bkg: #f2f5f8;
--color-mode: 'light';
--bkg-h: rgba(255,255,255,0.6);
--bkg-m: #e1e4e8;
--home-title-color: #f47983;
--shadow: 0 4px 10px rgba(0,2,4,0.06),0 0 1px rgba(0,2,4,0.11);
--hr-color: #ddd;
--bg-t: #f4f4f4;
--nav-bkg: rgba(255,255,255,0.6);
}
@media (prefers-color-scheme: dark) {
:root {
--color-mode: 'dark';
}
:root:not([data-theme]) {
--first-text-color: hsla(0,0%,100%,0.92);
--second-text-color: hsla(0,0%,100%,0.86);
--third-text-color: #a7a9ad;
--default-text-color: #505050;
--default-link-color: #1589e9;
--link-color: #000000;
--second-link-color: #30a9de;
--post-bkg-color: #252d38;
--page-bkg-color: #181c27;
--nav-a-hover-color: #3498db;
--post-sec-text-color: #a7a9ad;
--sec-bkg: #364151;
--bkg-h: rgba(255,255,255,0.2);
--bkg-m: rgba(255,255,255,0.1);
--home-title-color: rgb(226, 82, 90);
--code-color:#3e4b5e;
--shadow: none;
--hr-color: #718096;
--bg-t: #364151;
--nav-bkg: rgba(13,17,23,0.6);
}
}
[data-theme='dark'] {
--shadow-color: rgba(0,0,0,0.2);
--shadow-hover-color: rgba(0,0,0,0.28);
--first-text-color: hsla(0,0%,100%,0.92);
--second-text-color: hsla(0,0%,100%,0.86);
--third-text-color: #a7a9ad;
--default-text-color: #505050;
--default-link-color: #1589e9;
--link-color: #000000;
--second-link-color: #30a9de;
--post-bkg-color: #252d38;
--page-bkg-color: #181c27;
--nav-a-hover-color: #3498db;
--post-sec-text-color: #a7a9ad;
--sec-bkg: #364151;
--bkg-h: rgba(255,255,255,0.2);
--bkg-m: rgba(255,255,255,0.1);
--home-title-color: rgb(226, 82, 90);
--code-color:#3e4b5e;
--shadow: none;
--hr-color: #718096;
--bg-t: #364151;
--nav-bkg: rgba(13,17,23,0.6);
}
</style>
<style>
#page-main,footer,.p-btn{
display: none;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: auto;
background-image: url("https://year.qystu.cc/img/背景.jpg");
background-size: 100% 100%;
background-attachment: scroll;
background-repeat: no-repeat;
}
body {
background-color: var(--page-bkg-color);
color: var(--second-text-color);
overflow-y: scroll;
overflow-x: hidden;
transition: all .3s;
}
a {
color: var(--default-link-color);
text-decoration: none;
background-color: transparent;
}
a:hover{
color: var(--second-link-color);
}
.main-content,.post-card-main{
margin: 30px;
}
@media (max-width: 410px){
.post-card-main{
max-width: 350px!important;
}
}
@media (max-width: 980px){
.post-card-main{
max-width: 520px!important;
}
}
@media (min-width: 780px){
h3{
font-size: 1.5rem;
line-height: 1.5em;
}
}
@media (min-width: 1280px){
h3{
font-size: 1.7rem;
line-height: 1.5em;
}
}
@media (min-width: 2096px){
h3{
font-size: 1.8rem;
line-height: 1.5em;
}
}
.text-center{
text-align: center!important;
}
.middle-center{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
height: 54px;
padding: 0 1.25rem;
top: 0;
left: 0;
right: 0;
z-index: 10;
border-bottom: 1px solid var(--bkg-m);
background-color: var(--nav-bkg);
backdrop-filter: blur(4px);
transition: all .3s;
}
header .header__left, header .header__right {
display: flex;
align-items: center;
font-family: rubik,sans-serif,Varela Round;
}
header .header__left .logo__text {
font-size: 18px;
font-weight: 450;
padding: 14.5px 10px;
border-radius: 5px;
color: var(--second-text-color);
}
header .header__right .navbar__menus {
height: 54px;
padding: 0 0 0 15px;
}
header .header__right .button {
color: var(--second-text-color);
}
header .header__right .navbar__menus .navbar-menu {
display: inline-block;
align-items: center;
height: 54px;
padding: 0 10px;
font-size: 16px;
line-height: 54px;
}
header .header__right .dropdown-icon {
display: none;
height: 54px;
padding: 15px 10px;
border: 0;
background-color: transparent;
}
header .header__right .dropdown-menus {
line-height: 2rem;
animation: slide-in .15s ease 1;
display: none;
position: absolute;
left: 12px;
right: 12px;
top: calc(54px + 10px);
border-radius: 6px;
padding: 24px;
background-color: var(--page-bkg-color);
border: 1px solid var(--bkg-m);
z-index: 9999;
justify-items: center;
justify-content: center;
flex-direction: column;
}
header .header__right #btn-search, header .header__right #btn-toggle-dark{
display: inline-block;
padding: 18px 10px;
height: 25px;
}
header .header__right #btn-dropdown{
display: inline-block;
padding: 13.5px 0;
}
header .header__right .dropdown-menus .dropdown-menu {
padding: 10px;
color: var(--second-text-color);
}
@media screen and (max-width: 764px){
.navbar__menus {
display: none!important;
}
.dropdown-icon {
display: inline-block!important;
}
}
.p-btn{
position: fixed;
bottom: 1.2rem;
right: 1.2rem;
contain: layout;
}
.toc-btn,.click-btn{
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
align-items: center;
margin-top: .5rem;
font-size: .75rem;
background-color: var(--sec-bkg);
display: block;
padding: 0.9rem;
box-shadow: 0 0.3rem 0.6rem rgba(48,55,66,.15);
border: none;
border-radius: 0.5rem;
line-height: 1;
color: var(--first-text-color);
}
.toc-link{
color: var(--second-text-color);
}
#css-loading h3{
font-weight: 500;
font-size: 1.4rem;
text-align: center;
position: fixed;
top: 200px;
left: 0;
right: 0;
opacity: 0;
animation: cssLoad;
animation-delay: 0.3s;
-webkit-animation: cssLoad;
-webkit-animation-delay: 0.3s;
}
@keyframes cssLoad {
from {
opacity: 0;
}
to {
opacity: 0.9;
}
}
.memorial {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); filter:gray;
}
.post-copyright:after {
position: absolute;
color: #fff;
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath fill='gray' d='M245.8 214.9l-33.2 17.3c-9.4-19.6-25.2-20-27.4-20-22.2 0-33.3 14.6-33.3 43.9 0 23.5 9.2 43.8 33.3 43.8 14.4 0 24.6-7 30.5-21.3l30.6 15.5a73.2 73.2 0 01-65.1 39c-22.6 0-74-10.3-74-77 0-58.7 43-77 72.6-77 30.8-.1 52.7 11.9 66 35.8zm143 0l-32.7 17.3c-9.5-19.8-25.7-20-27.9-20-22.1 0-33.2 14.6-33.2 43.9 0 23.5 9.2 43.8 33.2 43.8 14.5 0 24.7-7 30.5-21.3l31 15.5c-2 3.8-21.3 39-65 39-22.7 0-74-9.9-74-77 0-58.7 43-77 72.6-77C354 179 376 191 389 214.8zM247.7 8C104.7 8 0 123 0 256c0 138.4 113.6 248 247.6 248C377.5 504 496 403 496 256 496 118 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.5 85.5-203.3 203.8-203.3A201.7 201.7 0 01451.3 256c0 121.7-99.7 202.9-202.9 202.9z'/%3E%3C/svg%3E");
content: ' ';
height: 10rem;
width: 10rem;
right: -2rem;
top: -2rem;
opacity: .1;
}
</style>
<link rel="stylesheet" href="/css/main.css" media="print" onload="this.media='all';this.onload=null">
<noscript>
<link rel="stylesheet" href="/css/main.css">
</noscript>
<script src="/js/main.js"></script>
<meta name="generator" content="Hexo 6.3.0"></head>
<body>
<header>
<div class="header__left">
<a href="/" class="button"><span class="logo__text">00后与年味的故事</span></a>
</div>
<div class="header__right">
<div class="navbar__menus">
</div>
<a href="/search/" class="button">
<div id="btn-search">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 1024 1024" width="24" height="24" fill="currentColor"
stroke="currentColor" stroke-width="32">
<path
d="M192 448c0-141.152 114.848-256 256-256s256 114.848 256 256-114.848 256-256 256-256-114.848-256-256z m710.624 409.376l-206.88-206.88A318.784 318.784 0 0 0 768 448c0-176.736-143.264-320-320-320S128 271.264 128 448s143.264 320 320 320a318.784 318.784 0 0 0 202.496-72.256l206.88 206.88 45.248-45.248z">
</path>
</svg>
</div>
</a>
<a href="javaScript:void(0);" class="button" id="btn-toggle-dark">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</div>
</a>
<a href="javaScript:void(0);" class="dropdown-icon button">
<div id="btn-dropdown">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 1024 1024" width="24" height="24" fill="currentColor"
stroke="currentColor" stroke-width="32" stroke-linecap="round">
<path
d="M903.43 561.52H148.8c-13.25 0-24-10.75-24-24s10.75-24 24-24h754.63c13.25 0 24 10.75 24 24s-10.75 24-24 24zM903.43 204.31H148.8c-13.25 0-24-10.75-24-24s10.75-24 24-24h754.63c13.25 0 24 10.75 24 24s-10.75 24-24 24zM903.43 918.73H148.8c-13.25 0-24-10.75-24-24s10.75-24 24-24h754.63c13.25 0 24 10.75 24 24s-10.75 24-24 24z"
fill="currentColor"></path>
</svg>
</div>
</a>
<div class="dropdown-menus" id="dropdown-menus">
</div>
</div>
</header>
<div id="top"></div>
<div id="page-main" class="main-content">
<div class="mg-top">
<div id="index-banner" class="text-center middle-center">
<div class="banner-text">
<h3 id="banner-name">
00后与年味的故事
</h3>
<p class="slogan">
<button class="button111" onclick="window.location.href='https://year.qystu.cc/video'">点击播放视频</button><style>.button111{background-color:#f47983;border:none;color:white;padding:15px 32px;text-align:center;text-decoration:none;display:inline-block;font-size:16px}</style>
</p>
</div>
</div>
<div class="post-card-center">
<div class="post-card-main">
<div class="index-card">
<article class="index-card-info">
<h3 class="index-header">
<a href="/posts/2.html">
现在00后都在过年时干什么?</a>
</h3>
<p class="index-excerpt">
在网联万物的大环境下,作为互联网原住民的00后,在春节时期除了放鞭炮,竟然会做这些!
</p>
<div class="index-btm post-metas">
<time datetime="2023-02-21 17:03" pubdate>
2023-02-21
</time>
</div>
</article>
</div>
<div class="index-card">
<article class="index-card-info">
<h3 class="index-header">
<a href="/posts/3.html">
春节习俗</a>
</h3>
<p class="index-excerpt">
中国是一个统一的多民族国家,文化包罗万象,星罗棋布。在这个从充满无尽可能的土地上,会出现怎样的过年习俗呢?
</p>
<div class="index-btm post-metas">
<time datetime="2023-02-21 17:03" pubdate>
2023-02-21
</time>
</div>
</article>
</div>
<div class="index-card">
<article class="index-card-info">
<h3 class="index-header">
<a href="/posts/1.html">
采访分析</a>
</h3>
<p class="index-excerpt">
现在的春节还有年味吗?小时候过年的标配现在都可轻易安排上,有的年轻人仍觉得欠火候,差那么点意思。我们访谈了身边20位00后,对于“年味”,他们这么说……
</p>
<div class="index-btm post-metas">
<time datetime="2023-02-21 17:03" pubdate>
2023-02-21
</time>
</div>
</article>
</div>
</div>
</div>
</div>
<footer class="text-center">
<p>
<span>
<a href="http://beian.miit.gov.cn/" target="_blank" rel="nofollow noopener">
沪ICP备2021023713号-16
</a>
</span>
</p>
<p>© 2023 - 2023 00后的年味研究课题组</p>
<p>Powered by <a href="https://hexo.io" target="_blank">Hexo</a> | Theme by <a href="https://github.com/oCoke/hexo-theme-miracle" target="_blank">Miracle</a></p>
</footer>
<div class="p-btn">
<a href="javascript:window.scrollTo({top:0,behavior:'smooth'});" class="click-btn">
<i id="i-up"></i>
</a>
</div>
<!-- SCRIPTS -->
<script src="https://sdk.51.la/perf/js-sdk-perf.min.js"crossorigin="anonymous"></script><script>new LingQue.Monitor().init({id:"JyrxUbyMp8b3NuD5"});</script>
<script>
document.getElementById("btn-dropdown").addEventListener('click', () => {
toggleClass("#dropdown-menus","display-inline");
});
console.log('\n' + ' %c Powered by Hexo Theme Miracle ' + ' %c https://github.com/hifun-team/hexo-theme-miracle ' + '\n' + '\n', 'color: #fff; background: #4F9BFA; padding:5px 0;', 'background: #FFF; padding:5px 0;');
/* 小彩蛋: 饮茶先啦 */
setTimeout(() => {
var time = new Date();
if (time.getHours() == 15) {
let comment = document.createComment(' 三点几嚟!饮茶先啦! ');
document.body.insertBefore(comment, document.getElementsByTagName('header')[0]);
}
},1);
</script>
</div>
<div id="css-loading">
<h3 class="text-center">加载中...</h3>
</div>
</body>
</html>