index.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  1. /*banner*/
  2. .header{
  3. width: 100%;
  4. height: 770px;
  5. margin-bottom: 2rem;
  6. }
  7. .header .banner{
  8. position: absolute;
  9. top: 0px;
  10. left: 0px;
  11. width: 100%;
  12. z-index: 1;
  13. height:48rem;
  14. overflow: hidden;
  15. }
  16. .header .banner .js-silder{
  17. position: relative;
  18. min-width: 320px;
  19. }
  20. .header .banner .silder-scroll{
  21. width: 100%;
  22. overflow: hidden;
  23. }
  24. .header .banner .silder-main{
  25. position: relative;
  26. width: 100%;
  27. overflow: hidden;
  28. }
  29. .header .banner .silder-main-img{
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height:48rem;
  35. }
  36. .header .banner .silder-main-img img{
  37. width: 100%;
  38. height: 100%;
  39. text-decoration: none;
  40. }
  41. .header .banner .js-silder-ctrl {
  42. width: 100%;
  43. text-align: center;
  44. position: absolute;
  45. top:55%;
  46. }
  47. .header .banner .silder-ctrl-prev,
  48. .header .banner .silder-ctrl-next{
  49. background-color: rgba(255,255,255,0.80);
  50. width: 35px;
  51. height: 75px;
  52. display: block;
  53. position: absolute;
  54. top: 50%;
  55. margin-top: -4%;
  56. cursor: pointer
  57. }
  58. .header .banner .silder-ctrl-prev{
  59. left: 10px;
  60. text-align: left;
  61. }
  62. .header .banner .silder-ctrl-next{
  63. right: 10px;
  64. text-align: right;
  65. }
  66. .header .banner .silder-ctrl-prev>span,
  67. .header .banner .silder-ctrl-next>span{
  68. position: absolute;
  69. top: 50%;
  70. margin-top: -40px;
  71. display: block;
  72. width: 35px;
  73. height: 75px;
  74. }
  75. .header .banner .silder-ctrl-prev>span{
  76. left: 0;
  77. background:url(spkfdx_left.png) no-repeat center;
  78. }
  79. .header .banner .silder-ctrl-next>span{
  80. right: 0;
  81. background:url(spkfdx_right.png) no-repeat center;
  82. }
  83. .header .banner .silder-ctrl-con{
  84. display: inline-block;
  85. width: 4%;
  86. padding: 10px 0;
  87. margin: 0 10px;
  88. cursor: pointer;
  89. display: none;
  90. }
  91. .header .banner .silder-ctrl-con>span{
  92. display: block;
  93. line-height: 0;
  94. text-indent: -9999px;
  95. overflow: hidden;
  96. padding: 5px 0;
  97. cursor: pointer;
  98. background-color: #e4e4e4;
  99. }
  100. .header .banner .silder-ctrl-con.active>span{
  101. background-color: #7bbedf;
  102. }
  103. .header .top_con{
  104. position: absolute;
  105. top:1rem;
  106. width: 100%;
  107. z-index: 2;
  108. }
  109. .header .top_con .top_nav .top_ss{
  110. padding-bottom: 10px;
  111. }
  112. .header .top_con .top_nav .top_ss a{
  113. color: #fff;
  114. display: block;
  115. font-size: 0.8rem;
  116. margin-right: 20px;
  117. padding-top: 5px;
  118. }
  119. .header .top_con .top_nav .top_ss a img{
  120. margin-right: 0.3rem;
  121. }
  122. .header .top_con .top_nav .top_ss form{
  123. display: block;
  124. position: relative;
  125. width: 140px;
  126. height: 22px;
  127. margin-right: 20px;
  128. }
  129. .header .top_con .top_nav .top_ss form .inp_ss{
  130. position: absolute;
  131. width: 100%;
  132. height: 22px;
  133. outline: 0px;
  134. border: 1px solid #fff;
  135. border-radius: 50px;
  136. background: none;
  137. padding-left: 10px;
  138. color: #fff;
  139. }
  140. .header .top_con .top_nav .top_ss form .inp_btn{
  141. position: absolute;
  142. width: 45px;
  143. height: 22px;
  144. outline: 0px;
  145. border: 0px;
  146. background:url(spkfdx_ss.png) no-repeat center;
  147. right: -5px;
  148. top: -1px;
  149. }
  150. .header .top_con .top_nav .nav_div{
  151. border-top: 1px solid #fff;
  152. padding-top: 5px;
  153. }
  154. .header .top_con .top_nav .nav_div a{
  155. color: #fff;
  156. font-size: 1.2rem;
  157. }
  158. /*中间内容 开始*/
  159. /*校园动态*/
  160. .con_div1{
  161. position: relative;
  162. }
  163. .con_div1 .js-silder{
  164. position: relative;
  165. width: 648px;
  166. height: 434px;
  167. margin-bottom: 15px;
  168. }
  169. .con_div1 .silder-scroll{
  170. width: 100%;
  171. overflow: hidden;
  172. }
  173. .con_div1 .silder-main{
  174. position: relative;
  175. width: 100%;
  176. overflow: hidden;
  177. }
  178. .con_div1 .silder-main-img{
  179. position: absolute;
  180. top: 0;
  181. left: 0;
  182. width: 100%;
  183. }
  184. .con_div1 .silder-main-img img{
  185. width: 100%;
  186. }
  187. .con_div1 .js-silder-ctrl {
  188. width: 100%;
  189. text-align: center;
  190. position: absolute;
  191. top: 40%;
  192. display:block;
  193. }
  194. .con_div1 .silder-ctrl-prev,
  195. .con_div1 .silder-ctrl-next{
  196. background-color: rgba(255,255,255,0.80);
  197. width: 35px;
  198. height: 75px;
  199. display: block;
  200. position: absolute;
  201. top: 50%;
  202. margin-top: -4%;
  203. cursor: pointer
  204. }
  205. .con_div1 .silder-ctrl-prev{
  206. left: 10px;
  207. text-align: left;
  208. }
  209. .con_div1 .silder-ctrl-next{
  210. right: 10px;
  211. text-align: right;
  212. }
  213. .con_div1 .silder-ctrl-prev>span,
  214. .con_div1 .silder-ctrl-next>span{
  215. position: absolute;
  216. top: 50%;
  217. margin-top: -40px;
  218. display: block;
  219. width: 35px;
  220. height: 75px;
  221. }
  222. .con_div1 .silder-ctrl-prev>span{
  223. left: 0;
  224. background:url(spkfdx_left.png) no-repeat center;
  225. }
  226. .con_div1 .silder-ctrl-next>span{
  227. right: 0;
  228. background:url(spkfdx_right.png) no-repeat center;
  229. }
  230. .con_div1 .silder-ctrl-con{
  231. display: inline-block;
  232. width: 4%;
  233. padding: 10px 0;
  234. margin: 0 10px;
  235. cursor: pointer;
  236. display: none;
  237. }
  238. .con_div1 .silder-ctrl-con>span{
  239. display: block;
  240. line-height: 0;
  241. text-indent: -9999px;
  242. overflow: hidden;
  243. padding: 5px 0;
  244. cursor: pointer;
  245. background-color: #e4e4e4;
  246. }
  247. .con_div1 .silder-ctrl-con.active>span{
  248. background-color: #7bbedf;
  249. }
  250. .con_div1 .silder-main-img p{
  251. position:absolute;
  252. bottom:0px;
  253. z-index: 2;
  254. color: #fff;
  255. background: rgba(0,0,0,0.80);
  256. width: 100%;
  257. height: 35px;
  258. line-height: 35px;
  259. font-size: 1rem;
  260. text-indent: 1rem;
  261. }
  262. .con_div1_bg{
  263. width: 60%;
  264. height: 585px;
  265. background: #f6f5f5;
  266. position: absolute;
  267. right: 0px;
  268. top:0px;
  269. z-index: -1;
  270. }
  271. .xydt_tit b{
  272. color: #efeff1;
  273. font-size: 4rem;
  274. display: block;
  275. }
  276. .xydt_tit .xydt_a{
  277. color: #333;
  278. font-size:1.4rem;
  279. display: block;
  280. font-weight: 900;
  281. margin-top: -5rem;
  282. margin-bottom: 3rem;
  283. }
  284. .xydt_more{
  285. color: #676769;
  286. font-size: 1rem;
  287. display: block;
  288. background: url(spkfdx_more.png) no-repeat left;
  289. padding-left: 64px;
  290. float: right;
  291. margin: 2% 0 0 0;
  292. background-size: auto 100%;
  293. }
  294. /*校园动态*/
  295. .xydt_list{
  296. width: 662px;
  297. }
  298. .xydt_list li{
  299. border-bottom: 1px solid #b5b5b5;
  300. padding: 1.2rem 1rem;
  301. overflow: hidden;
  302. display: flex;
  303. align-items: center;
  304. margin: 1rem 0 0 0;
  305. }
  306. .xydt_list li .list_data u{
  307. color: #003899;
  308. font-size: 1.4rem;
  309. display: block;
  310. margin-bottom: 10px;
  311. }
  312. .xydt_list li .list_data i{
  313. color: #003899;
  314. display: block;
  315. height: 2px;
  316. width: 40px;
  317. background: #003899;
  318. }
  319. .xydt_list li .list_txt{
  320. margin-left: 20px;
  321. }
  322. .xydt_list li .list_txt p{
  323. color: #333;
  324. font-size: 1.2rem;
  325. font-weight: 900;
  326. margin-bottom: 10px;
  327. }
  328. .xydt_list li:hover .list_txt p{
  329. color: #003899;
  330. }
  331. .xydt_list li .list_txt span{
  332. color: #8a8888;
  333. font-size: 1rem;
  334. }
  335. /*党史轮播*/
  336. .con_div2{
  337. background:url(spkfdx_conbanner.png) no-repeat center;
  338. background-size: 100% 100%;
  339. margin-bottom: 2rem;
  340. }
  341. .Box {position: relative;}
  342. .content_box {width: 1215px;margin: 0 auto; padding-top: 7rem;padding-bottom: 7rem;}
  343. .Box h2 {text-align: center;margin-bottom: 35px;padding-top: 250px;}
  344. .Box .Box_con {position: relative;}
  345. .Box .Box_con .btnl {position: absolute;}
  346. .Box .Box_con .btn {display: block;width: 35px;height: 75px;position: absolute;top: 60px;cursor: pointer;}
  347. .Box .Box_con .btnl {background: rgba(255,255,255,0.80) url(spkfdx_left.png) no-repeat center;left: -72px;}
  348. .Box .Box_con .btnr {background:rgba(255,255,255,0.80) url(spkfdx_right.png) no-repeat center;right: -72px;}
  349. .Box .Box_con .conbox {position: relative;overflow: hidden;}
  350. .Box .Box_con .conbox ul {position: relative;list-style: none;}
  351. .Box .Box_con .conbox ul li {float: left;width: 285px;height: 200px;margin-left: 20px;overflow: hidden;}
  352. .Box .Box_con .conbox ul li:first-child {margin-left: 0;}
  353. .Box .Box_con .conbox ul li img {display: block;width: 285px;height: 200px;transition: all 0.5s;}
  354. .Box .Box_con .conbox ul li:hover img {transform: scale(1.1);}
  355. .Box .BoxSwitch {margin-top: 30px;text-align: center; display: none;}
  356. .Box .BoxSwitch span {display: inline-block;*display: inline;*zoom: 1;vertical-align: middle;width: 30px;height: 3px;background: #ccc;margin: 0 5px;cursor: pointer;}
  357. .Box .BoxSwitch span.cur {background: red;}
  358. .content_box::marker{
  359. display: none;
  360. width: 0;
  361. height: 0;
  362. color: #0c4193;
  363. }
  364. .spkfdx_tzgg{
  365. width:31%;
  366. margin-right: 2%;
  367. }
  368. .spkfdx_jxjw{
  369. width:31%;
  370. margin-right: 2%;
  371. }
  372. .spkfdx_zsjx{
  373. width:34%;
  374. }
  375. .spkfdx_tit a{
  376. font-size: 1.4rem;
  377. color: #858282;
  378. font-weight: 900;
  379. margin-right: 6%;
  380. }
  381. .spkfdx_tit a.on{
  382. color: #333;
  383. }
  384. .tab_list1,.tab_list2{
  385. display:none;
  386. }
  387. /*通用列表*/
  388. .ul_list{
  389. width: 100%
  390. }
  391. .ul_list li{
  392. height: 6rem;
  393. border-bottom: 1px solid #b5b5b5;
  394. padding-top: 30px;
  395. }
  396. .ul_list li .list_data{
  397. width:16%;
  398. }
  399. .ul_list li .list_data u{
  400. color: #003899;
  401. font-size: 1.4rem;
  402. display: block;
  403. margin-bottom: 10px;
  404. }
  405. .ul_list li .list_data i{
  406. color: #003899;
  407. display: block;
  408. height: 2px;
  409. width: 40px;
  410. background: #003899;
  411. }
  412. .ul_list li .list_txt{
  413. margin-left: 2%;
  414. width: 82%;
  415. }
  416. .ul_list li .list_txt p{
  417. color: #333;
  418. font-size: 1rem;
  419. margin-bottom: 10px;
  420. }
  421. .ul_list li:hover .list_txt p{
  422. color: #003899;
  423. }
  424. .ul_list li .list_txt span{
  425. color: #8a8888;
  426. font-size: 1rem;
  427. }
  428. /*招生简章*/
  429. .zsjz_div{
  430. background:url(spkfdx_imgbg.png) no-repeat center;
  431. background-size: 100% 100%;
  432. width:100%;
  433. height: 354px;
  434. margin-top: 30px;
  435. }
  436. #carousel {
  437. position:relative;
  438. z-index:2;
  439. margin-top:20px;
  440. transform-style:preserve-3d;
  441. perspective:800px
  442. }
  443. #carousel a{
  444. position: absolute;
  445. left: 24%;
  446. top: 51%;
  447. margin-left: -32px;
  448. transition: transform .5s ease-in-out;
  449. box-shadow: 8px 8px 20px rgba(0,0,0,.2);
  450. cursor: pointer;
  451. display: block;
  452. width: auto!important;
  453. }
  454. #carousel a img {
  455. width: 100%;
  456. height: 100%;
  457. }
  458. #bannerNav {
  459. position:relative;
  460. margin-top:20px;
  461. height:10px;
  462. padding:10px 0;
  463. text-align:center;
  464. display: none;
  465. }
  466. #bannerNav ul li {
  467. cursor:pointer;
  468. overflow:hidden;
  469. display:inline-block;
  470. width:22px;
  471. margin:0 2px
  472. }
  473. #bannerNav ul li a {
  474. margin:0 auto;
  475. display:block;
  476. width:6px;
  477. height:6px;
  478. vertical-align:top;
  479. border-radius:3px;
  480. background:#5e6671;
  481. font-size:0
  482. }
  483. #bannerNav ul li.on a,#bannerNav ul li:hover a {
  484. background:#00aeff
  485. }
  486. #bannerNav ul li.on a {
  487. width:20px
  488. }
  489. #carousel {
  490. height:354px
  491. }
  492. /*教学活动*/
  493. .jxhd_div{
  494. background:url(spkfdx_imgbg.png) no-repeat center;
  495. width:100%;
  496. height: 354px;
  497. margin-top: 30px;
  498. padding: 1rem 1rem;
  499. }
  500. .con_div3{
  501. margin-bottom: 2rem;
  502. }
  503. /*老年教育 继续教育*/
  504. .con_div4{
  505. background:url(spkfdx_imgbg2.png) no-repeat center;
  506. padding: 2rem 0px;
  507. background-size: cover;
  508. }
  509. .lnjy_div .js-silder{
  510. position: relative;
  511. width: 100%;
  512. height: 18rem;
  513. margin-top: 1rem;
  514. }
  515. .lnjy_div .silder-scroll{
  516. width: 100%;
  517. overflow: hidden;
  518. }
  519. .lnjy_div .silder-main{
  520. position: relative;
  521. width: 100%;
  522. overflow: hidden;
  523. }
  524. .lnjy_div .silder-main-img{
  525. position: absolute;
  526. top: 0;
  527. left: 0;
  528. width: 100%;
  529. height: 18rem !important;
  530. background:#000;
  531. }
  532. .lnjy_div .silder-main-img img{
  533. width: 100%;
  534. height:100%;
  535. }
  536. .lnjy_div .silder-main-img video{
  537. width: 100%;
  538. }
  539. .lnjy_div .js-silder-ctrl {
  540. width: 100%;
  541. text-align: center;
  542. position: absolute;
  543. top:40%;
  544. }
  545. .lnjy_div .silder-ctrl-prev,
  546. .lnjy_div .silder-ctrl-next{
  547. background-color: rgba(255,255,255,0.80);
  548. width: 35px;
  549. height: 75px;
  550. display: block;
  551. position: absolute;
  552. top: 50%;
  553. margin-top: -4%;
  554. cursor: pointer
  555. }
  556. .lnjy_div .silder-ctrl-prev{
  557. left: 10px;
  558. text-align: left;
  559. }
  560. .lnjy_div .silder-ctrl-next{
  561. right: 10px;
  562. text-align: right;
  563. }
  564. .lnjy_div .silder-ctrl-prev>span,
  565. .lnjy_div .silder-ctrl-next>span{
  566. position: absolute;
  567. top: 50%;
  568. margin-top: -40px;
  569. display: block;
  570. width: 35px;
  571. height: 75px;
  572. }
  573. .lnjy_div .silder-ctrl-prev>span{
  574. left: 0;
  575. background:url(spkfdx_left.png) no-repeat center;
  576. }
  577. .lnjy_div .silder-ctrl-next>span{
  578. right: 0;
  579. background:url(spkfdx_right.png) no-repeat center;
  580. }
  581. .lnjy_div .silder-ctrl-con{
  582. display: inline-block;
  583. width: 4%;
  584. padding: 10px 0;
  585. margin: 0 10px;
  586. cursor: pointer;
  587. display: none;
  588. }
  589. .lnjy_div .silder-ctrl-con>span{
  590. display: block;
  591. line-height: 0;
  592. text-indent: -9999px;
  593. overflow: hidden;
  594. padding: 5px 0;
  595. cursor: pointer;
  596. background-color: #e4e4e4;
  597. }
  598. .lnjy_div .silder-ctrl-con.active>span{
  599. background-color: #7bbedf;
  600. }
  601. .lnjy_div .silder-main-img a{
  602. position:absolute;
  603. bottom:0px;
  604. z-index: 2;
  605. color: #fff;
  606. background: rgba(0,0,0,0.50);
  607. width: 100%;
  608. height: 35px;
  609. line-height: 35px;
  610. font-size: 1rem;
  611. text-indent: 1rem;
  612. }
  613. .jxjy_div .js-silder{
  614. position: relative;
  615. width:100%;
  616. height:18rem;
  617. margin-top: 1rem;
  618. }
  619. .jxjy_div .silder-scroll{
  620. width: 100%;
  621. overflow: hidden;
  622. }
  623. .jxjy_div .silder-main{
  624. position: relative;
  625. width: 100%;
  626. overflow: hidden;
  627. }
  628. .jxjy_div .silder-main-img{
  629. position: absolute;
  630. top: 0;
  631. left: 0;
  632. width: 100%;
  633. height:18rem !important
  634. }
  635. .jxjy_div .silder-main-img img{
  636. width: 100%;
  637. height:100%;
  638. }
  639. .jxjy_div .js-silder-ctrl {
  640. width: 100%;
  641. text-align: center;
  642. position: absolute;
  643. top:40%;
  644. }
  645. .jxjy_div .silder-ctrl-prev,
  646. .jxjy_div .silder-ctrl-next{
  647. background-color: rgba(255,255,255,0.80);
  648. width: 35px;
  649. height: 75px;
  650. display: block;
  651. position: absolute;
  652. top: 50%;
  653. margin-top: -4%;
  654. cursor: pointer
  655. }
  656. .jxjy_div .silder-ctrl-prev{
  657. left: 10px;
  658. text-align: left;
  659. }
  660. .jxjy_div .silder-ctrl-next{
  661. right: 10px;
  662. text-align: right;
  663. }
  664. .jxjy_div .silder-ctrl-prev>span,
  665. .jxjy_div .silder-ctrl-next>span{
  666. position: absolute;
  667. top: 50%;
  668. margin-top: -40px;
  669. display: block;
  670. width: 35px;
  671. height: 75px;
  672. }
  673. .jxjy_div .silder-ctrl-prev>span{
  674. left: 0;
  675. background:url(spkfdx_left.png) no-repeat center;
  676. }
  677. .jxjy_div .silder-ctrl-next>span{
  678. right: 0;
  679. background:url(spkfdx_right.png) no-repeat center;
  680. }
  681. .jxjy_div .silder-ctrl-con{
  682. display: inline-block;
  683. width: 4%;
  684. padding: 10px 0;
  685. margin: 0 10px;
  686. cursor: pointer;
  687. display: none;
  688. }
  689. .jxjy_div .silder-ctrl-con>span{
  690. display: block;
  691. line-height: 0;
  692. text-indent: -9999px;
  693. overflow: hidden;
  694. padding: 5px 0;
  695. cursor: pointer;
  696. background-color: #e4e4e4;
  697. }
  698. .jxjy_div .silder-ctrl-con.active>span{
  699. background-color: #7bbedf;
  700. }
  701. .jxjy_div .silder-main-img p{
  702. position:absolute;
  703. bottom:0px;
  704. z-index: 2;
  705. color: #fff;
  706. background: rgba(0,0,0,0.50);
  707. width: 100%;
  708. height: 35px;
  709. line-height: 35px;
  710. font-size: 1rem;
  711. text-indent: 1rem;
  712. }
  713. /*手机样式*/
  714. .sj_dsjy,.sj_zsjz,.header-phone{
  715. display: none;
  716. }
  717. /* ============================教学活动================================= */
  718. .ul_list2{
  719. width: 100%;
  720. }
  721. .ul_list2 li{
  722. text-align: center;
  723. }
  724. .ul_list2 li div{
  725. width: 100%;
  726. height: auto;
  727. background-color: #5e6671;
  728. }
  729. .ul_list2 li a{
  730. font-size: 1rem;
  731. line-height: 2rem;
  732. color: #333;
  733. text-align: center;
  734. }
  735. .ul_list2 li div video{
  736. width: 100%;
  737. }
  738. .fixed{
  739. display: flex;
  740. justify-content:space-between;
  741. }
  742. .lnjy_div,.jxjy_div{
  743. width: 32%;
  744. margin: 0 2% 0 0;
  745. }