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
| <template>
| <div class="park_state">
| <div class="aside" style="margin-left: 30px;">
| <div class="asideContent">
| <div class="part">
| <div class="header">
| <span class="title1">实际用电量监控</span>
| </div>
| <chart :option-in="chartOptions1" />
| </div>
| <div class="part">
| <div class="header">
| <span class="title1">用电分布</span>
| </div>
| <chart :option-in="chartOptions2" />
| </div>
| <div class="part">
| <div class="header">
| <span class="title1">月度节能统计</span>
| </div>
| <chart :option-in="chartOptions3" />
| </div>
| </div>
| </div>
| <div class="aside" style="margin-right: 30px;">
| <div class="asideContent">
| <div class="part">
| <div class="header">
| <span class="title1">上月需量偏差率</span>
| </div>
| <chart :option-in="chartOptions4" />
| </div>
| <div class="part">
| <div class="header">
| <span class="title1">需量符合度</span>
| </div>
| <chart :option-in="chartOptions5" />
| </div>
| <div class="part">
| <div class="header">
| <span class="title1">需量预测</span>
| </div>
| <chart :option-in="chartOptions6" />
| </div>
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import chart from "@/components/chart.vue";
| import 'echarts-liquidfill'
| export default {
| name: "park_state",
| components: {
| chart
| },
| data() {
| return {
| chartOptions1: {},
| chartOptions2: {},
| chartOptions3: {},
| chartOptions4: {},
| chartOptions5: {},
| chartOptions6: {},
|
| }
| },
| methods: {
| initChart1() {
| let seriesData = [
| [15000, 23000, 22400, 21800, 13500, 14700, 24000, 13500],
| [10000, 13000, 12400, 11800, 3500, 10000, 16000, 13000]
| ]
| let axisData = [
| '0:00', '4:00', '8:00', '12:00', '16:00', '20:00', '24:00'
| ]
| let option = {
| //你的代码
| color: ["#FFFF00", "#40E0D0"],
| tooltip: {
| show: true,
| trigger: 'axis'
| },
| legend: {
| right: '5%',
| top: '3%',
| show: true,
| textStyle: {
| color: 'rgba(212, 232, 254, 1)',
| fontSize: 12
| },
| itemWidth: 12,
| itemHeight: 4,
| icon: 'roundRect',
| },
| xAxis: {
| type: "category",
| axisLine: {
| lineStyle: {
| width: 1,
| color: "#707070"
| }
| },
| axisTick: {
| show: false
| },
|
| axisLine: { //坐标轴轴线相关设置。数学上的x轴
| show: true,
| lineStyle: {
| color: 'rgba(101, 124, 168, 0.4)'
| },
| },
| axisLabel: {
| textStyle: {
| fontSize: 12,
| color: "#fff"
| }
| },
| data: axisData
| },
| yAxis: {
| name: '单位: kwh',
| nameTextStyle: {
| color: "#fff",
| fontSize: 12,
| },
| type: "value",
| axisLine: {
| lineStyle: {
| color: "#707070"
| }
| },
| axisTick: {
| show: false
| },
| splitLine: {
| show: false
| },
| axisLabel: {
| textStyle: {
| fontSize: 12,
| color: "#fff"
| }
| }
| },
| grid: {
| left: "16%",
| top: "16%",
| right: "8%",
| bottom: "16%"
| },
| series: [
| {
| name: '均值',
| data: seriesData[0],
| type: "line",
| showSymbol: false,
| },
| {
| name: '实际值',
| data: seriesData[1],
| type: "line",
| showSymbol: false,
| }
| ]
| };
|
| this.chartOptions1 = option
|
| },
| initChart2() {
| //展示数据
| const optionData = [];
| //扇形图颜色数据
| const colorList = [
| { color1: 'rgba(76,167,163,0.9)', color2: 'rgba(90,255,223,1)' },
| { color1: 'rgba(65,149,99,0.9)', color2: 'rgba(115,255,145,1)' },
| { color1: 'rgba(98,167,131,0.9)', color2: 'rgba(153,255,179,1)' },
| { color1: 'rgba(127,177,108,0.9)', color2: 'rgba(193,255,138,1)' },
| { color1: 'rgba(190,164,75,0.9)', color2: 'rgba(255,207,74,1)' },
| { color1: 'rgba(165,123,98,0.9)', color2: 'rgba(254,178,128,1)' },
| { color1: 'rgba(105,123,186,0.9)', color2: 'rgba(151,176,255,1)' },
| { color1: 'rgba(106,102,173,0.9)', color2: 'rgba(164,151,255,1)' },
| { color1: 'rgba(106,76,178,0.9)', color2: 'rgba(159,110,254,1)' },
| { color1: 'rgba(134,109,188,0.9)', color2: 'rgba(180,143,241,1)' },
| { color1: 'rgba(54,122,194,0.9)', color2: 'rgba(76,174,254,1)' },
| { color1: 'rgba(97,145,197,0.9)', color2: 'rgba(131,199,255,1)' },
| ];
| //请求的数据
| const resultData = [
| {
| name: '公共设备',
| value: 456,
| },
| {
| name: '冷冻站',
| value: 421,
| },
| {
| name: '用户设备',
| value: 245,
| },
| {
| name: '照明插座',
| value: 417,
| },
|
|
| ];
| let sum = 0;
| resultData.forEach(item => {
| sum += item.value;
| })
| resultData.forEach(item => {
| optionData.push({ value: item.value, name: item.name });
| optionData.push({ name: '', value: sum / 100, itemStyle: { color: 'transparent' } });
| })
| let option = {
| //你的代码
| tooltip: {
| trigger: 'item',
|
| },
| series: [
| {
| type: 'pie',
| roseType: 'radius',
| radius: ['20%', '90%'],
| center: ['50%', '50%'],
| label: {
| position: 'inside',
| formatter(item) {
| if (item.name === '') {
| return '';
| }
| return `${item.name}\n${item.value}kwh\n${item.percent}%`;
| },
| textStyle: {
| fontSize: 12,
| color: '#ffffff'
| }
| },
| labelLine: {
| show: false,
| },
| itemStyle: {
| normal: {
| color(params) {
| return colorList[parseInt(params.dataIndex / 2)].color1;
| }
| }
| },
| z: 3,
| data: optionData,
| },
| {
| type: 'pie',
| roseType: 'radius',
| radius: ['20%', '92%'],
| center: ['50%', '50%'],
| label: {
| show: false,
| },
| labelLine: {
| show: false,
| },
| itemStyle: {
| normal: {
| color(params) {
| return colorList[parseInt(params.dataIndex / 2)].color2;
| }
| }
| },
| z: 2,
| data: optionData,
| }
| ]
| };
| this.chartOptions2 = option
| },
| initChart3() {
| let seriesData = [
| [15000, 23000, 22400, 21800, 13500, 14700, 24000],
| [10000, 13000, 12400, 11800, 3500, 10000, 16000],
| [23, 12, -3, -8, 8, 18, 26]
| ]
| let axisData = [
| '1', '3', '5', '7', '9', '11', '12'
| ]
| let option = {
| //你的代码
| color: ["#FFFF00", "#40E0D0", "#A9A9A9"],
| tooltip: {
| show: true,
| trigger: 'axis'
| },
| legend: {
| right: 'center',
| top: '3%',
| show: true,
| textStyle: {
| color: 'rgba(212, 232, 254, 1)',
| fontSize: 12
| },
| itemWidth: 12,
| itemHeight: 4,
| icon: 'roundRect',
| },
| xAxis: {
| type: "category",
| axisLine: {
| lineStyle: {
| width: 1,
| color: "#707070"
| }
| },
| axisTick: {
| show: false
| },
|
| axisLine: { //坐标轴轴线相关设置。数学上的x轴
| show: true,
| lineStyle: {
| color: 'rgba(101, 124, 168, 0.4)'
| },
| },
| axisLabel: {
| textStyle: {
| fontSize: 12,
| color: "#fff"
| }
| },
| data: axisData
| },
| yAxis:
| [
| {
| name: '单位: kwh',
| nameTextStyle: {
| color: "#fff",
| fontSize: 12,
| },
| type: "value",
| axisLine: {
| lineStyle: {
| color: "#707070"
| }
| },
| axisTick: {
| show: false
| },
| splitLine: {
| show: false
| },
| axisLabel: {
| textStyle: {
| fontSize: 12,
| color: "#fff"
| }
| }
| },
| {
| name: '单位: %',
| nameTextStyle: {
| color: "#fff",
| fontSize: 12,
| },
| max: 50,
| min: -50,
| type: "value",
| axisLine: {
| show: false,
| },
| axisTick: {
| show: false
| },
| splitLine: {
| show: false
| },
| axisLabel: {
| textStyle: {
| fontSize: 12,
| color: "#fff"
| }
| }
| },
| ],
|
|
| grid: {
| left: "16%",
| top: "16%",
| right: "8%",
| bottom: "16%"
| },
| series: [
| {
| name: '均值',
| data: seriesData[0],
| type: "line",
| showSymbol: false,
| },
| {
| name: '实际值',
| data: seriesData[1],
| type: "line",
| showSymbol: false,
| },
| {
| name: '同比节能',
| data: seriesData[2],
| yAxisIndex: 1,
| type: "line",
| showSymbol: false,
| },
| ]
| };
| this.chartOptions3 = option
| },
| initChart4() {
| var attrs = [{
| 'name': 'F14',
| 'center_l': '25%'
| }, {
| 'name': 'F19',
| 'center_l': '75%'
| }]
| var datas = [
| [0.34, 0.34, 0.34],
| [0.1, 0.1, 0.1]
| ];
|
|
| var series = [];
| for (var i = 0; i < datas.length; i++) {
| var item = {
| type: 'liquidFill',
| radius: '60%',
| name: attrs[i].name,
| center: [attrs[i].center_l, '50%'],
| // shape: 'roundRect',
| data: datas[i],
| backgroundStyle: {
| color: {
| type: 'linear',
| x: 1,
| y: 0,
| x2: 0.5,
| y2: 1,
| colorStops: [{
| offset: 1,
| color: 'rgba(4,33,77, 0)'
| }, {
| offset: 0.5,
| color: 'rgba(4,33,77, .5)'
| }, {
| offset: 0,
| color: 'rgba(4,33,77, 1)'
| }],
| globalCoord: false
| },
| },
| outline: {
| borderDistance: 5,
| itemStyle: {
| borderWidth: 5,
| borderColor: {
| type: 'linear',
| x: 0,
| y: 0,
| x2: 0,
| y2: 1,
| colorStops: [{
| offset: 0,
| color: 'rgba(50,115,233, 1)'
| }, {
| offset: 0.5,
| color: 'rgba(50,115,233, .5)'
| }, {
| offset: 1,
| color: 'rgba(50,115,233, 1)'
| }],
| globalCoord: false
| },
| shadowBlur: 10,
| shadowColor: '#000',
| }
| },
| color: [{
| type: 'linear',
| x: 0,
| y: 0,
| x2: 1,
| y2: 0,
| colorStops: [{
| offset: 1,
| color: 'rgba(72,107,254, 0.8)'
| }, {
| offset: 0.75,
| color: 'rgba(21,216,238, .5)'
| }, {
| offset: 0,
| color: 'rgba(72,107,254, 1)'
| }],
| globalCoord: false
| }],
| label: {
| normal: { //此处没有生效,本地生效
| textStyle: {
| fontSize: 24,
| color: '#e6e6e6',
| },
| formatter: (params) => {
| return `${params.seriesName}\n${params.value * 100}%`
| }
| }
| }
| }
| series.push(item);
| }
|
| let option = {
| graphic: [],
| series: series
| };
| this.chartOptions4 = option
| },
| initChart5() {
| let option = {
| series: [
| //middle
| {
| type: "gauge",
| center: ["26%", "50%"], //中间位置
| radius: "60%",
| axisLine: {
| //仪表盘的带
| lineStyle: {
| width: 8, //带宽
| color: [
| [0.2, "#67e0e3"],
| [0.8, "#37a2da"],
| [1, "#fd666d"],
| ],
| },
| },
| //仪表盘指针
| pointer: {
| width: 5, //指针宽
| length: 65, //指针长
| itemStyle: {
| color: "auto",
| },
| },
| axisTick: {
| distance: 0,
| length: 6,
| lineStyle: {
| color: "#fff",
| width: 2,
| },
| },
| splitLine: {
| distance: -10,
| length: 10,
| lineStyle: {
| color: "#fff",
| width: 4,
| },
| },
| //仪表盘刻度的数字
| axisLabel: {
| color: "auto", //颜色跟随原色
| distance: -15, //距离
| fontSize: 10, //字号
| },
| //进度,也是中间的数字
| detail: {
| valueAnimation: true, //动画
| fontSize: 18, //字号
| formatter: "{value}",
| color: "auto", //自适应颜色
| fontWeight: 550,
| },
| //自定义的文字
| title: {
| offsetCenter: [0, "100%"],
| color: '#fff',
| fontSize: 14,
| fontWeight: 550,
| fontStyle: "italic", //斜体
| },
| data: [
| {
| value: 86,
| name: "本月达标值%",
| },
| ],
| },
| //middle
| {
| type: "gauge",
| center: ["74%", "50%"], //中间位置
| radius: "60%",
| axisLine: {
| //仪表盘的带
| lineStyle: {
| width: 8, //带宽
| color: [
| [0.2, "#67e0e3"],
| [0.8, "#37a2da"],
| [1, "#fd666d"],
| ],
| },
| },
| //仪表盘指针
| pointer: {
| width: 5, //指针宽
| length: 65, //指针长
| itemStyle: {
| color: "auto",
| },
| },
| axisTick: {
| distance: 0,
| length: 6,
| lineStyle: {
| color: "#fff",
| width: 2,
| },
| },
| splitLine: {
| distance: -10,
| length: 10,
| lineStyle: {
| color: "#fff",
| width: 4,
| },
| },
| //仪表盘刻度的数字
| axisLabel: {
| color: "auto", //颜色跟随原色
| distance: -15, //距离
| fontSize: 10, //字号
| },
| //进度,也是中间的数字
| detail: {
| valueAnimation: true, //动画
| fontSize: 18, //字号
| formatter: "{value}",
| color: "auto", //自适应颜色
| fontWeight: 550,
| },
| //自定义的文字
| title: {
| offsetCenter: [0, "100%"],
| color: '#fff',
| fontSize: 14,
| fontWeight: 550,
| fontStyle: "italic", //斜体
| },
| data: [
| {
| value: 73,
| name: "上月达标值%",
| },
| ],
| },
| ],
| };
| this.chartOptions5 = option
| },
| initChart6() {
| let xLabel = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'];
| let dataValue = [20, 30, 40, 35, 34, 15];
| let dataValue1 = [...new Array(dataValue.length - 1).fill('-'), dataValue[dataValue.length - 1], 12, 25, 34, 42, 20, 30,];
| let option = {
| tooltip: {
| trigger: 'axis',
| axisPointer: {
| lineStyle: {
| color: 'rgb(126,199,255)',
| },
| },
| formatter: (params) => {
| let htmlStr = '';
| const valMap = {};
| for (let i = 0; i < params.length; i++) {
| const param = params[i];
| const xName = param.name; //x轴的名称
| const seriesName = param.seriesName; //图例名称
| const value = param.value; //y轴值
| const color = param.color; //图例颜色
| //过滤无效值
| if ((!value) || value === '-') {
| continue;
| }
|
| //过滤重叠值
| if (valMap[seriesName] == value) {
| continue;
| }
|
| if (i === 0) {
| htmlStr += xName + '<br/>'; //x轴的名称
| }
| htmlStr += '<div>';
| //为了保证和原来的效果一样,这里自己实现了一个点的效果
| htmlStr +=
| '<span style="margin-right:5px;display:inline-block;width:10px;height:10px;border-radius:5px;background-color:' +
| color +
| ';"></span>';
|
| //圆点后面显示的文本
| htmlStr += seriesName + ':' + value;
|
| htmlStr += '</div>';
| // 存储重复数据
| valMap[seriesName] = value;
| }
| return htmlStr;
| }
| },
| legend: {
| show: true,
| top: '10%',
| itemWidth: 30, // 图例标记的图形宽度。
| // itemGap: 20, // 图例每项之间的间隔。
| itemHeight: 10, // 图例标记的图形高度。
| textStyle: {
| color: '#fff',
| fontSize: 14,
| padding: [0, 8, 0, 8]
| }
| },
| grid: {
| top: '20%',
| left: '14%',
| right: '8%',
| bottom: '14%',
| },
| xAxis: [
| {
| type: 'category',
| boundaryGap: false,
| axisLine: {
| lineStyle: {
| width: 1,
| color: "#707070"
| }
| },
| axisLabel: {
| //坐标轴刻度标签的相关设置
| textStyle: {
| color: '#FFFFFF',
| fontSize: 12,
| },
| },
| splitLine: {
| show: false,
| lineStyle: {
| color: 'rgba(101, 124, 168, 0.4)'
| },
| },
| axisTick: {
| show: false,
| },
| data: xLabel,
| },
| ],
| yAxis: [
| {
| name: "单位: %",
| nameTextStyle: {
| color: "#fff",
| fontSize: 12,
| padding: [60, 0, 0, 0],
| },
| // minInterval: 1,
| type: 'value',
| splitLine: {
| show: false,
| },
| axisLine: {
| show: true,
| lineStyle: {
| color: '#707070',
| },
| },
| axisLabel: {
| show: true,
| textStyle: {
| color: '#fff',
| fontSize: 14
| }
| },
| axisTick: {
| show: false,
| },
| },
| ],
| series: [
| {
| name: '实际需量',
| type: 'line',
| lineStyle: {
| normal: {
| width: 3,
| color: '#40E0D0', // 线条颜色
| },
| },
| symbolSize: 8, //设定实心点的大小
| data: dataValue,
| showSymbol: false,
| areaStyle: { //区域填充样式
| normal: {
| //线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
| color: new this.$echarts.graphic.LinearGradient(0, 0, 0, 1, [{
| offset: 0,
| color: "rgba(63, 119, 163,.8)"
| },
| {
| offset: 1,
| color: "rgba(63, 119, 163, 0.1)"
| }
| ], false),
| shadowColor: 'rgba(63, 119, 163, 0.5)', //阴影颜色
| shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
| }
| },
|
| },
| {
| name: '预测需量',
| type: 'line',
| lineStyle: {
| normal: {
| width: 3,
| color: '#ffba00', // 线条颜色
| },
| },
| itemStyle: {
| normal: {
| lineStyle: {
| type: 'dotted'
| }
| },
|
| },
| data: dataValue1,
| showSymbol: false,
|
| }
| ]
| }
| this.chartOptions6 = option
| },
|
| },
| mounted() {
| this.initChart1()
| this.initChart2()
| this.initChart3()
| this.initChart4()
| this.initChart5()
| this.initChart6()
| },
|
|
| }
| </script>
|
| <style scoped lang="less">
| .park_state {
| height: 100%;
| width: 100%;
| position: absolute;
| z-index: 100;
| top: 0px;
| display: flex;
| flex-direction: row;
| justify-content: space-between;
| pointer-events: none;
|
| .aside {
| width: 20%;
| height: calc(100% - 128px);
| padding-top: 80px;
| padding-bottom: 60px;
|
| .asideContent {
| background-color: rgba(24, 47, 78, 0.5);
| border-radius: 10px;
| pointer-events: all;
| padding-bottom: 16px;
| height: 100%;
|
| display: flex;
| flex-direction: column;
|
| .part {
| width: 100%;
| flex: 1;
| display: flex;
| flex-direction: column;
| flex-shrink: 0;
|
| .header {
| width: 304px;
| height: 27.5px;
| margin-left: 20px;
| margin-top: 20px;
| background-image: url("~@/assets/img/menuTitle1.png");
| background-repeat: no-repeat;
| background-size: 100% 100%;
| font-family: PangMenZhengDao;
| text-shadow: 0px 6px 9px #20618e;
| display: flex;
| flex-direction: row;
| align-items: center;
| flex-shrink: 0;
| align-self: flex-start;
|
| .title1 {
| margin-left: 30px;
| font-size: 15px;
| color: #ffffff;
| }
|
| }
| }
| }
|
|
| }
| }
| </style>
|
|