Your Name 8 months ago
parent
commit
e625230256

+ 6
- 6
template/pc/components/index/step.htm View File

227
 
227
 
228
                 <!--col-sm-6 col-sm-offset-3 form-box-->
228
                 <!--col-sm-6 col-sm-offset-3 form-box-->
229
                 <div class="form-box fb-t">
229
                 <div class="form-box fb-t">
230
-                    <div class="form-gb">
231
-                        <div class="form-gb-con">
230
+                    <div class="form-gb" style="display: none;">
231
+                        <div class="form-gb-con" style="display: none;">
232
                             <img src="/template/pc/js/botstrap-step/laba.png"/>
232
                             <img src="/template/pc/js/botstrap-step/laba.png"/>
233
                             <img src="/template/pc/js/botstrap-step/laba.png" />
233
                             <img src="/template/pc/js/botstrap-step/laba.png" />
234
 
234
 
235
 
235
 
236
                             {eyou:if condition='($is_mobile === false)'}
236
                             {eyou:if condition='($is_mobile === false)'}
237
-                            <span style="width: 100%;">
237
+                            <span style="width: 100%;display: none;">
238
                                 最新公告:
238
                                 最新公告:
239
                                 <font class="tib-li-end">河北建筑职称副高级破格已发布</font>
239
                                 <font class="tib-li-end">河北建筑职称副高级破格已发布</font>
240
                                 <font id="getCode">(点击获取二维码)</font>
240
                                 <font id="getCode">(点击获取二维码)</font>
241
                             </span>
241
                             </span>
242
                             {eyou:else /}
242
                             {eyou:else /}
243
-                            <span style="width: 100%;">
243
+                            <span style="width: 100%;display: none;">
244
                                 最新公告:
244
                                 最新公告:
245
                                 <font class="tib-li-end">河北建筑职称副高级破格已发布</font><br/>
245
                                 <font class="tib-li-end">河北建筑职称副高级破格已发布</font><br/>
246
                                 <font id="getCode">(点击获取二维码)</font>
246
                                 <font id="getCode">(点击获取二维码)</font>
745
                                 <button type="button" class="btn btn-next">下一步</button>
745
                                 <button type="button" class="btn btn-next">下一步</button>
746
 
746
 
747
 
747
 
748
-                                <button type="button" class="btn but-success but-success2">成功匹配示例</button>
748
+                                <button type="button" class="btn but-success">成功匹配示例</button>
749
 
749
 
750
                                 <div class="context-menu-arrow"></div>
750
                                 <div class="context-menu-arrow"></div>
751
 
751
 
966
                                         <input type="radio" class="form-control-radio" name="inlineRadioOptions2" id="inlineRadio22" value="option2"> 无
966
                                         <input type="radio" class="form-control-radio" name="inlineRadioOptions2" id="inlineRadio22" value="option2"> 无
967
                                     </label>
967
                                     </label>
968
                                 </div>-->
968
                                 </div>-->
969
-                                <button type="button" class="btn btn-previous">上一步</button>
969
+                                <button type="button" class="btn btn-previous" id="jumpBtn2">上一步</button>
970
                                 <button type="button" class="btn btn-next" id="jumpBtn">下一步</button>
970
                                 <button type="button" class="btn btn-next" id="jumpBtn">下一步</button>
971
                             </div>
971
                             </div>
972
                         </fieldset>
972
                         </fieldset>

BIN
template/pc/js/botstrap-step/SourceHanSansCN-Medium.ttf View File


+ 17
- 3
template/pc/js/botstrap-step/scripts.js View File

186
                     });
186
                     });
187
 
187
 
188
                     if(html == ''){
188
                     if(html == ''){
189
-                        html = '暂无相关要求(2s后自动进行下一步)';
189
+                        html = '暂无相关要求(0.5s后自动进行下一步)';
190
                         //直接点击跳转下一步
190
                         //直接点击跳转下一步
191
                         //ajax异步是一个线程
191
                         //ajax异步是一个线程
192
                         //定时器也是一个独立线程
192
                         //定时器也是一个独立线程
193
                         //ajax直接执行点击有问题 放到定时器里面即可
193
                         //ajax直接执行点击有问题 放到定时器里面即可
194
+                        $('#zss').attr('data','no');
194
                         setTimeout(function() {
195
                         setTimeout(function() {
195
                             $('#jumpBtn').trigger('click');
196
                             $('#jumpBtn').trigger('click');
196
                             //$('#jumpBtn').parent().parent().hide();
197
                             //$('#jumpBtn').parent().parent().hide();
197
-                        }, 2000);
198
+                        }, 500);  //大于400
199
+                    }else{
200
+                        $('#zss').attr('data','yes');
198
                     }
201
                     }
199
                     $('#zss').empty();
202
                     $('#zss').empty();
200
                     $('#zss').append(html);
203
                     $('#zss').append(html);
264
         if($(this).index() == 6){
267
         if($(this).index() == 6){
265
             //隐藏查询表单
268
             //隐藏查询表单
266
             $('#sele-box').show();
269
             $('#sele-box').show();
267
-            $('.ssl-box').show();
270
+            //$('.ssl-box').show();
271
+        }
272
+
273
+        if($(this).index() == 4){
274
+            //判断是否空证书
275
+            var a = $('#zss').attr('data');
276
+            if(a == 'no'){
277
+                setTimeout(function() {
278
+                    $('#jumpBtn2').trigger('click');
279
+                    //$('#jumpBtn').parent().parent().hide();
280
+                }, 500); //大于400
281
+            }
268
         }
282
         }
269
 
283
 
270
         $(this).parents('fieldset').fadeOut(400, function() {
284
         $(this).parents('fieldset').fadeOut(400, function() {

+ 75
- 68
template/pc/js/botstrap-step/style.css View File

34
 img { max-width: 100%; }
34
 img { max-width: 100%; }
35
 */
35
 */
36
 
36
 
37
+
38
+@font-face {
39
+    font-family: "SourceHanSansCN";
40
+    src: url("/template/pc/js/botstrap-step/SourceHanSansCN-Medium.ttf");
41
+}
42
+
43
+
37
 ::-moz-selection { background: #3366ff; color: #fff; text-shadow: none; }
44
 ::-moz-selection { background: #3366ff; color: #fff; text-shadow: none; }
38
 ::selection { background: #3366ff; color: #fff; text-shadow: none; }
45
 ::selection { background: #3366ff; color: #fff; text-shadow: none; }
39
 
46
 
250
         font-size: 18px;
257
         font-size: 18px;
251
         color: #fff;
258
         color: #fff;
252
         font-weight: bold;
259
         font-weight: bold;
253
-        font-family: "黑体", sans-serif;
260
+        font-family: "SourceHanSansCN", sans-serif;
254
         /* font-weight: bold; */
261
         /* font-weight: bold; */
255
         line-height: 24px;
262
         line-height: 24px;
256
         padding: 10px 0% 0 0;
263
         padding: 10px 0% 0 0;
279
         line-height: 65px;
286
         line-height: 65px;
280
         font-size: 28px;
287
         font-size: 28px;
281
         font-weight: bold;
288
         font-weight: bold;
282
-        font-family: "黑体", sans-serif;
289
+        font-family: "SourceHanSansCN", sans-serif;
283
     }
290
     }
284
 
291
 
285
     .form-top-left{
292
     .form-top-left{
289
         color: #000;
296
         color: #000;
290
         font-size: 16px;
297
         font-size: 16px;
291
         font-weight: bold;
298
         font-weight: bold;
292
-        font-family: "黑体", sans-serif;
299
+        font-family: "SourceHanSansCN", sans-serif;
293
     }
300
     }
294
     .form-top-right{
301
     .form-top-right{
295
         padding: 0px 25px 0 25px;
302
         padding: 0px 25px 0 25px;
306
         border:2px solid #ddd;
313
         border:2px solid #ddd;
307
         background:#fff;
314
         background:#fff;
308
         color: #666;
315
         color: #666;
309
-        font-family: "黑体", sans-serif;
316
+        font-family: "SourceHanSansCN", sans-serif;
310
     }
317
     }
311
     input[type="text"], input[type="password"], textarea, textarea.form-control{
318
     input[type="text"], input[type="password"], textarea, textarea.form-control{
312
         height: 43px;
319
         height: 43px;
313
         border:2px solid #ddd;
320
         border:2px solid #ddd;
314
         background:#fff;
321
         background:#fff;
315
         color: #666;
322
         color: #666;
316
-        font-family: "黑体", sans-serif;
323
+        font-family: "SourceHanSansCN", sans-serif;
317
     }
324
     }
318
     button.btn{
325
     button.btn{
319
         height: 37px;
326
         height: 37px;
320
         background:#3366ff;
327
         background:#3366ff;
321
         line-height: 37px;
328
         line-height: 37px;
322
-        font-family: "黑体", sans-serif;
329
+        font-family: "SourceHanSansCN", sans-serif;
323
     }
330
     }
324
     .registration-form button.btn{
331
     .registration-form button.btn{
325
         margin-top:10px;
332
         margin-top:10px;
365
     #ffnp{
372
     #ffnp{
366
         width: 100%;
373
         width: 100%;
367
         float: left;
374
         float: left;
368
-        font-family: "黑体", sans-serif;
375
+        font-family: "SourceHanSansCN", sans-serif;
369
     }
376
     }
370
     #cx-rel-code{
377
     #cx-rel-code{
371
-        font-family: "黑体", sans-serif;
378
+        font-family: "SourceHanSansCN", sans-serif;
372
     }
379
     }
373
     #sele-box input[type="text"], input[type="password"], textarea, textarea.form-control{
380
     #sele-box input[type="text"], input[type="password"], textarea, textarea.form-control{
374
         height: 37px;
381
         height: 37px;
375
         border:2px solid #ddd;
382
         border:2px solid #ddd;
376
         background:#fff;
383
         background:#fff;
377
         color: #666;
384
         color: #666;
378
-        font-family: "黑体", sans-serif;
385
+        font-family: "SourceHanSansCN", sans-serif;
379
     }
386
     }
380
     .form-info-t{
387
     .form-info-t{
381
-        font-family: "黑体", sans-serif;
388
+        font-family: "SourceHanSansCN", sans-serif;
382
         color: #666;
389
         color: #666;
383
         font-size: 14px;
390
         font-size: 14px;
384
     }
391
     }
428
     .ssl-box-t p{
435
     .ssl-box-t p{
429
         font-size: 15px;
436
         font-size: 15px;
430
         font-weight: bold;
437
         font-weight: bold;
431
-        font-family: "黑体", sans-serif;
438
+        font-family: "SourceHanSansCN", sans-serif;
432
     }
439
     }
433
     .ssl-box-b{
440
     .ssl-box-b{
434
         width: 90%;
441
         width: 90%;
440
     .ssl-box-b .p-con{
447
     .ssl-box-b .p-con{
441
         font-size: 15px;
448
         font-size: 15px;
442
         font-weight: bold;
449
         font-weight: bold;
443
-        font-family: "黑体", sans-serif;
450
+        font-family: "SourceHanSansCN", sans-serif;
444
         padding: 20px 25px 10px 25px;
451
         padding: 20px 25px 10px 25px;
445
     }
452
     }
446
     .ssl-box-b .p-con2{
453
     .ssl-box-b .p-con2{
447
         font-size: 15px;
454
         font-size: 15px;
448
         font-weight: bold;
455
         font-weight: bold;
449
-        font-family: "黑体", sans-serif;
456
+        font-family: "SourceHanSansCN", sans-serif;
450
         padding: 0px 25px;
457
         padding: 0px 25px;
451
     }
458
     }
452
     #sele-box{
459
     #sele-box{
532
         color: #fff;
539
         color: #fff;
533
         font-size: 16px;
540
         font-size: 16px;
534
         font-weight: bold;
541
         font-weight: bold;
535
-        font-family: "黑体", sans-serif;
542
+        font-family: "SourceHanSansCN", sans-serif;
536
     }
543
     }
537
     .form-gb-con img{
544
     .form-gb-con img{
538
         width: 12px;
545
         width: 12px;
597
         text-align: center;
604
         text-align: center;
598
         font-size: 17px;
605
         font-size: 17px;
599
         font-weight: bold;
606
         font-weight: bold;
600
-        font-family: "黑体", sans-serif;
607
+        font-family: "SourceHanSansCN", sans-serif;
601
         color: #fff;
608
         color: #fff;
602
     }
609
     }
603
     .ssl-list-t font{
610
     .ssl-list-t font{
627
         display: block;
634
         display: block;
628
         text-align: center;
635
         text-align: center;
629
         color: #fff;
636
         color: #fff;
630
-        font-family: "黑体", sans-serif;
637
+        font-family: "SourceHanSansCN", sans-serif;
631
         float: left;
638
         float: left;
632
         margin-left: 0;
639
         margin-left: 0;
633
         font-size: 14px;
640
         font-size: 14px;
660
         display: block;
667
         display: block;
661
         text-align: center;
668
         text-align: center;
662
         color: #fff;
669
         color: #fff;
663
-        font-family: "黑体", sans-serif;
670
+        font-family: "SourceHanSansCN", sans-serif;
664
         float: left;
671
         float: left;
665
         margin-left: 0;
672
         margin-left: 0;
666
         font-size: 14px;
673
         font-size: 14px;
707
 
714
 
708
     .modal-dialog{
715
     .modal-dialog{
709
         margin-top: 82px;
716
         margin-top: 82px;
710
-        font-family: "黑体", sans-serif !important;
717
+        font-family: "SourceHanSansCN", sans-serif !important;
711
         color: #000;
718
         color: #000;
712
     }
719
     }
713
     .modal-title{
720
     .modal-title{
714
-        font-family: "黑体", sans-serif !important;
721
+        font-family: "SourceHanSansCN", sans-serif !important;
715
         color: #000;
722
         color: #000;
716
     }
723
     }
717
 
724
 
718
     #zy_box{
725
     #zy_box{
719
-        font-family: "黑体", sans-serif !important;
726
+        font-family: "SourceHanSansCN", sans-serif !important;
720
     }
727
     }
721
 
728
 
722
     #zys{
729
     #zys{
735
         margin-top:5px;
742
         margin-top:5px;
736
         cursor: pointer;
743
         cursor: pointer;
737
         position: relative;
744
         position: relative;
738
-        font-family: "黑体", sans-serif !important;
745
+        font-family: "SourceHanSansCN", sans-serif !important;
739
     }
746
     }
740
 
747
 
741
     .hjk:after {
748
     .hjk:after {
755
     }
762
     }
756
 
763
 
757
     .control-label{
764
     .control-label{
758
-        font-family: "黑体", sans-serif !important;
765
+        font-family: "SourceHanSansCN", sans-serif !important;
759
     }
766
     }
760
     #zss{
767
     #zss{
761
-        font-family: "黑体", sans-serif !important;
768
+        font-family: "SourceHanSansCN", sans-serif !important;
762
         padding-left: 2px !important;
769
         padding-left: 2px !important;
763
     }
770
     }
764
 
771
 
765
     .form-top-left p span{
772
     .form-top-left p span{
766
-        font-family: "黑体", sans-serif !important;
773
+        font-family: "SourceHanSansCN", sans-serif !important;
767
         color: #000;
774
         color: #000;
768
         font-weight: bold;
775
         font-weight: bold;
769
     }
776
     }
770
 
777
 
771
     .panel-body{
778
     .panel-body{
772
-        font-family: "黑体", sans-serif !important;
779
+        font-family: "SourceHanSansCN", sans-serif !important;
773
         color: #000;
780
         color: #000;
774
     }
781
     }
775
     .list-group a{
782
     .list-group a{
776
-        font-family: "黑体", sans-serif !important;
783
+        font-family: "SourceHanSansCN", sans-serif !important;
777
         color: #000;
784
         color: #000;
778
     }
785
     }
779
     .form-t-e{
786
     .form-t-e{
788
     }
795
     }
789
     .ta-info-detail{
796
     .ta-info-detail{
790
         width:100%;
797
         width:100%;
791
-        font-family: "黑体", sans-serif !important;
798
+        font-family: "SourceHanSansCN", sans-serif !important;
792
         color: #000;
799
         color: #000;
793
         font-size: 15px;
800
         font-size: 15px;
794
         font-weight: bold;
801
         font-weight: bold;
796
 
803
 
797
     .ta-list-li-box{
804
     .ta-list-li-box{
798
         width:100%;
805
         width:100%;
799
-        font-family: "黑体", sans-serif !important;
806
+        font-family: "SourceHanSansCN", sans-serif !important;
800
         color: #000;
807
         color: #000;
801
         margin-bottom:5px;
808
         margin-bottom:5px;
802
     }
809
     }
862
     }
869
     }
863
 
870
 
864
     .zklp{
871
     .zklp{
865
-        font-family: "黑体", sans-serif !important;
872
+        font-family: "SourceHanSansCN", sans-serif !important;
866
         color: red;
873
         color: red;
867
         cursor: pointer;
874
         cursor: pointer;
868
         position: relative;
875
         position: relative;
918
         display: block;
925
         display: block;
919
         float: left;
926
         float: left;
920
         width:85%;
927
         width:85%;
921
-        font-family: "黑体", sans-serif !important;
928
+        font-family: "SourceHanSansCN", sans-serif !important;
922
         color: #000;
929
         color: #000;
923
         margin: 5px 0;
930
         margin: 5px 0;
924
         line-height: 25px;
931
         line-height: 25px;
935
     .nav-tabs li a{
942
     .nav-tabs li a{
936
         height: 30px;
943
         height: 30px;
937
         line-height: 8px !important;
944
         line-height: 8px !important;
938
-        font-family: "黑体", sans-serif !important;
945
+        font-family: "SourceHanSansCN", sans-serif !important;
939
         color: #000;
946
         color: #000;
940
         font-size: 13px !important;
947
         font-size: 13px !important;
941
     }
948
     }
945
     .result-div{
952
     .result-div{
946
         margin-bottom: 5px;
953
         margin-bottom: 5px;
947
         display: block;
954
         display: block;
948
-        font-family: "黑体", sans-serif !important;
955
+        font-family: "SourceHanSansCN", sans-serif !important;
949
     }
956
     }
950
 
957
 
951
     .form-top-left{
958
     .form-top-left{
983
         color: #000;
990
         color: #000;
984
         font-size: 16px;
991
         font-size: 16px;
985
         font-weight: bold;
992
         font-weight: bold;
986
-        font-family: "黑体", sans-serif;
993
+        font-family: "SourceHanSansCN", sans-serif;
987
     }
994
     }
988
     .ftl-r{
995
     .ftl-r{
989
         width:100%;float: left;
996
         width:100%;float: left;
990
         color: #000;
997
         color: #000;
991
         font-size: 16px;
998
         font-size: 16px;
992
         font-weight: bold;
999
         font-weight: bold;
993
-        font-family: "黑体", sans-serif;
1000
+        font-family: "SourceHanSansCN", sans-serif;
994
         margin-top: 5px;
1001
         margin-top: 5px;
995
     }
1002
     }
996
     .form-t-e{
1003
     .form-t-e{
1059
         font-size: 26px;
1066
         font-size: 26px;
1060
         color: #fff;
1067
         color: #fff;
1061
         font-weight: 400;
1068
         font-weight: 400;
1062
-        font-family: "黑体", sans-serif;
1069
+        font-family: "SourceHanSansCN", sans-serif;
1063
         /*        font-weight: bold;*/
1070
         /*        font-weight: bold;*/
1064
         line-height: 40px;
1071
         line-height: 40px;
1065
         padding:0 10%;
1072
         padding:0 10%;
1087
         line-height: 65px;
1094
         line-height: 65px;
1088
         font-size: 36px;
1095
         font-size: 36px;
1089
         font-weight: bold;
1096
         font-weight: bold;
1090
-        font-family: "黑体", sans-serif;
1097
+        font-family: "SourceHanSansCN", sans-serif;
1091
     }
1098
     }
1092
 
1099
 
1093
     .form-top-left{
1100
     .form-top-left{
1097
         color: #000;
1104
         color: #000;
1098
         font-size: 16px;
1105
         font-size: 16px;
1099
         font-weight: bold;
1106
         font-weight: bold;
1100
-        font-family: "黑体", sans-serif;
1107
+        font-family: "SourceHanSansCN", sans-serif;
1101
     }
1108
     }
1102
     .form-top-right{
1109
     .form-top-right{
1103
         padding: 0px 25px 0 25px;
1110
         padding: 0px 25px 0 25px;
1114
         border:2px solid #ddd;
1121
         border:2px solid #ddd;
1115
         background:#fff;
1122
         background:#fff;
1116
         color: #666;
1123
         color: #666;
1117
-        font-family: "黑体", sans-serif;
1124
+        font-family: "SourceHanSansCN", sans-serif;
1118
     }
1125
     }
1119
     input[type="text"], input[type="password"], textarea, textarea.form-control{
1126
     input[type="text"], input[type="password"], textarea, textarea.form-control{
1120
         height: 43px;
1127
         height: 43px;
1121
         border:2px solid #ddd;
1128
         border:2px solid #ddd;
1122
         background:#fff;
1129
         background:#fff;
1123
         color: #666;
1130
         color: #666;
1124
-        font-family: "黑体", sans-serif;
1131
+        font-family: "SourceHanSansCN", sans-serif;
1125
     }
1132
     }
1126
     button.btn{
1133
     button.btn{
1127
         height: 37px;
1134
         height: 37px;
1128
         background:#3366ff;
1135
         background:#3366ff;
1129
         line-height: 37px;
1136
         line-height: 37px;
1130
-        font-family: "黑体", sans-serif;
1137
+        font-family: "SourceHanSansCN", sans-serif;
1131
     }
1138
     }
1132
     .registration-form button.btn{
1139
     .registration-form button.btn{
1133
         margin-top:10px;
1140
         margin-top:10px;
1172
         float: left;
1179
         float: left;
1173
     }
1180
     }
1174
     #cx-rel-code{
1181
     #cx-rel-code{
1175
-        font-family: "黑体", sans-serif;
1182
+        font-family: "SourceHanSansCN", sans-serif;
1176
     }
1183
     }
1177
     #sele-box input[type="text"], input[type="password"], textarea, textarea.form-control{
1184
     #sele-box input[type="text"], input[type="password"], textarea, textarea.form-control{
1178
         height: 37px;
1185
         height: 37px;
1179
         border:2px solid #ddd;
1186
         border:2px solid #ddd;
1180
         background:#fff;
1187
         background:#fff;
1181
         color: #666;
1188
         color: #666;
1182
-        font-family: "黑体", sans-serif;
1189
+        font-family: "SourceHanSansCN", sans-serif;
1183
     }
1190
     }
1184
     .form-info-t{
1191
     .form-info-t{
1185
-        font-family: "黑体", sans-serif;
1192
+        font-family: "SourceHanSansCN", sans-serif;
1186
         color: #666;
1193
         color: #666;
1187
         font-size: 14px;
1194
         font-size: 14px;
1188
     }
1195
     }
1214
         top:0;
1221
         top:0;
1215
         left: 50%;
1222
         left: 50%;
1216
         margin-left: 286px;
1223
         margin-left: 286px;
1217
-        display: block;
1224
+        display: none;
1218
     }
1225
     }
1219
     .ssl-box-t{
1226
     .ssl-box-t{
1220
         width: 90%;
1227
         width: 90%;
1227
     .ssl-box-t p{
1234
     .ssl-box-t p{
1228
         font-size: 15px;
1235
         font-size: 15px;
1229
         font-weight: bold;
1236
         font-weight: bold;
1230
-        font-family: "黑体", sans-serif;
1237
+        font-family: "SourceHanSansCN", sans-serif;
1231
     }
1238
     }
1232
     .ssl-box-b{
1239
     .ssl-box-b{
1233
         width: 90%;
1240
         width: 90%;
1239
     .ssl-box-b .p-con{
1246
     .ssl-box-b .p-con{
1240
         font-size: 15px;
1247
         font-size: 15px;
1241
         font-weight: bold;
1248
         font-weight: bold;
1242
-        font-family: "黑体", sans-serif;
1249
+        font-family: "SourceHanSansCN", sans-serif;
1243
         padding: 20px 25px 10px 25px;
1250
         padding: 20px 25px 10px 25px;
1244
     }
1251
     }
1245
     .ssl-box-b .p-con2{
1252
     .ssl-box-b .p-con2{
1246
         font-size: 15px;
1253
         font-size: 15px;
1247
         font-weight: bold;
1254
         font-weight: bold;
1248
-        font-family: "黑体", sans-serif;
1255
+        font-family: "SourceHanSansCN", sans-serif;
1249
         padding: 0px 25px;
1256
         padding: 0px 25px;
1250
     }
1257
     }
1251
     #sele-box{
1258
     #sele-box{
1323
         color: #fff;
1330
         color: #fff;
1324
         font-size: 17px;
1331
         font-size: 17px;
1325
         font-weight: bold;
1332
         font-weight: bold;
1326
-        font-family: "黑体", sans-serif;
1333
+        font-family: "SourceHanSansCN", sans-serif;
1327
     }
1334
     }
1328
     .form-gb-con img{
1335
     .form-gb-con img{
1329
         width: 18px;
1336
         width: 18px;
1350
         text-align: center;
1357
         text-align: center;
1351
         font-size: 17px;
1358
         font-size: 17px;
1352
         font-weight: bold;
1359
         font-weight: bold;
1353
-        font-family: "黑体", sans-serif;
1360
+        font-family: "SourceHanSansCN", sans-serif;
1354
         color: #fff;
1361
         color: #fff;
1355
     }
1362
     }
1356
     .ssl-list-t font{
1363
     .ssl-list-t font{
1370
         display: block;
1377
         display: block;
1371
         text-align: center;
1378
         text-align: center;
1372
         color: #fff;
1379
         color: #fff;
1373
-        font-family: "黑体", sans-serif;
1380
+        font-family: "SourceHanSansCN", sans-serif;
1374
         float: left;
1381
         float: left;
1375
         margin-left: 0;
1382
         margin-left: 0;
1376
         font-size: 14px;
1383
         font-size: 14px;
1403
         display: block;
1410
         display: block;
1404
         text-align: center;
1411
         text-align: center;
1405
         color: #fff;
1412
         color: #fff;
1406
-        font-family: "黑体", sans-serif;
1413
+        font-family: "SourceHanSansCN", sans-serif;
1407
         float: left;
1414
         float: left;
1408
         margin-left: 0;
1415
         margin-left: 0;
1409
         font-size: 14px;
1416
         font-size: 14px;
1450
 
1457
 
1451
     .modal-dialog{
1458
     .modal-dialog{
1452
         margin-top: 200px;
1459
         margin-top: 200px;
1453
-        font-family: "黑体", sans-serif !important;
1460
+        font-family: "SourceHanSansCN", sans-serif !important;
1454
         color: #000;
1461
         color: #000;
1455
     }
1462
     }
1456
     .modal-title{
1463
     .modal-title{
1457
-        font-family: "黑体", sans-serif !important;
1464
+        font-family: "SourceHanSansCN", sans-serif !important;
1458
         color: #000;
1465
         color: #000;
1459
     }
1466
     }
1460
 
1467
 
1461
     #zy_box{
1468
     #zy_box{
1462
-        font-family: "黑体", sans-serif !important;
1469
+        font-family: "SourceHanSansCN", sans-serif !important;
1463
     }
1470
     }
1464
 
1471
 
1465
     #zys{
1472
     #zys{
1478
         margin-top:5px;
1485
         margin-top:5px;
1479
         cursor: pointer;
1486
         cursor: pointer;
1480
         position: relative;
1487
         position: relative;
1481
-        font-family: "黑体", sans-serif !important;
1488
+        font-family: "SourceHanSansCN", sans-serif !important;
1482
     }
1489
     }
1483
 
1490
 
1484
     .hjk:after {
1491
     .hjk:after {
1498
     }
1505
     }
1499
 
1506
 
1500
     .control-label{
1507
     .control-label{
1501
-        font-family: "黑体", sans-serif !important;
1508
+        font-family: "SourceHanSansCN", sans-serif !important;
1502
     }
1509
     }
1503
     #zss{
1510
     #zss{
1504
-        font-family: "黑体", sans-serif !important;
1511
+        font-family: "SourceHanSansCN", sans-serif !important;
1505
         padding-left: 2px !important;
1512
         padding-left: 2px !important;
1506
     }
1513
     }
1507
 
1514
 
1508
     .form-top-left p span{
1515
     .form-top-left p span{
1509
-        font-family: "黑体", sans-serif !important;
1516
+        font-family: "SourceHanSansCN", sans-serif !important;
1510
         color: #000;
1517
         color: #000;
1511
         font-weight: bold;
1518
         font-weight: bold;
1512
     }
1519
     }
1513
 
1520
 
1514
     .panel-body{
1521
     .panel-body{
1515
-        font-family: "黑体", sans-serif !important;
1522
+        font-family: "SourceHanSansCN", sans-serif !important;
1516
         color: #000;
1523
         color: #000;
1517
     }
1524
     }
1518
     .list-group a{
1525
     .list-group a{
1519
-        font-family: "黑体", sans-serif !important;
1526
+        font-family: "SourceHanSansCN", sans-serif !important;
1520
         color: #000;
1527
         color: #000;
1521
     }
1528
     }
1522
     .form-t-e{
1529
     .form-t-e{
1531
     }
1538
     }
1532
     .ta-info-detail{
1539
     .ta-info-detail{
1533
         width:100%;
1540
         width:100%;
1534
-        font-family: "黑体", sans-serif !important;
1541
+        font-family: "SourceHanSansCN", sans-serif !important;
1535
         color: #000;
1542
         color: #000;
1536
         font-size: 15px;
1543
         font-size: 15px;
1537
         font-weight: bold;
1544
         font-weight: bold;
1539
 
1546
 
1540
     .ta-list-li-box{
1547
     .ta-list-li-box{
1541
         width:100%;
1548
         width:100%;
1542
-        font-family: "黑体", sans-serif !important;
1549
+        font-family: "SourceHanSansCN", sans-serif !important;
1543
         color: #000;
1550
         color: #000;
1544
         margin-bottom:5px;
1551
         margin-bottom:5px;
1545
     }
1552
     }
1605
     }
1612
     }
1606
 
1613
 
1607
     .zklp{
1614
     .zklp{
1608
-        font-family: "黑体", sans-serif !important;
1615
+        font-family: "SourceHanSansCN", sans-serif !important;
1609
         color: red;
1616
         color: red;
1610
         cursor: pointer;
1617
         cursor: pointer;
1611
         position: relative;
1618
         position: relative;
1653
         display: block;
1660
         display: block;
1654
         float: left;
1661
         float: left;
1655
         width:71%;
1662
         width:71%;
1656
-        font-family: "黑体", sans-serif !important;
1663
+        font-family: "SourceHanSansCN", sans-serif !important;
1657
         color: #000;
1664
         color: #000;
1658
         margin: 5px 0;
1665
         margin: 5px 0;
1659
     }
1666
     }
1669
     .nav-tabs li a{
1676
     .nav-tabs li a{
1670
         height: 30px;
1677
         height: 30px;
1671
         line-height: 8px !important;
1678
         line-height: 8px !important;
1672
-        font-family: "黑体", sans-serif !important;
1679
+        font-family: "SourceHanSansCN", sans-serif !important;
1673
         color: #000;
1680
         color: #000;
1674
         font-size: 13px !important;
1681
         font-size: 13px !important;
1675
     }
1682
     }
1679
     .result-div{
1686
     .result-div{
1680
         margin-bottom: 5px;
1687
         margin-bottom: 5px;
1681
         display: block;
1688
         display: block;
1682
-        font-family: "黑体", sans-serif !important;
1689
+        font-family: "SourceHanSansCN", sans-serif !important;
1683
     }
1690
     }
1684
 
1691
 
1685
     .form-top-left{
1692
     .form-top-left{
1690
         color: #000;
1697
         color: #000;
1691
         font-size: 16px;
1698
         font-size: 16px;
1692
         font-weight: bold;
1699
         font-weight: bold;
1693
-        font-family: "黑体", sans-serif;
1700
+        font-family: "SourceHanSansCN", sans-serif;
1694
     }
1701
     }
1695
     .ftl-r{
1702
     .ftl-r{
1696
         width:50%;float: left;
1703
         width:50%;float: left;
1697
         color: #000;
1704
         color: #000;
1698
         font-size: 16px;
1705
         font-size: 16px;
1699
         font-weight: bold;
1706
         font-weight: bold;
1700
-        font-family: "黑体", sans-serif;
1707
+        font-family: "SourceHanSansCN", sans-serif;
1701
     }
1708
     }
1702
     #zss .form-control-static{
1709
     #zss .form-control-static{
1703
         display: block;
1710
         display: block;

Loading…
Cancel
Save