-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1312 lines (1254 loc) · 53.1 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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<title>喵姆餐厅•好多好多的芝士和肉,给你认真生活的力量!</title>
<link rel="self" href="https://miaomfood.com/" />
<link rel="meta" type="application/rdf+xml" title="FOAF" href="/static/foaf.rdf" />
<link rel="alternate" type="application/ld+json" title="JSON-LD representation of this site" href="/static/about.jsonld" />
<link rel="canonical" href="https://miaomfood.com" />
<!-- <link rel="apple-touch-icon" href="./static/imgs/icon.png"/>
<link rel="shortcut icon" href="./static/imgs/icon.png" />
<link rel="manifest" href="/static/manifest.json"> -->
<link rel="stylesheet" media="all" href="//cdnjs.cloudflare.com/ajax/libs/Han/3.2.7/han.min.css">
<meta charset="utf-8" />
<meta property="og:title" content="喵姆餐厅•好多好多的芝士和肉,给你认真生活的力量!" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://miaomfood.com" />
<meta property="og:description" content="好多好多的芝士和肉,给你认真生活的力量!"/>
<meta property="og:local" content="zh_CN" />
<meta property="og:image" content="https://miaomfood.com/resources/doorface.jpg" />
<meta name="author" content="松志" />
<meta name="description" content="好多好多的芝士和肉,给你认真生活的力量!" />
<meta name="keywords" content="喵姆餐厅 喵姆 Miaom pizza 快餐 美味 乌鲁木齐快餐 披萨 焗饭 小吃 烤翅" />
<meta name="viewport" content="initial-scale=1.0, width=device-width, maximum-scale=1, user-scalable=0" />
<meta name="msapplication-tap-highlight" content="no" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/ld+json">{
"@context": {
"@vocab": "http://schema.org/",
"@language": "zh",
"foaf": "http://xmlns.com/foaf/0.1/"
},
"@graph": [
{
"@id": "https://miaomfood.com/",
"@type": "WebSite",
"name": "喵姆餐厅",
"alternateName": "喵姆餐厅•好多好多的芝士和肉,给你认真生活的力量!",
"keywords": "喵姆餐厅,喵姆,Miaom,pizza,快餐,美味,乌鲁木齐快餐,披萨,焗饭,小吃,烤翅",
"copyrightYear": "2017",
"locationCreated": "Urumqi",
"mainEntity": {
"@type": "Restaurant",
"@id": "https://miaomfood.com/about"
},
"author": {
"@id": "https://heysage.com/about",
"@type": "Person",
"name": "松志",
"url": "https://heysage.com/about",
"contactPoint": {
"@id": "https://heysage.com/about#contact",
"@type": "ContactPoint",
"contactType": "technical support",
"email": "[email protected]",
"telephone": "+8618611552172",
"productSupported": "网站制作,软件开发,Software Development",
"availableLanguage": "zh-cmn-Hans-CN,en"
},
"nationality": "CHN",
"workLocation": "Urumqi",
"knows": [
"http://samael.cn/"
]
}
},
{
"@id": "https://miaomfood.com/about",
"@type": [
"Organization",
"Restaurant",
"CafeOrCoffeeShop"
],
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://miaomfood.com"
},
"name": "喵姆餐厅",
"description": "好多好多的芝士和肉,给你认真生活的力量!",
"url": "https://miaomfood.com",
"image": "https://miaomfood.com/Branding/doorface.jpeg",
"logo": "https://miaomfood.com/resources/logo.svg",
"telephone": "+8618690890381",
"foundingDate": "2015-11-15",
"openingHours": "Mo-Su 11:00-22:00",
"hasMap": "http://f.amap.com/1bwbT_0452CUD",
"acceptsReservations": true,
"currenciesAccepted": "CNY",
"priceRange": "¥¥",
"paymentAccepted": "现金到付,支付宝",
"address": {
"@type": "PostalAddress",
"addressCountry": "CHN",
"addressRegion": "新疆",
"addressLocality": "乌鲁木齐",
"postalCode": "830000",
"streetAddress": "高新街桂林路东四巷锦林二巷8号1楼"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "43.853485",
"longitude": "87.573932"
},
"contactPoint": {
"@id": "https://miaomfood.com/contact",
"@type": "ContactPoint",
"contactType": [
"sales",
"customer support",
"reservations"
],
"telephone": "+8618690890381",
"email": "[email protected]",
"areaServed": "乌鲁木齐",
"hoursAvailable": "Mo-Su 11:00-22:00",
"productSupported": "外卖点餐,进店堂食,派对策划,甜品教学,商业合作",
"availableLanguage": "zh-cmn-Hans-CN,en"
},
"servesCuisine": [
"Italian"
],
"makesOffer": {
"itemOffered": {
"@type": "Service",
"provider": "https://miaomfood.com",
"description": "由喵姆餐厅提供的送餐上门服务,向您收取的送餐费将全额补贴到送餐员,请知悉。",
"serviceType": "送餐上门",
"areaServed": "乌鲁木齐",
"hoursAvailable": [
"Mo-Su 11:00-22:00"
],
"offers": {
"@type": "Offer",
"price": 3,
"priceCurrency": "CNY",
"seller": "https://miaomfood.com",
"BusinessFunction": "http://purl.org/goodrelations/v1#ProvideService",
"deliveryLeadTime": {
"@type": "QuantitativeValue",
"value": 20,
"unitText": "分钟",
"unitCode": "MIN"
}
}
}
},
"hasMenu": {
"@type": "Menu",
"@id": "https://miaomfood.com/menu",
"inLanguage": "zh-CN",
"hasMenuSection": [
{
"@id": "https://miaomfood.com/menu/tasty",
"@type": "MenuSection",
"name": "好吃的",
"description": "",
"hasMenuSection": [
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/pizza",
"name": "披萨",
"description": "",
"hasMenuItem": [
{
"@id": "https://miaomfood.com/menu/pizza/JQPG",
"@type": [
"MenuItem",
"Product"
],
"name": "激情培根",
"alternateName": "",
"productID": "JQPG",
"description": "特色:双层培根,圆菇",
"image": "https://miaomfood.com/resources/jqpg.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 39,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 59,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "激情培根",
"image": "https://miaomfood.com/resources/jqpg.jpg",
"cookingMethod": "烤",
"cookTime": "PT20M",
"recipeIngredient": [
"https://www.wikiwand.com/zh-hans/培根",
"https://www.wikiwand.com/zh-hans/双孢蘑菇"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/FQXWY",
"@type": [
"MenuItem",
"Product"
],
"name": "风情夏威夷",
"alternateName": "",
"productID": "FQWXY",
"description": "特色:培根,菠萝",
"image": "https://miaomfood.com/resources/fqxwy.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 39,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 59,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "风情夏威夷",
"image": "https://miaomfood.com/resources/fqxwy.jpg",
"description": "特色:双层培根,圆菇",
"cookingMethod": "烤",
"cookTime": "PT20M",
"recipeIngredient": [
"https://www.wikiwand.com/zh-hans/培根",
"https://www.wikiwand.com/zh-hans/菠萝"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/NNMM",
"@type": [
"MenuItem",
"Product"
],
"name": "内牛满面",
"alternateName": "",
"productID": "NNMM",
"description": "特色:牛肉",
"image": "https://miaomfood.com/resources/nnmm.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 46,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 69,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "内牛满面",
"image": "https://miaomfood.com/resources/nnmm.jpg",
"cookingMethod": "烤",
"cookTime": "PT20M",
"recipeIngredient": [
"https://https://www.wikiwand.com/zh-hans/牛肉"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/ITALY",
"@type": [
"MenuItem",
"Product"
],
"name": "意式肉酱披萨",
"alternateName": "",
"productID": "ITALY",
"description": "特色:牛肉,自制辣酱",
"image": "https://miaomfood.com/resources/italy.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 58,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 87,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "意式肉酱披萨",
"image": "https://miaomfood.com/resources/italy.jpg",
"cookingMethod": "烤",
"prepTime": "PT1H",
"cookTime": "PT20M",
"recipeIngredient": [
"https://https://www.wikiwand.com/zh-hans/牛肉",
"https://www.wikiwand.com/zh-hans/辣酱"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/TURKEY",
"@type": [
"MenuItem",
"Product"
],
"name": "土耳其烤鸡肉披萨",
"alternateName": "",
"productID": "TURKEY",
"description": "特色:烤鸡肉,自制辣酱",
"image": "https://miaomfood.com/resources/turkey.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 46,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 69,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "土耳其烤鸡肉披萨",
"image": "https://miaomfood.com/resources/turkey.jpg",
"cookingMethod": "烤",
"prepTime": "PT50M",
"cookTime": "PT20M",
"recipeIngredient": [
"https://www.wikiwand.com/zh-hans/辣酱"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/QMJQY",
"@type": [
"MenuItem",
"Product"
],
"name": "情满金枪鱼",
"alternateName": "",
"productID": "QMJQY",
"description": "特色:金枪鱼,酸黄瓜",
"image": "https://miaomfood.com/resources/qmjqy.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 58,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 87,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "情满金枪鱼",
"image": "https://miaomfood.com/resources/qmjqy.jpg",
"cookingMethod": "烤",
"prepTime": "PT50M",
"cookTime": "PT20M",
"recipeIngredient": [
"https://www.wikiwand.com/zh-hans/金枪鱼属"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/XJTX",
"@type": [
"MenuItem",
"Product"
],
"name": "席卷天虾",
"alternateName": "",
"productID": "XJTX",
"description": "特色:金枪鱼,虾仁",
"image": "https://miaomfood.com/resources/xjtx.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 58,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 87,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "席卷天虾",
"image": "https://miaomfood.com/resources/qmjqy.jpg",
"cookingMethod": "烤",
"prepTime": "PT50M",
"cookTime": "PT20M",
"recipeIngredient": [
"https://www.wikiwand.com/zh-hans/金枪鱼属",
"https://www.wikiwand.com/zh-hans/虾仁"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/MGBC",
"@type": [
"MenuItem",
"Product"
],
"name": "蘑菇菠菜",
"alternateName": "",
"productID": "XJTX",
"description": "特色:菠菜,蘑菇,酸黄瓜",
"image": "https://miaomfood.com/resources/mgbc.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 35,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 53,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "蘑菇菠菜",
"image": "https://miaomfood.com/resources/mgbc.jpg",
"cookingMethod": "烤",
"prepTime": "PT50M",
"cookTime": "PT20M",
"recipeIngredient": [
"https://https://www.wikiwand.com/zh-hans/菠菜"
]
}
}
},
{
"@id": "https://miaomfood.com/menu/pizza/LLLL",
"@type": [
"MenuItem",
"Product"
],
"name": "榴恋榴莲",
"alternateName": "",
"productID": "LLLL",
"description": "特色:榴莲",
"image": "https://miaomfood.com/resources/llll.jpg",
"offers": [
{
"@type": "Offer",
"name": "八寸",
"price": 68,
"availability": "http://schema.org/SoldOut"
},
{
"@type": "Offer",
"name": "十寸",
"price": 97,
"availability": "http://schema.org/SoldOut"
}
],
"potentialAction": {
"@type": "CookAction",
"recipe": {
"@type": "Recipe",
"name": "榴恋榴莲",
"image": "https://miaomfood.com/resources/llll.jpg",
"cookingMethod": "烤",
"prepTime": "PT50M",
"cookTime": "PT20M",
"recipeIngredient": [
"https://https://www.wikiwand.com/zh-hans/榴莲"
]
}
}
}
]
},
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/meal",
"name": "饭类",
"description": "",
"hasMenuItem": [
{
"@id": "https://miaomfood.com/menu/meal/HHNRJF",
"@type": [
"MenuItem",
"Product"
],
"name": "红烩牛肉焗饭",
"alternateName": "",
"productID": "HHNRJF",
"description": "特色:牛肉,红酒",
"image": "https://miaomfood.com/resources/hhnrjf.jpg",
"offers": {
"@type": "Offer",
"name": "份",
"price": 35,
"availability": "http://schema.org/InStock"
}
},
{
"@id": "https://miaomfood.com/menu/meal/GLJRJF",
"@type": [
"MenuItem",
"Product"
],
"name": "咖喱鸡肉焗饭",
"alternateName": "",
"productID": "HHNRJF",
"description": "特色:鸡肉,咖喱",
"image": "https://miaomfood.com/resources/gljrjf.jpg",
"offers": [
{
"@type": "Offer",
"name": "份",
"price": 35,
"availability": "http://schema.org/InStock"
}
]
},
{
"@id": "https://miaomfood.com/menu/meal/TURKEYJF",
"@type": [
"MenuItem",
"Product"
],
"name": "土耳其烤肉焗饭",
"alternateName": "",
"productID": "TERKEYJF",
"description": "特色:土耳其风味烤肉",
"image": "https://miaomfood.com/resources/turkeyjf.jpg",
"offers": [
{
"@type": "Offer",
"name": "份",
"price": 38,
"availability": "http://schema.org/InStock"
}
]
},
{
"@id": "https://miaomfood.com/menu/meal/ITALYJF",
"@type": [
"MenuItem",
"Product"
],
"name": "意式肉酱焗饭",
"alternateName": "",
"productID": "ITALYJF",
"description": "特色:意式肉酱",
"image": "https://miaomfood.com/resources/italyjf.jpg",
"offers": [
{
"@type": "Offer",
"name": "份",
"price": 42,
"availability": "http://schema.org/InStock"
}
]
},
{
"@id": "https://miaomfood.com/menu/meal/TUDOUROU",
"@type": [
"MenuItem",
"Product"
],
"name": "土豆肉酱千层",
"alternateName": "",
"productID": "TUDOUROU",
"description": "特色:土豆肉酱",
"image": "https://miaomfood.com/resources/tudourou.jpg",
"offers": [
{
"@type": "Offer",
"name": "份",
"price": 42,
"availability": "http://schema.org/InStock"
}
]
}
]
},
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/meal",
"name": "小吃",
"description": ""
}
]
},
{
"@id": "https://miaomfood.com/drinks",
"@type": "MenuSection",
"name": "好喝的",
"hasMenuSection": [
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/pizza",
"name": "咖啡",
"description": ""
},
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/pizza",
"name": "红茶",
"description": ""
},
{
"@type": "MenuSection",
"@id": "https://miaomfood.com/menu/tasty/pizza",
"name": "气泡水•冰茶",
"description": ""
}
]
}
]
}
}
]
}</script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<![endif]-->
</head>
<body class="wrap">
<div id="console">
</div>
<div id="cart">
</div>
<header id="topbar">
<h1 class="head-branding is-sticky">
<a href="#">
<img class="branding-logo" src="./static/imgs/logo.svg" alt="Logo" />
</a>
<span class="branding-name">喵姆餐厅</span>
</h1>
<div class="topbar-toggles">
<a href="#cart"><div class="cart-toggle"></div></a>
<a href="#console"><div class="console-toggle"></div></a>
</div>
</header>
<div id="carousel">
<span class="bullets">
<b class="bullet isActive"></b>
<b class="bullet"></b>
<b class="bullet"></b>
</span>
<div class="slideshow">
<div class="slide"></div>
<div class="slide" style="display: none"></div>
<div class="slide" style="display: none"></div>
</div>
</div>
<nav id="menu">
<h1 class="menu-title">菜单</h1>
<ul class="drawers">
<li class="drawer tasty">
<span class="drawer__hd">好吃</span>
<ul class="drawer__bd">
<li class="drawer__item"><a href="#pizza">披萨</a></li>
<li class="drawer__item"><a href="#meal">饭类</a></li>
<li class="drawer__item"><a href="#snack">小吃</a></li>
</ul>
</li>
<li class="drawer drink">
<sapn class="drawer__hd">好喝</sapn>
<ul class="drawer__bd">
<li class="drawer__item"><a href="#coffee">咖啡</a></li>
<li class="drawer__item"><a href="#tea">红茶</a></li>
<li class="drawer__item"><a href="#water">气泡水</a></li>
</ul>
</li>
<li class="drawer lazycat">
<a href="#lazycat"><span class="drawer__hd">好懒</span></a>
</li>
<li class="drawer activity">
<sapn class="drawer__hd">好玩</sapn>
<ul class="drawer__bd">
<li class="drawer__item"><a href="#fellowship">联谊策划</a></li>
<li class="drawer__item"><a href="#diy">披萨制作体验</a></li>
<li class="drawer__item"><a href="#teaching">烘焙教学</a></li>
</ul>
</li>
</ul>
</nav>
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true" >
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<main id="poster">
<div id="goods" class="goods grp">
<section id="tasty" class="tasty page">
<section id="pizza" class="category">
<h1 class="category__title">披萨</h1>
<div class="twins group">
<article class="h-product" data-cid="JQPG">
<h2 class="p-name">激情培根</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥39</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥59</b>/八寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:激情培根披萨" />
<figcaption class="e-description">
<p>特色:双层培根,圆菇</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="FQXWY">
<h2 class="p-name">风情夏威夷</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥39</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥59</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:风情夏威夷披萨" />
<figcaption class="e-description">
<p>特色:培根,菠萝</p>
</figcaption>
</figure>
</article>
</div>
<div class="twins group">
<article class="h-product" data-cid="NNMM">
<h2 class="p-name">内牛满面</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥46</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥69</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:内牛满面披萨" />
<figcaption class="e-description">
<p>特色:牛肉</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="ITALY">
<h2 class="p-name">意式肉酱披萨</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥58</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥87</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:热辣牛肉披萨" />
<figcaption class="e-description">
<p>特色:牛肉,自制辣酱</p>
</figcaption>
</figure>
</article>
</div>
<div class="twins group">
<article class="h-product" data-cid="TURKEY">
<h2 class="p-name">土耳其烤鸡肉</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥46</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥69</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:土耳其烤鸡肉披萨" />
<figcaption class="e-description">
<p>特色:烤鸡肉,辣酱</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="ORLEANS">
<h2 class="p-name">奥尔良烤鸡肉</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥46</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥69</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:奥尔良烤鸡肉披萨" />
<figcaption class="e-description">
<p>特色:烤鸡肉,圆菇</p>
</figcaption>
</figure>
</article>
</div>
<div class="twins group">
<article class="h-product" data-cid="QMJQY">
<h2 class="p-name">情满金枪鱼</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥58</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥87</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:情满金枪鱼披萨" />
<figcaption class="e-description">
<p>特色:金枪鱼,酸黄瓜</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="XJTX">
<h2 class="p-name">席卷天虾</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥58</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥87</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:席卷天虾披萨" />
<figcaption class="e-description">
<p>特色:金枪鱼,虾仁</p>
</figcaption>
</figure>
</article>
</div>
<div class="orphan group">
<article class="h-product" data-cid="MGBC">
<h2 class="p-name">蘑菇菠菜</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥35</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥53</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:大力水手披萨" />
<figcaption class="e-description">
<p>特色:菠菜,蘑菇,酸黄瓜</p>
</figcaption>
</figure>
</article>
</div>
<div class="orphan group">
<article class="h-product" data-cid="LLLL">
<h2 class="p-name">榴恋榴莲</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥68</b>/八寸</span></li>
<li class="p-spec"><span><b class="spec-price">¥97</b>/十寸</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/pizza.png" alt="图片:榴恋榴莲披萨" />
<figcaption class="e-description">
<p>特色:榴莲</p>
</figcaption>
</figure>
</article>
</div>
</section>
<section id="meal" class="category">
<h1 class="category__title">饭类</h1>
<div class="orphan group">
<article class="h-product" data-cid="TUDOUROU">
<h2 class="p-name">土豆肉酱千层</h2>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/rice.png" alt="图片:土豆肉酱千层" />
<figcaption class="e-description">
<p>特色:牛肉酱,土豆泥</p>
</figcaption>
</figure>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥42</b>/份</span></li>
</ul>
</article>
</div>
<div class="twins group">
<article class="h-product" data-cid="ITALYJF">
<h2 class="p-name">意式肉酱焗饭</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥42</b>/份</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/rice.png" alt="图片:意式肉酱焗饭" />
<figcaption class="e-description">
<p>特色:牛肉,红酒</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="HHNRJF">
<h2 class="p-name">红绘牛肉</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥35</b>/份</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/rice.png" alt="图片:红绘牛肉焗饭" />
<figcaption class="e-description">
<p>特色:牛肉,红酒</p>
</figcaption>
</figure>
</article>
</div>
<div class="twins group">
<article class="h-product" data-cid="TURKEYJF">
<h2 class="p-name">土耳其烤鸡肉焗饭</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥38</b>/份</span></li>
</ul>
<figure @click="showModal">
<img class="u-photo" src="./static/imgs/turkey_chicken_rice.png" alt="图片:土耳其烤鸡肉焗饭" />
<figcaption class="e-description">
<p>特色:土耳其风味烤鸡肉</p>
</figcaption>
</figure>
</article>
<article class="h-product" data-cid="GLJRJF">
<h2 class="p-name">咖喱鸡肉</h2>
<ul class="spec-tag">
<li class="p-spec"><span><b class="spec-price">¥35</b>/份</span></li>