HomePage.vue
27.2 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
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
<template>
<div class="view">
<!-- 背景 -->
<div
id="background"
:style="`transform: translateX(${translateDistance})`"
></div>
<!-- logo -->
<h1 id="logo"></h1>
<!-- 头部导航 -->
<div id="nav">
<a href="#" id="nav_iPhone" @click.stop="downloadAppStore">
<div id="nav_iPhone_img"></div>
</a>
<a
href="http://xfappht.crgx.net/profile/upload/2023/09/01/xf_app_2023090101_20230901163308A004.apk"
id="nav_android"
>
<div id="nav_android_img"></div>
</a>
<div id="nav_QRCode">
<div id="nav_QRCode_img"></div>
<div id="nav_QRCode_hover">
<div id="nav_QRCode_hover_border">
<div id="nav_QRCode_hover_img"></div>
</div>
</div>
</div>
</div>
<div id="pages">
<div v-show="current == 0" class="page">
<div
class="table_data"
:class="[current == 0 ? 'tableIn' : 'tableOut']"
>
<h2 class="table_title">消防维保助手私有化租用价格表</h2>
<a
href="https://xfwbtg.crgx.net/xfwb_quotation.pdf"
download="消防维保公网报价单.pdf"
class="table_download"
>
<img
class="imgdown"
src="../assets/images/download.png"
alt="下载"
/>
点击下载查看完整报价
</a>
<el-table
:data="tableData"
border
style="width: 100%"
:header-cell-style="{
color: '#fff',
fontSize: '14px',
textAlign: 'center',
}"
@cell-mouse-enter="handleCellMouseEnter"
@cell-mouse-leave="rowCurrent = 0"
>
<el-table-column
prop="index"
label="序号"
align="center"
width="60"
>
<template #default="{ row }">
<span
class="table_text"
:style="{ color: row.index == rowCurrent ? '#000' : '#fff' }"
>{{ row.index }}</span
>
</template>
</el-table-column>
<el-table-column
label="产品名称"
align="center"
width="180"
prop="productName"
>
<template #default="{ row }">
<el-popover placement="top-start" trigger="hover">
<span style="max-width: 600px">{{ row.productName }}</span>
<span
slot="reference"
class="table_text"
:style="{
color: row.index == rowCurrent ? '#000' : '#fff',
}"
>{{ row.productName }}</span
>
</el-popover>
</template>
</el-table-column>
<el-table-column
prop="quantity"
align="center"
label="数量"
width="60"
>
<template #default="{ row }">
<span
class="table_text"
:style="{ color: row.index == rowCurrent ? '#000' : '#fff' }"
>{{ row.quantity }}</span
>
</template>
</el-table-column>
<el-table-column prop="unitPrice" label="单价" width="130">
<template #default="{ row }">
<span
class="table_text"
:style="{ color: row.index == rowCurrent ? '#000' : '#fff' }"
>{{ row.unitPrice }}</span
>
</template>
</el-table-column>
<el-table-column prop="totalPrice" label="总价" width="130">
<template #default="{ row }">
<span
class="table_text"
:style="{ color: row.index == rowCurrent ? '#000' : '#fff' }"
>{{ row.totalPrice }}</span
>
</template>
</el-table-column>
<el-table-column label="参数" align="center" prop="params">
<template #default="{ row }">
<el-popover placement="top-start" trigger="hover">
<div style="max-width: 600px">{{ row.params }}</div>
<span
slot="reference"
class="table_text"
:style="{
color: row.index == rowCurrent ? '#000' : '#fff',
}"
>{{ row.params }}</span
>
</el-popover>
</template>
</el-table-column>
<el-table-column
prop="remark"
label="备注"
width="180"
show-overflow-tooltip
>
<template #default="{ row }">
<span
class="table_text"
:style="{ color: row.index == rowCurrent ? '#000' : '#fff' }"
>{{ row.remark }}</span
>
</template>
</el-table-column>
</el-table>
</div>
</div>
<div v-show="current == 1" class="page" id="page_download">
<div
class="img"
:class="[
current == 1 ? 'animateDownloadHandIn' : 'animateDownloadHandOut',
]"
id="page_download_hand"
></div>
<div id="page_download_show">
<div id="page_download_show_top">
<div
id="page_download_text"
:class="[
current == 1
? 'animateDownloadTextIn'
: 'animateDownloadTextOut',
]"
>
消防维保助手
<div>即时同步新地标规范,强制约束规范填写</div>
</div>
</div>
</div>
</div>
<div v-show="current == 2" class="page" id="page_function1">
<div id="page_function1_text">
<h1
id="page_function1_text_title"
:class="[
current == 2 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
维保原始记录电子化
</h1>
<h2
id="page_function1_text_sub"
:class="[
current == 2 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
实时记录,远程可查。精心打磨,只为你极速体验。
</h2>
</div>
<div id="page_function1_show">
<div id="page_function1_show_top">
<div id="page_function1_book">
<div
id="page_function1_book_page3"
:class="[
current == 2
? 'animateDownloadTextIn'
: 'animateDownloadTextOut',
]"
></div>
<div
id="page_function1_book_page2"
:class="[
current == 2
? 'animateDownloadHandIn'
: 'animateDownloadHandOut',
]"
></div>
<div
id="page_function1_book_page1"
:class="[
current == 2
? 'animateFunction1BookPage1In'
: 'animateFunction1BookPage1Out',
]"
></div>
</div>
</div>
</div>
</div>
<div v-show="current == 3" class="page" id="page_function2">
<div id="page_function2_text">
<h1
id="page_function2_text_title"
:class="[
current == 3 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
电子签名
</h1>
<h2
id="page_function2_text_sub"
:class="[
current == 3 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
甲乙双方共通约束,省时省力节约时间
</h2>
</div>
<div id="page_function2_show">
<div id="page_function2_show_top">
<div id="page_function2_book">
<div
id="page_function2_book_06"
:class="[
current == 3
? 'animateFunction2BookIn'
: 'animateFunction2BookOut',
]"
></div>
<div
id="page_function2_book_05"
:class="[
current == 3
? 'animateFunction2BookIn'
: 'animateFunction2BookOut',
]"
></div>
<div
id="page_function2_book_04"
:class="[
current == 3
? 'animateFunction2BookIn'
: 'animateFunction2BookOut',
]"
>
传统手写
</div>
<div
id="page_function2_book_03"
:class="[
current == 3
? 'animateFunction2BookIn'
: 'animateFunction2BookOut',
]"
>
智能签名
</div>
<div
id="page_function2_book_01"
:class="[
current == 3
? 'animateFunction2BookIn'
: 'animateFunction2BookOut',
]"
>
VS
</div>
</div>
</div>
</div>
</div>
<div v-show="current == 4" class="page" id="page_function3">
<div id="page_function3_text">
<h1
id="page_function3_text_title"
:class="[
current == 4 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
资质证明
</h1>
<h2
id="page_function3_text_sub"
:class="[
current == 4 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
已取得著作权证书,放心使用
</h2>
</div>
<div id="page_function3_show">
<div id="page_function3_show_top">
<div id="page_function3_talk">
<div
id="page_function3_book"
:class="[
current == 4
? 'animateFunction3BookIn'
: 'animateFunction3BookOut',
]"
></div>
</div>
</div>
</div>
</div>
<div v-show="current == 5" class="page" id="page_function3">
<div id="page_function3_text">
<h1
id="page_function3_text_title"
:class="[
current == 5 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
随时打印
</h1>
<h2
id="page_function3_text_sub"
:class="[
current == 5 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
纸质文档随时打印,按需留档
</h2>
</div>
<div id="page_function5_show">
<div id="page_function5_show_top">
<div id="page_function5_talk">
<div
id="page_function5_book"
:class="[
current == 5
? 'animateFunction3BookIn'
: 'animateFunction3BookOut',
]"
></div>
</div>
</div>
</div>
</div>
<div v-show="current == 6" class="page" id="page_function4">
<div id="page_function4_text">
<h1
id="page_function4_text_title"
:class="[
current == 6 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
联系我们
</h1>
<h2
id="page_function4_text_sub"
:class="[
current == 6 ? 'animateTextTitleIn' : 'animateTextTitleOut',
]"
>
<p>广西世纪创软信息技术有限公司</p>
<p>邮箱:weiyi@crgx.net</p>
<p>非©广西消防救援总队出品</p>
</h2>
</div>
<div id="page_function4_show">
<div id="page_function4_show_top">
<div id="page_function4_talk">
<div
id="page_function4_show_title"
:class="[
current == 6 ? 'animateFunction4In' : 'animateFunction4In',
]"
>
广西壮族自治区南宁市青秀万达银座520室
</div>
<div
id="page_function4_book"
:class="[
current == 6
? 'animateFunction4BookIn'
: 'animateFunction4BookOut',
]"
></div>
</div>
</div>
</div>
</div>
</div>
<!-- 左右箭头 -->
<div
v-show="current !== 6"
id="arrow_right"
@click="toggleCurrent(current + 1)"
>
<div id="arrow_right_height"></div>
</div>
<div
v-show="current !== 0"
id="arrow_left"
:class="{ animateBaseIn: current !== 0, animateBaseOut: current === 0 }"
@click="toggleCurrent(current - 1)"
>
<div id="arrow_left_height"></div>
</div>
<!-- 按钮 -->
<div id="pageControl">
<div
v-for="(item, index) in 7"
:key="item"
:class="{ activeControl: current == index }"
class="pageControl"
id="pageControl_button"
@click="toggleCurrent(index)"
></div>
</div>
</div>
</template>
<script>
export default {
name: "HomePage",
data() {
return {
current: 0,
rowCurrent: 0,
translateDistance: "0%",
tableData: [
{
index: 1,
productName:
"维保助手后台端服务(电脑端)(包含公司端、工程师端、后台监管端)",
quantity: 1,
unit: "年",
unitPrice: "¥80,000.00",
totalPrice: "¥80,000.00",
params:
"企业管理功能:管理产品注册入驻的消防技术服务机构,包含:公司名称、省、市、县、地址、营业执照代码、审核状态查询,可对注册的技术服务机构信息进行管理、对企业增删改查,人员管理:管理产品中入驻的人员信息、包含:姓名、邮箱、性别、出生日期、证件号码、手机号码、审核状态查询;及增删改查、证书管理:对产品中可选择性证书;证书类型、证书名称、级别进行管理包含:证书类型、证书名称、证书级别进行筛选查询及增删改查;消防 app:管理 app 版本及发布 app 更新;可对 app 版本进行增删改查、企业人员管理:对企业人员进行管理,包含:企业、个人、状态(在职、离职)查询及增删改查、设备管理:管理设备所属公司、规格型号、生产厂家、购买时间、有效期、校准检定证书编号,状态进行增删改查,包含:设备名称、所属公司、规格型号、生产厂家、状态、购买时间、有效期开始时间、有效期结束时间、备注、校准检定证书编号查询、对设备信息进行增删改查;维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询。通知公告管理:包含发布通知公告,电脑端、安卓端、小程序端、苹果手机端接收;包含对公告标题、操作人员、类型、公告状态条件查询、用户管理模块:分级分权用户管理模块,可对用户账号、用户昵称、openid、邮箱、手机号、状态、创建时间进行查询,对用户进行增删改查;角色管理模块、配置产品内用户角色,对角色进行增删改查、包含角色名称、权限字符、角色状态、创建时间进行查询;、菜单管理:管理人员权限菜单模块,包含:菜单名称、状态查询、对菜单进行进行增删改查。部门管理模块:用户部门管理、用于管理系统操作部门权限区分;包哈;部门名称、状态查询、对部门进行增删改查、岗位管理:用户岗位管理,用于管理系统岗位、进行权限区分、包含:岗位编码、岗位名称、状态查询,对岗位进行增删改查;字典管理:对系统参数进行管理,包含字典名称、字典类型、状态、创建时间进行查询;参数设置:用于管理系统参数,包含参数名称、参数键名、系统内置、创建时间查询,对参数增删改查;日志管理:对系统的操作进行日志查询、登录日志:对系统用户登录记录进行查询、系统监控:在线用户:对系统在线用户进行查询、定时任务:系统定时任务设定,对系统执行定时任务、包含对任务名称、任务组名、任务状态进行查询,包含对任务的增删改查、缓存监控:对系统 redis 版本进行展示监控、查询内存消耗、缓存列表:输出缓存列表内容配置缓存内容、维保工具箱:维保系统配置、对维保系统进行配置,包含系统名称、类型、版本号配置查询,对维保系统进行增删改查;检查项目配置:对维保系统检查项目进行配置,对项目名称、项目英文名称、排序、合并行数、是否展示项目名称进行查询,可对维保检查项目进行增删改查。",
remark:
"版权租用单价 1 年期(必选项),包含 2022 年发布新地标原始记录表内容",
},
{
index: 2,
productName: "小程序端(包含公司端、工程师端、监管端)",
quantity: 1,
unit: "年",
unitPrice: "¥50,000.00",
totalPrice: "¥50,000.00",
params:
"公司端:企业人员管理,管理自公司入职人员、对企业人员进行管理,包含:企业、个人、状态(在职、离职)查询及增删改查、设备管理:管理设备所属公司、规格型号、生产厂家、购买时间、有效期、校准检定证书编号,状态进行增删改查,包含:设备名称、所属公司、规格型号、生产厂家、状态、购买时间、有效期开始时间、有效期结束时间、备注、校准检定证书编号查询、对设备信息进行增删改查;维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询。通知公告:查询发布的通知公告。工程师端:个人中心:个人信息编辑、包含证书、基础信息,维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询;通知公告:查询后台发送的通知公告信息监管端:参考电脑端版本,无详细系统管理功能",
remark: "版权租用单价 1 年期",
},
{
index: 3,
productName: "安卓app 端(包含公司端、工程师端、监管端)",
quantity: 1,
unit: "年",
unitPrice: "¥50,000.00",
totalPrice: "¥50,000.00",
params:
"公司端:企业人员管理,管理自公司入职人员、对企业人员进行管理,包含:企业、个人、状态(在职、离职)查询及增删改查、设备管理:管理设备所属公司、规格型号、生产厂家、购买时间、有效期、校准检定证书编号,状态进行增删改查,包含:设备名称、所属公司、规格型号、生产厂家、状态、购买时间、有效期开始时间、有效期结束时间、备注、校准检定证书编号查询、对设备信息进行增删改查;维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询。通知公告:查询发布的通知公告。工程师端:个人中心:个人信息编辑、包含证书、基础信息,维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询;通知公告:查询后台发送的通知公告信息监管端:参考电脑端版本,无详细系统管理功能",
remark: "版权租用单价 1 年期",
},
{
index: 4,
productName: "苹果app 端(包含公司端、工程师端、监管端)",
quantity: 1,
unit: "年",
unitPrice: "¥50,000.00",
totalPrice: "¥50,000.00",
params:
"公司端:企业人员管理,管理自公司入职人员、对企业人员进行管理,包含:企业、个人、状态(在职、离职)查询及增删改查、设备管理:管理设备所属公司、规格型号、生产厂家、购买时间、有效期、校准检定证书编号,状态进行增删改查,包含:设备名称、所属公司、规格型号、生产厂家、状态、购买时间、有效期开始时间、有效期结束时间、备注、校准检定证书编号查询、对设备信息进行增删改查;维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询。通知公告:查询发布的通知公告。工程师端:个人中心:个人信息编辑、包含证书、基础信息,维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询;通知公告:查询后台发送的通知公告信息监管端:参考电脑端版本,无详细系统管理功能",
remark: "版权租用单价 1 年期",
},
{
index: 5,
productName: "鸿蒙端app",
quantity: 1,
unit: "年",
unitPrice: "¥50,000.00",
totalPrice: "¥50,000.00",
params:
"公司端:企业人员管理,管理自公司入职人员、对企业人员进行管理,包含:企业、个人、状态(在职、离职)查询及增删改查、设备管理:管理设备所属公司、规格型号、生产厂家、购买时间、有效期、校准检定证书编号,状态进行增删改查,包含:设备名称、所属公司、规格型号、生产厂家、状态、购买时间、有效期开始时间、有效期结束时间、备注、校准检定证书编号查询、对设备信息进行增删改查;维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询。通知公告:查询发布的通知公告。工程师端:个人中心:个人信息编辑、包含证书、基础信息,维保原始记录:对维保原始记录进行增删改查、导出操作,包含:项目名称、原始记录编号、维护保养企业、原始记录类型、状态、消防设施使用管理单位、现场维保日期查询;通知公告:查询后台发送的通知公告信息",
remark: "版权租用单价 1 年期",
},
{
index: 6,
productName: "维护维保服务",
quantity: 1,
unit: "年",
unitPrice: "¥50,000.00",
totalPrice: "¥50,000.00",
params:
"维护维保服务,故障处理,应用答疑,bug 修复,不包含新增功能项,包含全端",
remark:
"维护维保服务,故障处理,应用答疑,bug 修复,不包含新增功能项,包含全端",
},
],
};
},
methods: {
toggleCurrent(index) {
this.translateDistance = `-${index * 7.3}%`;
if (index === 6) {
this.translateDistance = `-3400px`;
}
this.current = index;
},
handleCellMouseEnter({ index }) {
this.rowCurrent = index;
},
downloadAppStore() {
this.$message({
message: "ios版本正在开发中",
type: "info",
});
},
},
};
</script>
<style scoped>
/*最外层透明*/
:deep(.el-table) {
background-color: transparent;
}
:deep(.el-table__expanded-cell) {
background-color: transparent;
}
:deep(.el-table th) {
background-color: transparent;
}
:deep(.el-table tr) {
background-color: transparent;
}
:deep(.el-table td) {
background-color: transparent;
}
.table_data {
position: absolute;
top: 52%;
left: 50%;
width: 80%;
transform: translate(-50%, -50%);
transition: opacity 0.6s;
}
.tableIn {
-webkit-animation: tableIn 0.6s;
animation: tableIn 0.6s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
}
.tableOut {
-webkit-animation: tableOut 0.6s;
animation: tableOut 0.6s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-timing-function: ease;
animation-timing-function: ease;
}
@keyframes tableIn {
0% {
opacity: 0;
}
90% {
opacity: 1;
}
100% {
opacity: 1;
}
}
@keyframes tableOut {
0% {
opacity: 1;
}
90% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.table_title {
font-family: download;
text-align: left;
color: white;
font-weight: 500;
font-size: 120%;
text-align: center;
border: 1px solid #fff;
margin: 0;
padding: 10px;
border-bottom: 0;
text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
}
.table_download {
display: flex;
align-items: center;
justify-content: center;
font-family: download;
text-align: left;
color: white;
font-weight: 500;
font-size: 100%;
text-align: center;
border: 1px solid #fff;
padding: 10px;
border-bottom: 0;
text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-decoration: none;
}
.imgdown {
width: 24px;
height: 24px;
margin-right: 10px;
}
.table_text {
font-family: download;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
text-align: left;
color: white;
width: 100%;
height: 40px;
font-size: 90%;
text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
text-rendering: geometricPrecision;
-webkit-font-smoothing: antialiased;
}
</style>