forked from liurong8866/pbic-ca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
executable file
·4622 lines (4081 loc) · 135 KB
/
Copy pathindex2.html
File metadata and controls
executable file
·4622 lines (4081 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
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
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PBIC2018</title>
<link href="css/weui.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/swiper-3.3.1.min.css"/>
<link rel="stylesheet" type="text/css" href="css/comman.css"/>
<!-- JS -->
<script src="js/jquery-1.12.0.min.js"></script>
<script src="js/jqmd5.js"></script>
<script src="js/sha1.js"></script>
<script src="js/weui.js"></script>
<script src="js/vue.min.js"></script>
<script src="js/swiper.js" type="text/javascript" charset="utf-8"></script>
<script src="js/comman2.js"></script>
<script>
hasloadRight = false;
// if (isMobile) {
// location.href = "app/index2.html";
// }
</script>
<script>
// if (isMobile) {
// location.href = "app/index.html";
// }
var numIndex = 0;
$(function () {
$("header").load("header.html?v=104");
$("footer").load("footer.html?v=104");
vm = new Vue({
el: '#body',
data: {
//导师团队
advisorTeam: [{
picUrl: "img/tutorPic/tutor_bg.png",
name: "Brett Gamboa",
university: "达特茅斯学院",
job: "达特茅斯学院英语语言教授",
intro: "研究“莎士比亚第一人”",
info: "研究“莎士比亚第一人”",
}
, {
picUrl: "img/tutorPic/tutor_rl.png",
name: "Robert Lyon",
university: "纽约大学Stern商学院",
job: "纽约大学Stern商学院顶级教授",
intro: "曾从事出版管理,创意项目管理,商业沟通顾问自由撰稿人",
info: "曾从事出版管理,创意项目管理,<br/>商业沟通顾问自由撰稿人",
},
{
picUrl: "img/tutorPic/tutor_jg.png",
name: "Jerome Game",
university: "哥伦比亚大学",
job: "哥伦比亚大学炙手可热的电影学教授",
intro: "剑桥大学国王学院博士",
info: "剑桥大学国王学院博士",
},
{
picUrl: "img/tutorPic/tutor_Bill.png",
name: "Bill Nace",
university: "麻省理工大学",
job: "麻省理工大学HKN顾问",
intro: "研究数码设计,FPGA毕业项目,分布系统以及网络基础",
info: "研究数码设计,FPGA毕业项目<br/>分布系统以及网络基础",
},
{
picUrl: "img/tutorPic/tutor_gdc.png",
name: "G . Daniel Cohen",
university: "莱斯大学",
job: "莱斯大学历史系主任",
intro: "奥地利维也纳人类历史研究项目成员",
info: "奥地利维也纳人类历史研究项目成员",
},
{
picUrl: "img/tutorPic/tutor_bt.png",
name: "Brandon Tilley",
university: "哈佛大学",
job: "哈佛大学",
intro: "精通英语、西班牙语、法语、拉丁语等多门语言",
info: "精通英语、西班牙语、法语、<br/>拉丁语等多门语言",
},
{
picUrl: "img/tutorPic/tutor_Catherine-Sozi.jpg",
name: "Catherine Sozi",
university: "联合国艾滋病规划署东南非21国区域代表",
job: "",
intro: "",
info: "联合国艾滋病规划署<br/>东南非21国区域代表"
}
,
{
picUrl: "img/tutorPic/tutor_rpa.png",
name: "Richard Payne",
university: "芝加哥大学",
job: "芝加哥大学历史系教授",
intro: "剑桥大学三一学院研究员",
info: "剑桥大学三一学院研究员",
},
{
picUrl: "img/tutorPic/tutor_zhangyan.png",
name: "张琰",
university: "联合国儿童基金会项目官员",
job: "",
intro: "",
info:"联合国儿童基金会项目官员"
}
,
{
picUrl: "img/tutorPic/tutor_wangyalin.png",
name: "王亚琳",
university: "联合国开发计划署项目官员",
job: "",
intro: "",
info: "联合国开发计划署项目官员"
},
{
picUrl: "img/tutorPic/tutor_zhengchunling.png",
name: "郑春玲",
university: "北京市志愿服务文化推广师、五星志愿者",
job: "",
intro: "",
info: "北京市志愿服务文化推广师、五星志愿者"
},
{
picUrl: "img/tutorPic/tutor_wanggeng.png",
name: "王耕",
university: "美国麦肯锡咨询公司项目经理,哈佛大学研究生",
job: "",
intro: "",
info: "麦肯锡咨询公司项目经理"
},
{
picUrl: "img/tutorPic/tutor_yedawei.png",
name: "叶大伟",
university: "姚基金执行总监",
job: "",
intro: "",
info:" 姚基金执行总监"
}
,
{
picUrl: "img/tutorPic/tutor_lilianxing.png",
name: "李连星",
job: "",
intro: "",
university: "清华大学对外传播研究中心中非报道项目组秘书长",
info: "清华大学对外传播研究中心<br/>中非报道项目组秘书长"
},
{
picUrl: "img/tutorPic/tutor_lucuicui.png",
name: "卢翠翠",
university: "印第安纳大学Kelly商学院助理教授 ",
job: "",
intro: "",
info: "印第安纳大学Kelly商学院助理教授"
},
{
picUrl: "img/tutorPic/tutor_Manuel-Ortega.jpg",
name: "Manuel Ortega",
university: "约翰霍普金斯大学访问学者",
job: "",
intro: "",
info: "约翰霍普金斯大学访问学者"
},
//
// {
// picUrl: "img/tutorPic/tutor_mk.png",
// name: "Matthew Kaliner",
// university: "哈佛大学",
// job: "哈佛大学社会学系教授",
// intro: "社会学理论专家·文化社会学家",
// info: "社会学理论专家·文化社会学家",
// }, {
// picUrl: "img/tutorPic/tutor_rk.png",
// name: "Robert Kurzban",
// university: "宾夕法尼亚大学",
// job: "宾夕法尼亚大学心理系教授",
// intro: "加州大学圣芭芭拉分校心理学博士",
// info: "加州大学圣芭芭拉分校心理学博士",
// }, {
// picUrl: "img/tutorPic/tutor_gon.png",
// name: "Ian Gonsher",
// university: "布朗大学",
// job: "布朗大学工程学院教授·研究员",
// intro: "机器人研发领域大亨",
// info: "机器人研发领域大亨",
// }, {
// picUrl: "img/tutorPic/tutor_sf.png",
// name: "Steven Fischer",
// university: "西北大学",
// job: "西北大学电影制作教授",
// intro: "艾美奖最佳提名制作人",
// info: "艾美奖最佳提名制作人",
// }, {
// picUrl: "img/tutorPic/tutor_nm.png",
// name: "Neel Mukherjee",
// university: "哈佛大学",
// job: "哈佛大学文学系教授",
// intro: "2014年获得布克奖",
// info: "2014年获得布克奖",
// }, {
// picUrl: "img/tutorPic/tutor_rv.png",
// name: "Richard Vinograd",
// university: "斯坦福大学",
// job: "斯坦福大学艺术与艺术史系教授",
// intro: "出版作品:新理解明和清绘",
// info: "出版作品:新理解明和清绘",
// }, {
// picUrl: "img/tutorPic/tutor_kbm.png",
// name: "Katrina Bell McDonald",
// university: "翰霍普金斯大学",
// job: "约翰霍普金斯大学社会学院教授",
// intro: "2006年获得终身职教",
// info: "2006年获得终身职教",
// }, {
// picUrl: "img/tutorPic/tutor_JJ.png",
// name: "John Jannotti",
// university: "布朗大学",
// job: "布朗大学计算机系教授",
// intro: "致力研究无线协议,操作系统的灵活性和传感网络",
// info: "致力研究无线协议,操作系统的灵活性和传感网络",
// }, {
// picUrl: "img/tutorPic/tutor_lb.png",
// name: " Luca Bossi",
// university: "宾夕法尼亚大学",
// job: "宾夕法尼亚大学经济学教授",
// intro: "最受欢迎的经济学教授",
// info: "最受欢迎的经济学教授",
// }, {
// picUrl: "img/tutorPic/tutor_fb.png",
// name: "Faiza Bellounis",
// university: "康奈尔大学",
// job: "",
// intro: "",
// info: "毕业于哥伦比亚大学,曾任哥伦比亚大学研究生顾问M. A. program coordinator ,前常青藤名校哥伦比亚大学、宾夕法尼亚大学招生官,哥伦比亚大学知名学术顾问,精通于处理各类大学申请案例。任教于Special A 常春藤国际暑期学校项目,为学生带来精彩的课程,学生喜欢上她的课,在她的课上能够尽情的释放自己,而她的课程设置上也是专门针对SA的学生每周固定时间安排学生进行“演讲”PK。"
// }, {
// picUrl: "img/tutorPic/tutor_sukailin.png",
// name: "苏凯琳",
// university: "联合国艾滋病规划署东南非区域代表",
// job: "",
// intro: "",
// info: "名学术顾问,精通于处理各类大学申请案例。任教于Special A 常春藤国际暑期学校项目,为学生带来精彩的课程,学生喜欢上她的课,在她的课上能够尽情的释放自己,而她的课程设置上也是专门针对SA的学生每周固定时间安排学生进行“演讲”PK。"
// },
// {
// picUrl: "img/tutorPic/tutor_chenguang.png",
// name: "陈光",
// university: "北京市志愿服务联合会副秘书长",
// job: "",
// intro: "",
// info: "毕业于哥伦比亚大学,曾任哥伦比亚大学研究生顾问M. A. program coordinator ,前常青藤名校哥伦比亚大学、宾夕法尼亚大学招生官,哥伦比亚大学知名学术顾问,精通于处理各类大学申请案例。任教于Special A 常春藤国际暑期学校项目,为学生带来精彩的课程,学生喜欢上她的课,在她的课上能够尽情的释放自己,而她的课程设置上也是专门针对SA的学生每周固定时间安排学生进行“演讲”PK。"
// }, {
// picUrl: "img/tutorPic/tutor_manuer.png",
// name: "马努尔",
// university: "中非民间商会国际联络助理秘书长",
// job: "",
// intro: "",
// info: "待定..."
// },
//
],
// newAdvisorTeam:[ ]
},
methods: {
toOtherHref: function () {
window.open("http://www.sohu.com/a/167154814_549700");
}
}
});
$(".pb_h").click(function () {
var has = $(this).hasClass("h_active");
$(".pb_h").removeClass("h_active");
$(".h_p").hide();
if (has) {
$(this).removeClass("h_active");
} else {
$(this).addClass("h_active");
$(this).parent().find(".h_p").show();
}
})
// setwid();
window.onresize = function () {
// setwid();
}
$(".imgA").click(function () {
var index = $(this).index() - 1;
var mythis = $(this);
var hasShow = mythis.hasClass("myShow");
var myNow = $(".imgList");
if (hasShow) {
$(".imgA").removeClass("myShow");
myNow.animate({
height: 0
}, 'slow', function () {
});
} else {
$(".imgA").removeClass("myShow");
mythis.addClass("myShow");
$(".specification_paragraph").hide();
$(".specification_paragraph").eq(index).show();
myNow.animate({
height: 920
}, 'slow', function () {
});
}
});
$(".cen_second").hover(function () {
$(this).find(".p_sp01").hide();
$(this).find(".left_txt").hide();
$(this).find(".show_left").show();
}, function () {
$(this).find(".p_sp01").show();
$(this).find(".left_txt").show();
$(this).find(".show_left").hide();
});
})
function setwid() {
setTimeout(setImgA, 3000);
var wIn01 = $(window).innerWidth();
if (wIn01 < 1200) {
wIn01 = 1200;
}
var w01 = wIn01 * 0.72;
var h01 = (w01 / 1386) * 650;
$(".swiperTop01").css("max-height", h01);
var heg = (h01 + 110) / 3;
$(".swiperTop02").css("height", heg);
if (numIndex != 1 && numIndex != 7) {
$(".page01").css("padding-top", "38px");
$(".pbicT").text("2017PBIC决赛现场");
} else {
var widIn = $(window).innerWidth();
if (widIn > 1338) {
$(".page01").css("padding-top", "25px");
} else {
$(".page01").css("padding-top", "12px");
}
$(".pbicT").text("你,青春年少、爱心飞扬,有创意、有憧憬、有担当,或许你参加过商赛,参加过社会倡导,参加过公益募捐,但公益挑战则是一项全新的赛事");
}
var wids = $(window).innerWidth();
if (wids < 1480 && wids >= 1200) {
$(".div_03").css("width", wids);
$(".right_pb").css("width", wids - 590);
var pbH = ((wids - 590) / 891) * 530;
$(".swiperPb").css("max-height", pbH);
$(".myTeachers .swiper-container").css("width", 1200);
$(".myTeachers .swiper-slide img").css("width", 300);
$(".myTeachers .swiper-slide img").css("height", 300);
$(".myTeachers").css("background-size", "auto 600px");
} else if (wids >= 1480) {
$(".right_pb").css("width", "60%");
$(".div_03").css("width", 1480);
$(".myTeachers .swiper-container").css("width", 1480);
$(".myTeachers .swiper-slide img").css("width", "370px");
$(".myTeachers .swiper-slide img").css("height", "370px");
$(".myTeachers").css("background-size", "auto 740px");
}
}
function setImgA() {
var imgA = $(".div_top08").height();
$(".imgA").css("line-height", imgA + "px");
}
</script>
<style>
body {
/*min-width: 1200px;*/
overflow-x: hidden;
}
.index_div {
width: 960px;
margin: 0 auto;
}
.index_div01 {
/*width: 960px;*/
margin: 0 auto;
}
.div_title {
text-align: center;
height: 245px;
}
.div_title img {
margin-top: 65px;
}
.div_title01,
.div_title02 {
text-align: center;
}
.div_title01 img {
margin: 105px 0px 80px 0px;
}
.div_title02 img {
margin: 75px 0px 65px 0px;
}
.txt_01 {
font-size: 31px;
font-weight: bold;
text-align: center;
}
.txt_02 {
font-size: 18px;
color: #666666;
margin-top: 15px;
}
.txt_02 a:hover,
.txt_01 a:hover {
color: #e5233e;
}
.txt_a {
padding-right: 18px;
border-right: 1px solid #ebebeb;
}
.txt_b {
padding: 0px 13px;
border-right: 1px solid #ebebeb;
}
.txt_c {
padding-left: 9px;
}
.div_vedio {
min-height: 280px;
}
.div_vedio {
margin-top: 35px;
}
.vedio_left {
float: left;
width: 51%;
padding-right: 20px;
box-sizing: border-box;
cursor: pointer;
}
.vedio_right {
float: left;
width: 49%;
}
.p_title {
font-size: 22px;
margin-bottom: 8px;
padding-left: 10px;
font-weight: bold;
border-left: 4px solid #e5233e;
}
.p_con {
font-size: 18px;
line-height: 31.5px;
}
.p_con01 {
text-indent: 35px
}
.p_end {
font-size: 14px;
color: #888888;
text-align: right;
padding-right: 28px;
margin-top: 5px;
box-sizing: border-box;
}
/*.endTop02 img {
width: 100%;
display: block;
}*/
.swiperTop01 {
box-sizing: border-box;
}
.swiperTop01 img {
width: 100%;
display: block;
float: left;
}
.page01 .swiper-button-prev {
right: 60px;
left: auto;
height: 110px;
width: 60px;
}
.page01 .swiper-button-next {
right: 0px;
height: 110px;
width: 60px;
}
.page01 .swiper-button-next.swiper-button-white,
.page01 .swiper-container-rtl .swiper-button-prev.swiper-button-white {
background-size: 16px;
}
.page01 .swiper-button-prev.swiper-button-white,
.page01 .swiper-container-rtl .swiper-button-next.swiper-button-white {
background-size: 16px;
}
.swiperTop01 {
overflow: hidden;
}
.pre01,
.pre02 {
position: absolute;
right: 58px;
top: 0;
display: block;
width: 1px;
height: 130px;
background: #484848;
}
.pre01 {
right: 120px;
}
.pageNum {
position: absolute;
left: 0;
top: 0;
width: 130px;
height: 110px;
background: url(img/nums_back.png) no-repeat 50px center;
}
.nums1 {
position: absolute;
top: 10px;
left: 12px;
font-size: 88px;
line-height: 88px;
color: #e5233e;
}
.nums2 {
position: absolute;
bottom: 10px;
right: 35px;
font-size: 42px;
line-height: 42px;
color: #FFFFFF;
}
.addBorder01 {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: block;
box-sizing: border-box;
background: rgba(0, 0, 0, .6);
cursor: pointer;
}
.addBorder {
background: rgba(0, 0, 0, .4);
border: 4px solid #e5233e;
box-sizing: border-box;
}
.leftR02 {
width: 50%;
float: right;
}
.index_div03 {
/*background: url(img/pb03_back.png) no-repeat bottom left;*/
}
.div_03 {
width: 1480px;
margin: 0 auto;
overflow: hidden;
position: relative;
}
.left_pb {
float: left;
width: 590px;
height: 100%;
padding: 0px 10px;
box-sizing: border-box;
position: relative;
}
.right_pb {
float: right;
width: 60%;
}
.pb {
padding-left: 38px;
margin-bottom: 25px;
font-size: 18px;
box-sizing: border-box;
background: url(img/index_icon_pb01.png) no-repeat left top;
}
.h_p {
line-height: 30px;
margin-top: 5px;
display: none;
}
.pb_h {
font-size: 22px;
line-height: 30px;
color: #666666;
cursor: pointer;
}
.pb02 {
background: url(img/index_icon_pb02.png) no-repeat left top;
}
.pb03 {
background: url(img/index_icon_pb03.png) no-repeat left top;
}
.pb04 {
background: url(img/index_icon_pb04.png) no-repeat left top;
}
.pb05 {
background: url(img/index_icon_pb05.png) no-repeat left top;
}
.h_active {
font-weight: bold;
}
.swiperPb {
max-height: 528px;
overflow: hidden;
}
.swiperPb img {
width: 100%;
display: block;
}
.right_pb .swiper-button-next,
.right_pb .swiper-button-prev {
width: 48px;
height: 48px;
line-height: 48px;
text-align: center;
bottom: 0 !important;
top: auto !important;
color: #FFFFFF;
font-size: 32px;
background: #333333;
}
.right_pb .swiper-button-next {
right: 0 !important;
}
.right_pb .swiper-button-prev {
right: 48px !important;
}
.right_pb .swiper-button-disabled {
opacity: 1 !important;
color: #888888;
}
.toPbDeatil {
width: 220px;
height: 50px;
line-height: 50px;
text-align: center;
display: block;
position: absolute;
bottom: 0;
left: 0;
border-radius: 4px;
background: #e5233e;
color: #FFFFFF;
font-size: 18px;
}
.myTeachers {
/*background: url(img/index_top04_back.jpg) no-repeat top center;
background-size: auto 740px;*/
margin-top: 25px;
}
.myTeachers .swiper-container {
width: 960px;
padding-bottom: 90px;
}
.myTeachers .swiper-slide {
margin: 0px !important;
line-height: 0px;
}
.myTeachers .swiper-slide img {
width: 240px;
height: 195px;
float: left;
margin: 0 !important;
display: block;
}
.teacher_pre {
height: 90px;
width: 100%;
bottom: 0;
left: 0;
position: absolute;
}
.swiper-button-next,
.swiper-button-prev {
color: #e5233e;
font-size: 68px;
height: auto;
width: 45px;
top: 22px;
}
.teacher_pre .swiper-button-next,
.teacher_pre .swiper-button-prev {
color: #333333;
font-size: 44px;
}
.teacher_pre .swiper-button-next:hover,
.teacher_pre .swiper-button-prev:hover {
color: #e5233e;
}
.teacher_pre .swiper-button-prev{
width: 50px;
height: 50px;
background: url(img/tip_left_gray.png) center center no-repeat;
}
.teacher_pre .swiper-button-prev:hover{
background: url(img/tip_left.png) center center no-repeat;
}
.teacher_pre .swiper-button-next{
width: 50px;
height: 50px;
background: url(img/tip_right_gray.png) center center no-repeat;
}
.teacher_pre .swiper-button-next:hover{
background: url(img/tip_right.png) center center no-repeat;
}
.swiper-button-next {
right: 0px;
}
.swiper-button-prev {
right: 70px;
left: auto;
}
.index_div05 {
/*background: url(img/pb05_back.jpg) no-repeat bottom left;*/
background-size: 100%;
padding-bottom: 205px;
}
.myVideo {
width: 960px;
margin: 0 auto;
}
.video_p_content {
width: 960px;
height: 653px;
}
.vidList {
width: 100%;
margin-top: 40px;
}
.vidList ul {
/*width: 100%;*/
overflow: hidden;
margin: 0 auto;
}
.vidList ul li {
width: 280px;
height: 200px;
float: left;
display: block;
font-size: 18px;
line-height: 0px;
margin-bottom: 15px;
border: 2px solid transparent;
box-sizing: border-box;
position: relative;
}
.vidList .li_cen {
margin: 0px 54px 15px 54px;
}
.vidList .vid_title {
line-height: 40px;
box-sizing: border-box;
position: relative;
}
.vidList .onTitle {
padding-left: 12px;
}
.vidList ul li img {
width: 276px;
cursor: pointer;
}
.vidList .left_bor {
display: block;
height: 18px;
width: 2px;
top: 12px;
left: 0;
position: absolute;
background: #e5233e;
display: none;
}
.active_div {
position: relative;
}
.active_div .active_vid {
width: 100%;
height: 100%;
line-height: 157px;
text-align: center;
color: #FFFFFF;
font-size: 24px;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, .4);
box-sizing: border-box;
border: 2px solid #e5233e;
display: none;
}
.active_div .onActive,
.vidList .onBor {
display: block;
}
.now_vid {
margin-top: -4px;
font-size: 24px;
color: #FFFFFF;
height: 44px;
padding: 2px 0px;
box-sizing: border-box;
background: #242424;
}
.now_vid p {
padding-left: 18px;
line-height: 32px;
margin-top: 5px;
border-left: 8px solid #E5233E;
box-sizing: border-box;
}
.div_top05 {
text-align: center;
}
.div_top06 {
text-align: center;
margin-top: 90px;
}
.div_top07 {
text-align: center;
margin-top: 80px;
margin-bottom: 40px;
}
.top08_img {
max-width: 1419px;
margin: 0 auto;
position: relative;
}
.top08_img img {
width: 100%;
display: block;
}
.img01,
.img02,
.img03,
.img04 {
width: 25%;
height: 100%;
font-size: 24px;
text-align: center;
color: #FFFFFF;
position: absolute;
top: 0;
left: 0;
cursor: pointer;
/* Firefox */
display: -moz-box;
-moz-box-pack: center;
-moz-box-align: center;
/* Safari、Opera 以及 Chrome */
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
/* Internet Explorer 10 */
display: -ms-flexbox;
-ms-flex-pack: center;
-ms-flex-align: center;
/* W3C */
display: box;
box-pack: center;
box-align: center;
}
.imgA:hover {
color: #e5233e;
}
.myShow {
color: #e5233e;
}
.img02 {
left: 25%;
}
.img03 {
left: 50%;
}
.img04 {
left: 75%;
}
/*赛制说明
*/
.imgList {
width: 1000px;
margin: 0 auto;
font-size: 18px;
height: 0;
overflow: hidden;
}
.imgList .specification_paragraph {
margin: 0 auto;