Your Name 8 月之前
父節點
當前提交
e625230256

+ 6
- 6
template/pc/components/index/step.htm 查看文件

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

二進制
template/pc/js/botstrap-step/SourceHanSansCN-Medium.ttf 查看文件


+ 17
- 3
template/pc/js/botstrap-step/scripts.js 查看文件

@@ -186,15 +186,18 @@ jQuery(document).ready(function() {
186 186
                     });
187 187
 
188 188
                     if(html == ''){
189
-                        html = '暂无相关要求(2s后自动进行下一步)';
189
+                        html = '暂无相关要求(0.5s后自动进行下一步)';
190 190
                         //直接点击跳转下一步
191 191
                         //ajax异步是一个线程
192 192
                         //定时器也是一个独立线程
193 193
                         //ajax直接执行点击有问题 放到定时器里面即可
194
+                        $('#zss').attr('data','no');
194 195
                         setTimeout(function() {
195 196
                             $('#jumpBtn').trigger('click');
196 197
                             //$('#jumpBtn').parent().parent().hide();
197
-                        }, 2000);
198
+                        }, 500);  //大于400
199
+                    }else{
200
+                        $('#zss').attr('data','yes');
198 201
                     }
199 202
                     $('#zss').empty();
200 203
                     $('#zss').append(html);
@@ -264,7 +267,18 @@ jQuery(document).ready(function() {
264 267
         if($(this).index() == 6){
265 268
             //隐藏查询表单
266 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 284
         $(this).parents('fieldset').fadeOut(400, function() {

+ 75
- 68
template/pc/js/botstrap-step/style.css 查看文件

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

Loading…
取消
儲存