路泰科技体检小程序UI设计新版本
wwl
2025-07-30 4e671437d52dd87946c0e38d334fce7a7c17d8e2
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
<template>
    <view style="width: 100%;height:var(--window-bottom);">
        <!-- 图片 -->
        <div class="picture">
            <img class="picture_img" src="../img/aaa.png" alt="">
        </div>
 
        <!-- 标题/价格 -->
        <div class="caption">
            <div class="price">
                <div class="price_style">
                    <div class="price_txt1">¥{{pacById.price || ""}}</div>
                    <div class="price_txt2">起</div>
                    <div class="price_txt3">¥{{pacById.yuanjia}}</div>
                </div>
                <div>
                    <div class="price_txt4">共{{pacById.proNumber}}项检查项</div>
                </div>
            </div>
 
            <div class="title">
                <div>
                    <span class="title_txt">{{pacById.pacName}}</span>
                </div>
                <!-- <div class="title_style" @click="shareToggle">
                    <img class="title_img" src="https://ltpeis.xaltjdkj.cn:5502/static/fenxiang.png" alt="">
                    <span class="title_txt1">分享</span>
                </div> -->
            </div>
        </div>
 
        <div class="bj"></div>
 
        <!-- 服务 -->
        <!--     <div class="service">
            <div>
                <span class="service_txt1">服务</span>
            </div>
            <div class="service">
                <img class="service_img" src="https://ltpeis.xaltjdkj.cn:5502/static/duigou.png" alt="">
                <span class="service_txt1">一键改约</span>
            </div>
            <div class="service">
                <img class="service_img" src="https://ltpeis.xaltjdkj.cn:5502/static/duigou.png" alt="">
                <span class="service_txt1">未使用可退</span>
            </div>
            <div class="service">
                <img class="service_img" src="https://ltpeis.xaltjdkj.cn:5502/static/duigou.png" alt="">
                <span class="service_txt1">专业医护</span>
            </div>
        </div> -->
 
        <!-- 使用人群 -->
        <div class="use">
 
            <div class="introduction_txt">套餐简介</div>
 
            <div class="use_style1">
                <span class="use_txt">使用人群</span>
            </div>
            <div class="use_cent">{{pacById.pacRemark}}</div>
            <div class="use_style">
                <div class="use_style2">
                    <img class="use_img" src="https://ltpeis.xaltjdkj.cn:5502/static/1.png" alt="">
                    <span class="use_text">中青年</span>
                </div>
                <div class="use_style2">
                    <img class="use_img" src="https://ltpeis.xaltjdkj.cn:5502/static/2.png" alt="">
                    <span class="use_text">中老年</span>
                </div>
                <div class="use_style2">
                    <img class="use_img" src="https://ltpeis.xaltjdkj.cn:5502/static/3.png" alt="">
                    <span class="use_text">防癌筛查</span>
                </div>
            </div>
        </div>
 
        <!--套餐项目 -->
 
        <!-- <uni-section title="套餐项目" type="line">
            <uni-list v-for="(item,index) in proList" :key="index">
                <uni-list-item title="item.proName" />
                <uni-list-item title="列表文字" rightText="右侧文字" />
                <uni-list-item title="列表文字" note="列表描述信息" rightText="右侧文字" />
            </uni-list>
        </uni-section> -->
        <!--     <uni-table ref="table" :loading="loading" border stripe emptyText="暂无更多数据">
            <uni-tr>
                <uni-th width="25" align="center">项目</uni-th>
                <uni-th width="55" align="center">包含项目</uni-th>
                <uni-th width="40" align="center">检查意义</uni-th>
            </uni-tr>
            <uni-tr v-for="(item,index) in proList" :key="index">
                <uni-td>{{item.proName}}</uni-td>
                <uni-td>
                    <view class="name">{{item.allSonProName}}</view>
                </uni-td>
                <uni-td align="center">{{item.proMeaning}}</uni-td>
            </uni-tr>
        </uni-table> -->
 
        <view class="order-bottom">
            <div class="characteristic">
                <span class="characteristic_txt">套餐项目</span>
            </div>
            <view class="total">
                <view class="status" v-for="(item, index) in pacById.tjProjectList" :key="index">
                    <view class="small">
 
                    </view>
                    <view class="name">
                        {{item.proName}}
                    </view>
                    <view class="price2">
                        ¥{{item.proPrice}}
                    </view>
                </view>
            </view>
        </view>
 
 
        <!--         <view>
            <uni-section title="购买使用流程" type="line" padding>
                <uni-steps :options="list1" :active="active" />
            </uni-section> -->
 
        <!-- <button type="primary" size="mini" style="margin: 30px 10px; width: 100px;" @click="change">改变状态</button> -->
        <!-- </view> -->
        <view class="all">
            <view class="zysx">
                体检前注意事项
            </view>
            <view class="center">
                1、如您有抽血项目,体检当天早晨请空腹到店,体检前一晚8点之后不可再进食(可少量饮水)。</br>
                2、无性生活史的女性及孕妇请勿做妇科检查。</br>
                3、备孕期女性或孕妇禁止做各类放射检查。</br>
                4、以上为一般体检套餐的注意事项,如您的体检项目比较特殊,请提前咨询在线客服或拨打客服电话了解400-0000-000。
            </view>
 
            <div class="warm">
                <div><text style="color: #A20048;">温馨提示:</text>该套餐内所含体检项目的具体预约和使用过程中如果有其他问题,请提前咨询门店,由此给您带来的不便敬请谅解</div>
            </div>
        </view>
        <!-- 底部弹窗 -->
        <view class="example-body box">
            
            <uni-popup ref="popup" type="bottom" background-color="#fff" style="height: 200px;" class="popup">
                <div >
                    <img class="text_img" src="../img/text.png" alt="">
                </div>
                <view class="box2">
                    <view class="box_name">{{pacById.pacName}}</view>
                    <view style="display: flex;align-items: flex-end;">
                        <div  class="box_pic">¥{{pacById.price}}</div>
                        <div class="box_qi">起</div>
                        <!-- <div class="price_txt3">¥{{pacById.yuanjia}}</div> -->
                    </view>
                    <view style="display: flex;">
                        <view class="geren" @click="tiaozhuan(pacById.pacId)">
                            <view style="margin-top: 4px;margin-left: 4px;">个人预约</view>
                        </view>
                        <view class="tuandui" @click="timetiaozhuan">
                            <view style="margin-top: 4px;margin-left: 4px;">团队预约</view>
                        </view>
                    </view>
                </view>
 
 
            </uni-popup>
        </view>
 
        <!-- 购物车 -->
        <uni-goods-nav class="shopping" :fill="true" :options="Options" :button-group="btnGroup" @click="onClick"
            @buttonClick="buttonClick" />
        <!-- 分享 -->
        <!-- <uni-popup ref="share" type="share" safeArea backgroundColor="#fff">
                <uni-popup-share></uni-popup-share>
            </uni-popup> -->
 
    </view>
</template>
 
<script>
    import {
        getprojectListByPacId
    } from "@/api/system/package";
    import {
        addMyCart,
        getIsPay
    } from "@/api/system/cart";
    export default {
        data() {
            return {
                active: 0,
                list1: [{
                    title: '选择套餐'
                }, {
                    title: '预约时间'
                }, {
                    title: '到店体检'
                }, {
                    title: '查询报告'
                }],
                pacById: {},
                proList: [],
                Options: [{
                    icon: 'cart',
                    text: '购物车',
                }, ],
                btnGroup: [{
                        text: '加入购物车',
                        backgroundColor: '#FE368E',
                        color: '#fff'
                    },
                    {
                        text: '立即预约',
                        backgroundColor: '#E30165',
                        color: '#fff'
                    },
                ]
            }
        },
 
        onLoad(option) {
            this.getPacById(option.pacId);
        },
        methods: {
            shareToggle() {
                this.$refs.share.open()
            },
            getPacById(pacId) {
                uni.showLoading({
                    title: '请稍等!'
                })
                getprojectListByPacId(pacId).then((response) => {
                    if (response.code == 200) {
                        uni.hideLoading()
                        this.pacById = response.data
                        if (this.pacById.pacRemark == null) {
                            this.pacById.pacRemark = "无"
                        }
                        this.proList = response.data.tjProjectList
                        this.proList.forEach(item => {
                            if (item.proMeaning == null) {
                                item.proMeaning = ""
                            }
                        })
                    }
 
                });
            },
 
            buttonClick(e) {
                getIsPay().then((res) => {
                    if (res) {
                        if (e.content.text == "加入购物车") {
                            let data = {
                                goodsId: this.pacById.pacId,
                            }
                            addMyCart(data).then(res => {
                                this.$modal.msgSuccess("添加成功")
                            })
 
                        } else if (e.content.text == "立即预约") {
                            // uni.navigateTo({
                            //     url: `../physicalAppointment/physicalAppointment?pacId=${this.pacById.pacId}`
                            // })
                            this.toggle();
                        }
                    } else {
                        uni.navigateTo({
                            url: `/pages/login`
                        })
                    }
 
                })
 
            },
            toggle(type) {
                this.type = type
                // open 方法传入参数 等同在 uni-popup 组件上绑定 type属性
                this.$refs.popup.open(type)
            },
            onClick() {
                uni.navigateTo({
                    url: `../cart/cart`
                })
            },
            tiaozhuan(pacId) {
                uni.navigateTo({
                    url: `../physicalAppointment/physicalAppointment?pacId=${pacId}`
                })
            },
            timetiaozhuan(pacId) {
                let pac = {
                    pacId: this.pacById.pacId,
                    pacName: this.pacById.pacName
                };
                uni.navigateTo({
                    url: '../timeappointment/timeappointment?pac=' + encodeURIComponent(JSON.stringify(pac))
                })
            },
        }
    }
</script>
 
<style lang="scss">
    .box2 {
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        margin-left: 10px;
        padding-top: 40px;
    }
 
    .geren {
        width: 300rpx;
        height: 96rpx;
        background: #F4F5F8;
        border-radius: 16rpx 16rpx 16rpx 16rpx;
        margin-left: 25rpx;
        margin-right: 25rpx;
        line-height: 86rpx;
        text-align: center;
        
    }
 
    .tuandui {
        width: 300rpx;
        height: 96rpx;
        background: #D8EDFF;
        border-radius: 16rpx 16rpx 16rpx 16rpx;
        line-height: 86rpx;
        text-align: center;
    }
 
    .small {
        width: 6rpx;
        height: 32rpx;
        background: #FD6397;
        border-radius: 0rpx 8rpx 8rpx 0rpx;
        margin-top: 11rpx;
    }
 
    .warm {
        width: 96%;
        height: 120px;
        color: LightSlateGray;
        margin-left: 10px;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 28rpx;
        color: #65686A;
        line-height: 44rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-top: 10rpx;
    }
 
    .order-bottom {
        margin-top: 10rpx;
        padding: 0 31.25rpx;
        height: auto;
        overflow: hidden;
        background: #fff;
    }
 
    .order-bottom .total {
        /* height: 130rpx; */
        padding-top: 20rpx;
        border-bottom: 1px solid #f4f4f4;
    }
 
    .order-bottom .total .status {
        display: flex;
        width: 642rpx;
        height: 80rpx;
        font-size: 30rpx;
        // color: #b4282d;
        padding: 15rpx 0rpx;
        border: 2rpx solid #f4f4f4;
        background-color: #f4f4f4;
        margin-top: 15rpx;
    }
 
    .order-bottom .total .status .name {
        width: 501rpx;
        height: 100rpx;
        margin: 5rpx 0rpx;
        margin-left: 20rpx;
        line-height: 50rpx;
    }
 
    .order-bottom .total .status .price2 {
    width: 102rpx;
    height: 43rpx;
    font-family: D-DIN-PRO, D-DIN-PRO;
    font-weight: 400;
    font-size: 32rpx;
    color: #9496A2;
    line-height: 42rpx;
    text-align: right;
    font-style: normal;
    text-transform: none;
    margin-right: 39rpx;
    }
 
    .caption {
        margin-top: 46rpx;
    }
    
    /* 弹框容器 */
    .popup {
      position: relative;  /* 父级需设为相对定位 */
      width: 80%;
      margin: 100px auto;  /* 弹框居中 */
      background: #fff;
      padding: 20px;
    }
    
    .text_img{
        width: 262rpx;
        height: 197rpx;
        border-radius: 0rpx 0rpx 0rpx 0rpx;
         position: absolute;
          top: -50px;          /* 图片高度的一半(假设图片高度100px) */
          left: 50%;           /* 水平居中起点 */
          transform: translateX(-50%);  /* 向左偏移50%宽度 */
        
          z-index: 999;        /* 确保图片在弹框上方 */
    }
 
    .bottom-list .t-b-1 {
        border: 1px solid #f0f0f0;
        width: 100%;
        height: auto;
        font-size: 14px;
        text-align: center;
    }
 
    .bottom-list .t-b-2 {
        border: 1px solid #f0f0f0;
        width: 100%;
        height: auto;
        text-align: center;
    }
 
    .protext {
        size: 10px;
    }
 
    .Package_txt {
        font-size: 16px;
        margin-bottom: 10px;
    }
 
 
    .picture {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .picture_img {
        width: 750rpx;
        height: 750rpx;
        border-radius: 0rpx 0rpx 0rpx 0rpx;
    }
 
    .price {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
 
    .price_style {
        display: flex;
        align-items: flex-end;
    }
 
    .price_txt1 {
        // width: 186rpx;
        height: 70rpx;
        font-family: D-DIN-PRO, D-DIN-PRO;
        font-weight: 500;
        font-size: 64rpx;
        color: #E30165;
        line-height: 42rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-left: 24rpx;
    }
 
    .price_txt2 {
        width: 30rpx;
        height: 60rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 30rpx;
        color: #E30165;
        line-height: 42rpx;
        text-align: right;
        font-style: normal;
        text-transform: none;
        margin-left: 10rpx;
    }
 
    .price_txt3 {
        width: 109rpx;
        height: 60rpx;
        font-family: D-DIN-PRO, D-DIN-PRO;
        font-weight: 400;
        font-size: 30rpx;
        color: #C3C3C4;
        line-height: 42rpx;
        text-align: left;
        font-style: normal;
        text-decoration-line: line-through;
        text-transform: none;
        margin-left: 10rpx;
    }
 
    .price_txt4 {
        width: 173rpx;
        height: 60rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 26rpx;
        color: #65686A;
        line-height: 42rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
 
    }
 
    .title {
        margin-top: 6px;
        margin-bottom: 20px;
        margin-left: 15px;
        display: flex;
        justify-content: space-between;
    }
 
    .title_txt {
        width: 215rpx;
        height: 34rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 500;
        font-size: 32rpx;
        color: #373E58;
        line-height: 42rpx;
        text-align: right;
        font-style: normal;
        text-transform: none;
    }
 
    .bj {
        width: 750rpx;
        height: 16rpx;
        background: #F4F5F8;
        border-radius: 0rpx 0rpx 0rpx 0rpx;
    }
 
    .title_style {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
 
    .title_img {
        width: 20px;
        height: 20px;
    }
 
    .title_txt1 {
        font-size: 12px;
        color: #838383;
        font-weight: 400;
    }
 
    .service {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
 
    .service_txt1 {
        font-size: 14px;
        font-weight: 600;
    }
 
    .service_img {
        width: 15px;
        height: 15px;
        margin-right: 2px;
    }
 
 
    .introduction_txt {
        width: 168rpx;
        height: 32rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: bold;
        font-size: 32rpx;
        color: #373E58;
        line-height: 45rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin: 50rpx 25rpx;
    }
 
    .use {
        margin-left: 24rpx;
        // height: 200px;
        // border-bottom: 2px solid #f0f0f0;
        // display: flex;
        // justify-content: center;
        // align-items: center;
        // flex-direction: column;
        // margin-top: 20px;
    }
 
    .use_style1 {
        width: 702rpx;
        height: 66rpx;
        background: linear-gradient(90deg, #FFF5F5 0%, #FFE4F1 100%);
        border-radius: 8rpx 8rpx 8rpx 8rpx;
    }
 
    .use_txt {
        width: 120rpx;
        height: 66rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 30rpx;
        color: #A20048;
        line-height: 66rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-left: 30rpx;
    }
 
    .use_text {
        width: 104rpx;
        height: 26rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 26rpx;
        color: #373E58;
        line-height: 42rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }
 
    .use_cent {
        margin-top: 25rpx;
        ;
        padding-top: 25rpx;
        padding-left: 30rpx;
        width: 702rpx;
        height: 122rpx;
        background: #F4F5F8;
        border-radius: 0rpx 0rpx 0rpx 0rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 26rpx;
        color: #464F72;
        line-height: 40rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }
 
    .use_style {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
 
    .use_style2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 8px;
    }
 
    .use_img {
        width: 90px;
        height: 90px;
    }
 
    .characteristic {
        width: 702rpx;
        height: 66rpx;
        background: linear-gradient(90deg, #FFF5F5 0%, #FFE4F1 100%);
        border-radius: 8rpx 8rpx 8rpx 8rpx;
        margin-top: 26rpx;
    }
 
    .characteristic_txt {
        width: 120rpx;
        height: 66rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 30rpx;
        color: #A20048 !important;
        line-height: 66rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-left: 30rpx;
    }
 
    .all {
        margin-left: 24rpx;
    }
 
    .zysx {
        width: 702rpx;
        height: 66rpx;
        background: linear-gradient(90deg, #FFF5F5 0%, #FFE4F1 100%);
        border-radius: 8rpx 8rpx 8rpx 8rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 30rpx;
        color: #A20048;
        line-height: 66rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        padding-left: 30rpx;
        margin-top: 40rpx;
    }
 
    .center {
        width: 652rpx;
        height: 338rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 28rpx;
        color: #65686A;
        line-height: 48rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-left: 20rpx;
        margin-top: 40rpx;
    }
 
    .characteristic_txt {
        font-size: 16px;
        color: #838383;
    }
 
    .shopping {
        position: fixed;
        left: 0;
        right: 0;
        bottom: var(--window-bottom);
    }
    
    .box_name{
        width: 100%;
        height: 34rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 500;
        font-size: 32rpx;
        color: #373E58;
        line-height: 42rpx;
        text-align: center;
        font-style: normal;
        text-transform: none;
        // margin-left: 260rpx;
    }
    
    .box_pic{
        margin-left: 230rpx;
        // width: 161rpx;
        height: 59rpx;
        font-family: D-DIN-PRO, D-DIN-PRO;
        font-weight: 500;
        font-size: 54rpx;
        color: #F5981F;
        line-height: 42rpx;
        text-align: left;
        font-style: normal;
        text-transform: none;
    }
    .box_qi{
        width: 30rpx;
            height: 50rpx;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 400;
        font-size: 30rpx;
        color: #F5981F;
        line-height: 42rpx;
        text-align: right;
        font-style: normal;
        text-transform: none;
    }
</style>