style.css 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331
  1. @import "./base.css";
  2. .headtop {
  3. background-color: #fff;
  4. }
  5. .header_wapper {
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. z-index: 200;
  10. width: 100%;
  11. box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
  12. }
  13. .header_layout {
  14. display: flex;
  15. align-items: center;
  16. padding: 16px 25px;
  17. background: #fff;
  18. }
  19. .header_logo a {
  20. display: block;
  21. font-size: 0;
  22. }
  23. .header_logo img {
  24. max-width: 440px;
  25. height: 65px;
  26. object-fit: contain;
  27. }
  28. .header_layout .header_menu {
  29. position: relative;
  30. margin-left: 50px;
  31. flex: 1;
  32. }
  33. .header_layout .nav .wp-menu {
  34. display: flex;
  35. justify-content: flex-end;
  36. align-items: center;
  37. }
  38. .header_layout .nav .wp-menu .menu-item {
  39. width: 10%;
  40. margin-top: 16px;
  41. padding-bottom: 22px;
  42. max-width: 120px;
  43. position: relative;
  44. }
  45. .header_layout .nav .wp-menu .menu-item .menu-link {
  46. display: inline-block;
  47. width: 100%;
  48. font-size: 18px;
  49. line-height: 20px;
  50. text-align: center;
  51. white-space: nowrap;
  52. color: #767676;
  53. }
  54. .header_layout .nav .wp-menu .menu-item::before {
  55. content: "";
  56. position: absolute;
  57. bottom: 10px;
  58. left: 50%;
  59. transform: translateX(-50%);
  60. width: 0;
  61. height: 2px;
  62. background-color: var(--vt-c-primary);
  63. transition: width 0.3s ease-in-out;
  64. }
  65. .header_layout .nav .wp-menu .menu-item a:hover {
  66. color: var(--vt-c-primary);
  67. }
  68. .header_layout .nav .wp-menu .menu-item.hover::before {
  69. width: 24px;
  70. }
  71. .header_layout .nav .wp-menu .menu-item.hover .menu-link {
  72. color: var(--vt-c-primary);
  73. }
  74. .header_layout .nav .wp-menu .menu-item::after {
  75. content: "";
  76. position: absolute;
  77. top: 2px;
  78. right: 0;
  79. height: 20px;
  80. border-right: 1px solid rgba(132, 132, 132, 20%);
  81. }
  82. .header_layout .nav .sub-menu {
  83. display: none;
  84. position: absolute;
  85. left: 50%;
  86. top: 38px;
  87. min-width: 130px;
  88. transform: translateX(-50%);
  89. z-index: 100;
  90. padding: 10px 0;
  91. background: #fff;
  92. box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
  93. 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  94. }
  95. .header_layout .nav .sub-menu .sub-item {
  96. position: relative;
  97. white-space: nowrap;
  98. vertical-align: top;
  99. _zoom: 1;
  100. }
  101. .header_layout .nav .sub-menu .sub-item a {
  102. display: block;
  103. height: 32px;
  104. line-height: 32px;
  105. padding: 0 12px;
  106. font-size: 16px;
  107. text-align: center;
  108. }
  109. .header_layout .nav .sub-menu .sub-item a:hover {
  110. color: var(--vt-c-primary);
  111. background-color: #f5f5f5;
  112. }
  113. .header_layout .mobile_menu {
  114. display: none;
  115. }
  116. .mobile_menu .mobile_menu_taggle {
  117. width: 28px;
  118. height: 28px;
  119. }
  120. .wp-navi-aside {
  121. display: none;
  122. }
  123. .banner_wrapper {
  124. background: #fff;
  125. }
  126. .banner_wrapper .inner {
  127. width: auto;
  128. padding: 0;
  129. max-width: 1920px;
  130. text-align: center;
  131. position: relative;
  132. }
  133. .banner_wrapper .focus .focus-pagination {
  134. position: absolute;
  135. left: 50%;
  136. bottom: 12px;
  137. right: auto;
  138. height: auto;
  139. transform: translateX(-50%);
  140. display: inline-block;
  141. padding: 6px 9px;
  142. border-radius: 30px;
  143. background-color: rgba(0, 0, 0, 0.56);
  144. z-index: 60;
  145. font-size: 0;
  146. }
  147. .banner_wrapper .focus .focus-page {
  148. display: inline-block;
  149. width: 12px;
  150. height: 12px;
  151. margin: 0 4px;
  152. line-height: 1;
  153. font-size: 0;
  154. border-radius: 6px;
  155. background-color: rgba(255, 255, 255, 0.6);
  156. -webkit-transition: all 0.3s ease-in-out;
  157. transition: all 0.3s ease-in-out;
  158. cursor: pointer;
  159. }
  160. .banner_wrapper .focus .focus-page-active {
  161. width: 24px;
  162. background-color: rgba(255, 255, 255, 1);
  163. }
  164. .banner_wrapper .focus .focus-navigation {
  165. width: 66px;
  166. height: 66px;
  167. opacity: 0.7;
  168. filter: alpha(opacity=70);
  169. font-size: 0;
  170. }
  171. .banner_wrapper .focus .focus-navigation:hover {
  172. opacity: 1;
  173. filter: alpha(opacity=100);
  174. }
  175. .banner_wrapper .focus .focus-navigation:active {
  176. opacity: 1;
  177. filter: alpha(opacity=100);
  178. }
  179. .banner_wrapper .focus .focus-prev {
  180. background: url("../images/botton_prev.png") no-repeat center/contain;
  181. }
  182. .banner_wrapper .focus .focus-next {
  183. background: url("../images/botton_next.png") no-repeat center/contain;
  184. }
  185. .header_btm_wrapper {
  186. padding: 130px 0;
  187. display: flex;
  188. width: 1200px;
  189. margin: 0 auto;
  190. }
  191. .home_lay_title {
  192. margin-bottom: 40px;
  193. font-size: 30px;
  194. color: var(--vt-c-indigo);
  195. line-height: 1;
  196. }
  197. .home_lay_title span {
  198. text-transform: uppercase;
  199. padding-left: 10px;
  200. font-weight: 100;
  201. color: rgba(123, 123, 123, 1);
  202. }
  203. .home_lay_title.white {
  204. color: #fff;
  205. }
  206. .home_lay_title.white span {
  207. color: #fff;
  208. }
  209. .home_lay_item_box {
  210. padding: 60px 0;
  211. }
  212. .news_tit {
  213. font-size: 18px;
  214. color: var(--vt-c-indigo);
  215. line-height: 1;
  216. margin-bottom: 14px;
  217. }
  218. .news_lay_box {
  219. display: flex;
  220. }
  221. .news_lay_box .news_lay_item {
  222. flex: 1;
  223. padding: 0 70px;
  224. border-right: 1px solid #e5e5e5;
  225. overflow: hidden;
  226. }
  227. .news_lay_box .news_lay_item:first-child {
  228. padding-left: 0;
  229. flex: 2;
  230. max-width: 660px;
  231. }
  232. .news_lay_box .news_lay_item:last-child {
  233. border-right: none;
  234. padding-right: 0;
  235. }
  236. .news_lay_box .news_lay_item .list_item {
  237. padding: 18px 0;
  238. font-size: 16px;
  239. line-height: 28px;
  240. display: flex;
  241. align-items: center;
  242. justify-content: space-between;
  243. border-bottom: 1px solid #e5e5e5;
  244. }
  245. .news_lay_box .news_lay_item .list_item img {
  246. height: 390px;
  247. width: 100%;
  248. object-fit: cover;
  249. }
  250. .news_lay_box .news_lay_item .list_item .cover {
  251. display: none;
  252. height: 390px;
  253. width: 100%;
  254. overflow: hidden;
  255. }
  256. .news_lay_box .news_lay_item .list_item.news_1 {
  257. display: block;
  258. }
  259. .news_lay_box .news_lay_item .list_item.news_1 .cover {
  260. display: block;
  261. }
  262. .news_lay_box .news_lay_item .list_item.news_1 .first_date {
  263. display: block;
  264. }
  265. .news_lay_box .news_lay_item .list_item.news_1 .item_date {
  266. display: none;
  267. }
  268. .news_lay_box .news_lay_item .list_item .first_date {
  269. display: none;
  270. font-size: 16px;
  271. margin: 8px 0;
  272. }
  273. .news_lay_box .news_lay_item .list_item .item_date {
  274. display: block;
  275. }
  276. .news_lay_box .news_lay_item .list_item.news_1 {
  277. padding-top: 0;
  278. font-size: 24px;
  279. line-height: 36px;
  280. }
  281. .news_lay_box .news_lay_item .list_item.news_1 .title {
  282. padding-right: 0;
  283. overflow: auto;
  284. white-space: normal;
  285. }
  286. .news_lay_box .news_lay_item .list_item .title {
  287. flex: 1;
  288. padding-right: 30px;
  289. text-overflow: ellipsis;
  290. white-space: nowrap;
  291. overflow: hidden;
  292. }
  293. .news_lay_box .news_lay_item .s_item {
  294. margin-top: 10px;
  295. padding: 18px 0;
  296. font-size: 16px;
  297. line-height: 28px;
  298. border-bottom: 1px solid #e5e5e5;
  299. }
  300. .news_lay_box .news_lay_item .s_item img {
  301. height: 210px;
  302. width: 100%;
  303. object-fit: cover;
  304. }
  305. .news_lay_box .news_lay_item .s_item .cover {
  306. display: none;
  307. height: 210px;
  308. width: 100%;
  309. overflow: hidden;
  310. margin-bottom: 10px;
  311. }
  312. .news_lay_box .news_lay_item .s_item.news_1 {
  313. padding-top: 0;
  314. font-size: 18px;
  315. }
  316. .news_lay_box .news_lay_item .s_item.news_1 .cover {
  317. display: block;
  318. }
  319. .news_lay_box .news_lay_item .item {
  320. width: 100%;
  321. color: var(--vt-c-indigo);
  322. cursor: pointer;
  323. overflow: hidden;
  324. transition: all 0.2s ease-in-out;
  325. }
  326. .news_lay_box .news_lay_item .item:hover {
  327. color: var(--vt-c-primary);
  328. }
  329. .news_lay_box .news_lay_item .item:hover a {
  330. color: var(--vt-c-primary);
  331. }
  332. .news_lay_box .news_lay_item .item:hover img {
  333. transform: scale(1.2);
  334. transition: all 0.2s ease-in-out;
  335. }
  336. .list_more {
  337. margin-top: 20px;
  338. text-align: center;
  339. }
  340. .list_more .more_text {
  341. color: var(--vt-c-primary);
  342. cursor: pointer;
  343. }
  344. .list_more .arrow {
  345. display: inline-block;
  346. margin-left: 6px;
  347. width: 18px;
  348. height: 18px;
  349. object-fit: contain;
  350. vertical-align: text-bottom;
  351. background: url("../images/arrow_right_primary.png") no-repeat center/contain;
  352. }
  353. .spe_cards {
  354. display: flex;
  355. height: 460px;
  356. }
  357. .spe_cards .cards_item {
  358. position: relative;
  359. flex: 1;
  360. margin: 0 1px;
  361. height: 460px;
  362. padding: 70px 20px 40px;
  363. color: #fff;
  364. box-sizing: border-box;
  365. transition: all 0.3s ease-in-out;
  366. }
  367. .spe_cards .cards_item .card_icon {
  368. line-height: 1;
  369. }
  370. .spe_cards .cards_item .card_icon {
  371. width: 72px;
  372. height: 72px;
  373. }
  374. .spe_cards .cards_item .card_icon.icon_1 {
  375. background: url("../images/icon_home_specialty_1.png") no-repeat center /
  376. contain;
  377. }
  378. .spe_cards .cards_item .card_icon.icon_2 {
  379. background: url("../images/icon_home_specialty_2.png") no-repeat center /
  380. contain;
  381. }
  382. .spe_cards .cards_item .card_icon.icon_3 {
  383. background: url("../images/icon_home_specialty_3.png") no-repeat center /
  384. contain;
  385. }
  386. .spe_cards .cards_item .card_icon.icon_4 {
  387. background: url("../images/icon_home_specialty_4.png") no-repeat center /
  388. contain;
  389. }
  390. .spe_cards .cards_item .card_icon.icon_5 {
  391. background: url("../images/icon_home_specialty_5.png") no-repeat center /
  392. contain;
  393. }
  394. .spe_cards .cards_item .card_tit {
  395. margin-top: 20px;
  396. font-size: 20px;
  397. line-height: 1;
  398. }
  399. .spe_cards .cards_item .card_tit a,
  400. .spe_cards .cards_item .card_desc a {
  401. color: #fff;
  402. }
  403. .spe_cards .cards_item .card_desc {
  404. position: absolute;
  405. bottom: 0;
  406. left: 0;
  407. width: 100%;
  408. padding: 0 20px 40px;
  409. opacity: 0;
  410. }
  411. .spe_cards .cards_item .card_desc .desc {
  412. font-size: 14px;
  413. line-height: 24px;
  414. }
  415. .spe_cards .cards_item .card_desc .more {
  416. margin-top: 20px;
  417. }
  418. .spe_cards .cards_item .card_desc .more .more_text {
  419. font-size: 16px;
  420. color: #fff;
  421. }
  422. .spe_cards .cards_item .card_desc .more .arrow {
  423. margin-left: 6px;
  424. width: 18px;
  425. height: 18px;
  426. display: inline-block;
  427. object-fit: contain;
  428. vertical-align: text-bottom;
  429. background: url("../images/arrow_right.png") no-repeat center/contain;
  430. }
  431. .spe_cards .cards_item.card_1 {
  432. background: #343e47 url("../images/bg_home_specialty_1.png") no-repeat center /
  433. cover;
  434. }
  435. .spe_cards .cards_item.card_2 {
  436. background: #cb975b url("../images/bg_home_specialty_2.png") no-repeat center /
  437. cover;
  438. }
  439. .spe_cards .cards_item.card_3 {
  440. background: #ad947c url("../images/bg_home_specialty_3.png") no-repeat center /
  441. cover;
  442. }
  443. .spe_cards .cards_item.card_4 {
  444. background: #da737b url("../images/bg_home_specialty_4.png") no-repeat center /
  445. cover;
  446. }
  447. .spe_cards .cards_item.card_5 {
  448. background: #52a0a7 url("../images/bg_home_specialty_5.png") no-repeat center /
  449. cover;
  450. }
  451. .spe_cards .cards_item:hover {
  452. flex: 2;
  453. }
  454. .spe_cards .cards_item:hover .card_desc {
  455. animation: fadeInUp 0.3s ease-in-out;
  456. animation-fill-mode: forwards;
  457. }
  458. .wrapper.wrapper_teacher_bg {
  459. background: linear-gradient(180deg, #f3fbf1 0%, #ffffff 100%);
  460. }
  461. /*teacher*/
  462. .teachers_box .teachers_swiper {
  463. width: 100%;
  464. display: grid;
  465. gap: 24px;
  466. grid-template-columns: repeat(5, 1fr);
  467. height: 400px;
  468. }
  469. /* .teachers_box .teachers_swiper .teacher_slide {
  470. width: 370px;
  471. } */
  472. .teachers_box .teacher_item {
  473. width: 100%;
  474. height: 400px;
  475. position: relative;
  476. overflow: hidden;
  477. }
  478. .teachers_box .teacher_item img {
  479. width: 100%;
  480. height: 100%;
  481. object-fit: cover;
  482. transition: all 0.3s ease-in-out;
  483. }
  484. .teachers_box .teacher_item:hover .item_footer {
  485. transform: translateY(0);
  486. }
  487. .teachers_box .teacher_item:hover img {
  488. transform: scale(1.2);
  489. }
  490. .teachers_box .teacher_item .item_footer {
  491. position: absolute;
  492. display: inline-flex;
  493. flex-direction: column;
  494. justify-content: flex-end;
  495. bottom: 0;
  496. left: 0;
  497. width: 100%;
  498. height: 140px;
  499. padding: 0 24px 20px;
  500. transform: translateY(100%);
  501. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  502. transition: all 0.3s ease-in-out;
  503. }
  504. .teachers_box .teacher_item .name a {
  505. color: #fff;
  506. font-size: 18px;
  507. font-weight: 600;
  508. }
  509. .tabs_header {
  510. display: flex;
  511. align-items: center;
  512. margin-bottom: 40px;
  513. }
  514. .tabs_header .home_lay_title {
  515. margin-bottom: 0;
  516. }
  517. .tabs_header .tabs_nav_list {
  518. flex: 1;
  519. position: relative;
  520. display: flex;
  521. align-self: stretch;
  522. overflow: hidden;
  523. white-space: nowrap;
  524. justify-content: flex-end;
  525. }
  526. .tabs_header .tabs_nav_list .list_item {
  527. position: relative;
  528. padding: 14px 0;
  529. font-size: 18px;
  530. color: rgba(0, 0, 0, 0.8);
  531. cursor: pointer;
  532. }
  533. .works_tab .tabs_header .tabs_nav_list .list_item {
  534. color: rgba(255, 255, 255, 0.8);
  535. }
  536. .tabs_header .tabs_nav_list .list_item.selected {
  537. color: #000;
  538. }
  539. .works_tab .tabs_header .tabs_nav_list .list_item.selected {
  540. color: #fff;
  541. }
  542. .tabs_header .tabs_nav_list .list_item.selected::after {
  543. position: absolute;
  544. content: "";
  545. bottom: 0;
  546. left: 50%;
  547. -webkit-transform: translateX(-50%);
  548. -ms-transform: translateX(-50%);
  549. transform: translateX(-50%);
  550. width: 28px;
  551. height: 2px;
  552. background-color: var(--vt-c-primary);
  553. }
  554. .works_tab .tabs_header .tabs_nav_list .list_item.selected::after {
  555. background-color: #fff;
  556. }
  557. .tabs_header .tabs_nav_list .list_item + .list_item {
  558. margin-left: 30px;
  559. }
  560. .tab_list {
  561. display: grid;
  562. grid-template-columns: repeat(4, 1fr);
  563. gap: 24px;
  564. }
  565. .tab_list .list_item,
  566. .page_article_list .list_item {
  567. width: 100%;
  568. background-color: #fff;
  569. overflow: hidden;
  570. position: relative;
  571. }
  572. .tab_list .list_item .item {
  573. position: relative;
  574. display: block;
  575. border-bottom: 2px solid rgba(159, 159, 159, 0.5);
  576. cursor: pointer;
  577. }
  578. .page_article_list .list_item .item {
  579. display: flex;
  580. align-items: center;
  581. margin-bottom: 20px;
  582. }
  583. .page_article_list .list_item .item:hover {
  584. background-color: #f5f5f5;
  585. }
  586. .tab_list .list_item .item::before {
  587. content: "";
  588. position: absolute;
  589. bottom: 0;
  590. right: 0;
  591. border-width: 6px;
  592. border-style: solid;
  593. border-color: transparent rgba(159, 159, 159, 0.5) rgba(159, 159, 159, 0.5)
  594. transparent;
  595. }
  596. .tab_list .list_item .item::after {
  597. content: "";
  598. position: absolute;
  599. bottom: -2px;
  600. right: 0;
  601. width: 0;
  602. height: 2px;
  603. background-color: var(--vt-c-primary);
  604. transition: width 0.3s ease-in-out;
  605. }
  606. .tab_list .list_item .item:hover::before {
  607. border-color: transparent var(--vt-c-primary) var(--vt-c-primary) transparent;
  608. }
  609. .tab_list .list_item .item:hover::after {
  610. width: 100%;
  611. }
  612. .tab_list .list_item .item:hover img,
  613. .page_article_list .list_item .item:hover img {
  614. transform: scale(1.2);
  615. }
  616. .tab_list .list_item .list_img {
  617. width: 100%;
  618. height: 390px;
  619. overflow: hidden;
  620. }
  621. .tab_list .list_item img {
  622. width: 100%;
  623. height: 390px;
  624. object-fit: cover;
  625. transition: all 0.3s ease-in-out;
  626. }
  627. .tab_list .list_item .info_box {
  628. padding: 20px 18px;
  629. }
  630. .tab_list .list_item .item_tit {
  631. height: 56px;
  632. font-size: 20px;
  633. line-height: 28px;
  634. color: var(--vt-c-indigo);
  635. overflow: hidden;
  636. }
  637. .tab_list .list_item .item_desc {
  638. height: 72px;
  639. overflow: hidden;
  640. margin-top: 20px;
  641. font-size: 16px;
  642. line-height: 24px;
  643. font-weight: 400;
  644. color: #666666;
  645. word-break: break-all;
  646. }
  647. .tab_list .list_item .item_date {
  648. font-size: 14px;
  649. margin-top: 30px;
  650. font-weight: 300;
  651. color: #999999;
  652. }
  653. .page_article_list .list_img {
  654. width: 240px;
  655. height: 160px;
  656. overflow: hidden;
  657. }
  658. .page_article_list img {
  659. width: 100%;
  660. height: 160px;
  661. object-fit: cover;
  662. transition: all 0.3s ease-in-out;
  663. }
  664. .page_article_list .info_box {
  665. flex: 1;
  666. height: 160px;
  667. padding: 16px;
  668. }
  669. .page_article_list .item_tit {
  670. width: 100%;
  671. font-weight: 500;
  672. font-size: 20px;
  673. color: #333333;
  674. line-height: 24px;
  675. white-space: nowrap;
  676. text-overflow: ellipsis;
  677. overflow: hidden;
  678. }
  679. .page_article_list .item_desc {
  680. height: 70px;
  681. margin-top: 15px;
  682. font-size: 12px;
  683. line-height: 20px;
  684. font-weight: 400;
  685. color: #666666;
  686. overflow: hidden;
  687. word-break: break-all;
  688. }
  689. .page_article_list .item_date {
  690. font-size: 12px;
  691. font-weight: 300;
  692. color: #999999;
  693. }
  694. .research_bg {
  695. background: url("../images/bg_research.png") no-repeat center top/100% auto;
  696. }
  697. .teach_bg {
  698. position: relative;
  699. }
  700. .talent_tab {
  701. position: relative;
  702. z-index: 2;
  703. }
  704. .teach_bg::after {
  705. position: absolute;
  706. content: "";
  707. right: 0;
  708. top: 40%;
  709. width: 40%;
  710. height: 200px;
  711. background-color: rgba(53, 152, 107, 0.1);
  712. }
  713. .work_bg {
  714. background: url("../images/bg_works.png") no-repeat center top/100% auto;
  715. }
  716. .works_tab .tab_list .list_item {
  717. height: 388px;
  718. }
  719. .works_tab .tab_list .list_item .item_link {
  720. display: block;
  721. position: relative;
  722. width: 100%;
  723. height: 100%;
  724. overflow: hidden;
  725. cursor: pointer;
  726. }
  727. .works_tab .tab_list .list_item .item_link .item_txt {
  728. position: absolute;
  729. left: 0;
  730. bottom: 0;
  731. padding: 30px 40px;
  732. width: 100%;
  733. color: #fff;
  734. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  735. opacity: 0;
  736. overflow: hidden;
  737. }
  738. .works_tab .tab_list .list_item .item_link .item_txt .name {
  739. font-size: 20px;
  740. font-weight: 600;
  741. width: 100%;
  742. overflow: hidden;
  743. text-overflow: ellipsis;
  744. white-space: nowrap;
  745. }
  746. .works_tab .tab_list .list_item .item_link .item_txt .name a {
  747. color: #fff;
  748. }
  749. .works_tab .tab_list .list_item .item_link:hover img {
  750. transform: scale(1.2);
  751. }
  752. .works_tab .tab_list .list_item .item_link:hover .item_txt {
  753. animation: fadeInUp 0.3s ease-in-out;
  754. animation-fill-mode: forwards;
  755. }
  756. .works_tab .tab_list .list_item img {
  757. width: 100%;
  758. height: 100%;
  759. object-fit: cover;
  760. transition: all 0.3s ease-in-out;
  761. }
  762. @keyframes fadeInUp {
  763. from {
  764. opacity: 0;
  765. transform: translate3d(0, 100%, 0);
  766. }
  767. to {
  768. opacity: 1;
  769. transform: translate3d(0, 0, 0);
  770. }
  771. }
  772. .services_bg {
  773. position: relative;
  774. }
  775. .services_bg::after {
  776. position: absolute;
  777. content: "";
  778. left: 0;
  779. top: 40%;
  780. width: 60%;
  781. height: 200px;
  782. background-color: rgba(53, 152, 107, 0.1);
  783. }
  784. .service_list {
  785. position: relative;
  786. display: grid;
  787. grid-template-columns: repeat(3, 1fr);
  788. gap: 24px;
  789. z-index: 2;
  790. }
  791. .service_list .ser_item {
  792. background-color: #fff;
  793. }
  794. .service_list .ser_item a {
  795. padding: 30px 50px;
  796. display: flex;
  797. align-items: center;
  798. color: var(--vt-c-indigo);
  799. }
  800. .service_list .ser_item a .ser_icon {
  801. padding-right: 40px;
  802. border-right: 1px solid #d3d9de;
  803. }
  804. .service_list .ser_item a .ser_icon img {
  805. width: 108px;
  806. height: 108px;
  807. object-fit: contain;
  808. }
  809. .service_list .ser_item a .ser_tit {
  810. flex: 1;
  811. font-size: 24px;
  812. padding-left: 40px;
  813. }
  814. .service_list .ser_item a .ser_tit p {
  815. margin: 0;
  816. }
  817. .service_list .ser_item a .ser_tit .desc {
  818. margin-top: 20px;
  819. font-size: 16px;
  820. line-height: 20px;
  821. color: #999;
  822. }
  823. .service_list .ser_item a:hover .ser_icon img {
  824. animation: heartBeat 2s ease-in-out infinite;
  825. }
  826. @keyframes heartBeat {
  827. 0% {
  828. transform: scale(1);
  829. }
  830. 14% {
  831. transform: scale(1.2);
  832. }
  833. 28% {
  834. transform: scale(1);
  835. }
  836. 42% {
  837. transform: scale(1.2);
  838. }
  839. 70% {
  840. transform: scale(1);
  841. }
  842. }
  843. .footer_layout .footer_fix_link {
  844. position: fixed;
  845. right: 0;
  846. top: 50%;
  847. z-index: 9;
  848. }
  849. .footer_layout .top_btn {
  850. display: none;
  851. position: fixed;
  852. right: 0;
  853. bottom: 40px;
  854. z-index: 9;
  855. cursor: pointer;
  856. }
  857. .footer_layout .top_btn img {
  858. width: 40px;
  859. height: 40px;
  860. object-fit: contain;
  861. }
  862. .footer_layout .footer_fix_link .link_vertical {
  863. display: inline-flex;
  864. flex-direction: column;
  865. }
  866. .footer_layout .footer_fix_link a {
  867. display: inline-flex;
  868. align-items: center;
  869. justify-content: center;
  870. color: #fff;
  871. writing-mode: vertical-lr;
  872. width: 40px;
  873. height: 105px;
  874. }
  875. .footer_layout .footer_fix_link .xihua_link {
  876. background: url("../images/bg_links_1.png") no-repeat center / 100%;
  877. }
  878. .footer_layout .footer_fix_link .index_link {
  879. margin-top: 24px;
  880. background: url("../images/bg_links_2.png") no-repeat center / 100%;
  881. }
  882. .footer_layout .lay_footer {
  883. background-color: #454847;
  884. }
  885. .footer_layout .lay_footer .footer_menu {
  886. padding: 100px 140px;
  887. display: flex;
  888. }
  889. .footer_layout .lay_footer .footer_menu .logo {
  890. padding-right: 75px;
  891. border-right: 1px solid rgba(112, 112, 112, 0.5);
  892. }
  893. .footer_layout .lay_footer .footer_menu .logo .footer_logo img {
  894. height: 65px;
  895. object-fit: contain;
  896. }
  897. .footer_layout .lay_footer .footer_menu .logo .footer_tips {
  898. margin-top: 88px;
  899. }
  900. .footer_layout .lay_footer .footer_menu .logo .footer_tips img {
  901. height: 38px;
  902. object-fit: contain;
  903. }
  904. .footer_layout .lay_footer .footer_menu .logo .contact_view {
  905. margin-top: 90px;
  906. color: #ffffff;
  907. font-size: 14px;
  908. }
  909. .footer_layout .lay_footer .footer_menu .logo .contact_view p {
  910. margin-top: 18px;
  911. }
  912. .footer_layout .lay_footer .footer_menu .logo .contact_view .title {
  913. font-size: 18px;
  914. margin-top: 0;
  915. }
  916. .footer_layout .lay_footer .footer_menu .logo .contact_view .qrcode {
  917. margin-top: 35px;
  918. }
  919. .footer_layout .lay_footer .footer_menu .logo .contact_view .qrcode img {
  920. height: 120px;
  921. object-fit: contain;
  922. }
  923. .footer_layout .lay_footer .footer_menu .menus .wp-menu {
  924. flex: 1;
  925. padding: 30px 0 0 75px;
  926. display: grid;
  927. gap: 40px;
  928. grid-template-columns: repeat(5, 1fr);
  929. }
  930. .footer_layout .lay_footer .footer_menu .menus .menu-link {
  931. font-size: 18px;
  932. color: #ffffff;
  933. }
  934. .footer_layout .lay_footer .footer_menu .menus .sub-link {
  935. margin-top: 18px;
  936. display: block;
  937. font-size: 14px;
  938. color: rgba(255, 255, 255, 0.5);
  939. }
  940. .footer_layout .lay_footer .footer_menu .menus .sub-link:hover {
  941. color: #ffffff;
  942. }
  943. .footer_layout .lay_footer .footer_menu .menus .sub-menu {
  944. margin-top: 20px;
  945. }
  946. .footer_layout .copyright {
  947. padding: 28px 20px;
  948. font-size: 12px;
  949. line-height: 1.5;
  950. text-align: center;
  951. background-color: #242424;
  952. color: rgba(255, 255, 255, 0.6);
  953. }
  954. .page_title_box {
  955. position: relative;
  956. height: 500px;
  957. background-position: center center;
  958. background-repeat: no-repeat;
  959. background-size: cover;
  960. }
  961. .page_title_box img {
  962. display: none;
  963. }
  964. .page_title_box::after {
  965. content: "";
  966. position: absolute;
  967. bottom: 0;
  968. left: 0;
  969. width: 100%;
  970. height: 220px;
  971. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  972. opacity: 0.7;
  973. z-index: 1;
  974. }
  975. .page_title_box .title {
  976. position: relative;
  977. height: 100%;
  978. display: flex;
  979. flex-direction: column;
  980. justify-content: flex-end;
  981. padding-bottom: 28px;
  982. z-index: 2;
  983. }
  984. .page_title_box .title h1 {
  985. font-size: 36px;
  986. font-weight: 400;
  987. margin-bottom: 16px;
  988. color: #fff;
  989. }
  990. .page_title_box .title h2 {
  991. margin-bottom: 0;
  992. height: 1em;
  993. font-size: 14px;
  994. font-weight: 300;
  995. color: #fff;
  996. }
  997. .content_wrapper {
  998. flex: 1;
  999. padding-left: 40px;
  1000. }
  1001. .content_wrapper .page_article_box {
  1002. padding: 20px 28px;
  1003. background-color: #fff;
  1004. }
  1005. .content_wrapper .page_article_box .list_title {
  1006. padding-bottom: 20px;
  1007. font-weight: 500;
  1008. font-size: 20px;
  1009. color: #111111;
  1010. line-height: 26px;
  1011. border-bottom: 1px solid #e5e5e5;
  1012. }
  1013. .article {
  1014. padding: 20px 28px;
  1015. background-color: #fff;
  1016. }
  1017. .article h1.arti_title {
  1018. line-height: 36px;
  1019. font-family: "Microsoft YaHei";
  1020. font-size: 28px;
  1021. color: #333;
  1022. } /**文章标题**/
  1023. .article h2.arti_title {
  1024. line-height: 28px;
  1025. font-family: "Microsoft YaHei";
  1026. font-size: 16px;
  1027. color: var(--vt-c-text-light-2);
  1028. } /**文章副标题**/
  1029. .article .arti_metas {
  1030. padding-top: 10px;
  1031. }
  1032. .article .arti_metas span {
  1033. margin: 0 5px;
  1034. font-size: 12px;
  1035. color: #787878;
  1036. } /**文章其他属性**/
  1037. .article .entry {
  1038. margin: 0 auto;
  1039. overflow: hidden;
  1040. margin-top: 30px;
  1041. } /**文章内容**/
  1042. .article .entry .read,
  1043. .page_article_box .wp_entry {
  1044. font-size: 14px;
  1045. line-height: 1.5;
  1046. }
  1047. .article .entry .read p,
  1048. .page_article_box .wp_entry p {
  1049. margin-bottom: 1em;
  1050. }
  1051. .article .entry .read img,
  1052. .page_article_box .wp_entry img {
  1053. margin: 0 auto;
  1054. max-width: 100%;
  1055. } /**文章阅读部分图片大小限制**/
  1056. .article .entry .read table,
  1057. .page_article_box .wp_entry table {
  1058. border: none !important;
  1059. }
  1060. .article .entry .read table td {
  1061. background-color: transparent;
  1062. }
  1063. .page_tabs_box {
  1064. position: relative;
  1065. width: 220px;
  1066. }
  1067. .page_tabs_box .column_title {
  1068. margin-bottom: 16px;
  1069. padding: 24px 20px;
  1070. width: 100%;
  1071. font-weight: 600;
  1072. font-size: 28px;
  1073. color: #ffffff;
  1074. white-space: nowrap;
  1075. overflow: hidden;
  1076. background: var(--vt-c-primary);
  1077. }
  1078. .page_tabs_box .page_tab_list {
  1079. position: relative;
  1080. width: 100%;
  1081. background-color: #fff;
  1082. }
  1083. .page_tabs_box .page_tab_list .page_list_item {
  1084. width: 100%;
  1085. overflow: hidden;
  1086. border-bottom: 1px solid #e5e5e5;
  1087. }
  1088. .page_tabs_box .page_tab_list .page_list_item:last-child {
  1089. border-bottom: none;
  1090. }
  1091. .page_tabs_box .page_tab_list .page_list_item.selected .sub_list,
  1092. .page_tabs_box .page_tab_list .page_list_item.parent .sub_list {
  1093. display: block;
  1094. }
  1095. .page_tabs_box .page_tab_list .page_list_item .sub_list {
  1096. display: none;
  1097. padding: 0 20px 20px;
  1098. width: 100%;
  1099. }
  1100. .page_tab_list .sub_list .sub_item {
  1101. margin-bottom: 5px;
  1102. }
  1103. .page_tab_list .sub_list .sub_item:last-child {
  1104. margin-bottom: 0;
  1105. }
  1106. .page_tab_list .sub_list .sub_item .sub_item_link {
  1107. display: block;
  1108. padding: 8px 10px;
  1109. color: #666;
  1110. font-size: 14px;
  1111. font-weight: 500;
  1112. border-radius: 2px;
  1113. }
  1114. .page_tab_list .sub_list .sub_item .sub_item_link:hover,
  1115. .page_tab_list .sub_list .sub_item .sub_item_link.selected {
  1116. color: var(--vt-c-primary);
  1117. background-color: rgba(65, 150, 156, 0.1);
  1118. }
  1119. .page_tabs_box .page_tab_list .page_list_item .item_link {
  1120. position: relative;
  1121. display: block;
  1122. width: 100%;
  1123. padding: 20px 18px;
  1124. color: #666;
  1125. font-size: 16px;
  1126. text-overflow: ellipsis;
  1127. overflow: hidden;
  1128. white-space: nowrap;
  1129. }
  1130. .page_tabs_box .page_tab_list .page_list_item .item_link::after {
  1131. content: "";
  1132. position: absolute;
  1133. top: 50%;
  1134. left: 0;
  1135. -webkit-transform: translateY(-50%);
  1136. -ms-transform: translateY(-50%);
  1137. transform: translateY(-50%);
  1138. height: 0;
  1139. width: 0;
  1140. border-left: 3px solid var(--vt-c-primary);
  1141. }
  1142. .page_tabs_box .page_tab_list .page_list_item .item_link.selected,
  1143. .page_tabs_box .page_tab_list .page_list_item .item_link.parent {
  1144. font-weight: 500;
  1145. color: var(--vt-c-primary);
  1146. }
  1147. .page_tabs_box .page_tab_list .page_list_item .item_link.selected::after,
  1148. .page_tabs_box .page_tab_list .page_list_item .item_link.parent::after {
  1149. height: 18px;
  1150. }
  1151. .page_article_list,
  1152. .page_teacher_list {
  1153. display: block;
  1154. padding: 30px 0 50px;
  1155. }
  1156. .page_teacher_list {
  1157. width: 100%;
  1158. overflow: hidden;
  1159. }
  1160. .page_teacher_list .item {
  1161. display: flex;
  1162. align-items: center;
  1163. margin-bottom: 20px;
  1164. }
  1165. .page_teacher_list .item .list_img {
  1166. width: 160px;
  1167. height: 160px;
  1168. padding-bottom: 20px;
  1169. overflow: hidden;
  1170. }
  1171. .page_teacher_list .item .info_box {
  1172. flex: 1;
  1173. height: 160px;
  1174. padding: 0 16px 20px;
  1175. border-bottom: 1px solid #e5e5e5;
  1176. }
  1177. .page_teacher_list .item .info_box .item_tit {
  1178. width: 100%;
  1179. font-weight: 500;
  1180. font-size: 18px;
  1181. color: #333333;
  1182. line-height: 24px;
  1183. white-space: nowrap;
  1184. text-overflow: ellipsis;
  1185. overflow: hidden;
  1186. }
  1187. .page_teacher_list .item .info_box .item_desc {
  1188. height: 70px;
  1189. margin-top: 15px;
  1190. font-size: 12px;
  1191. line-height: 20px;
  1192. font-weight: 400;
  1193. color: #666666;
  1194. overflow: hidden;
  1195. word-break: break-all;
  1196. }
  1197. .page_teacher_list .item .info_box .list_more {
  1198. margin-top: 0;
  1199. text-align: right;
  1200. }
  1201. .page_teacher_list .item img {
  1202. width: 160px;
  1203. height: 160px;
  1204. object-fit: cover;
  1205. border-radius: 80px;
  1206. transition: all 0.3s ease-in-out;
  1207. }
  1208. .page_teacher_list .item:hover img {
  1209. transform: scale(1.2);
  1210. }
  1211. .page_def_list {
  1212. display: block;
  1213. padding: 30px 0 50px;
  1214. }
  1215. .page_def_list .item {
  1216. position: relative;
  1217. display: flex;
  1218. align-items: center;
  1219. border-bottom: 1px solid #e5e5e5;
  1220. }
  1221. .page_def_list .item:hover {
  1222. background-color: #f5f5f5;
  1223. }
  1224. .page_def_list .item .item_title {
  1225. flex: 1;
  1226. }
  1227. .page_def_list .item .item_date {
  1228. font-size: 12px;
  1229. color: #747474;
  1230. }
  1231. .page_def_list .item:hover a {
  1232. color: var(--vt-c-primary);
  1233. }
  1234. .page_def_list .item a {
  1235. position: relative;
  1236. display: block;
  1237. line-height: 20px;
  1238. width: 100%;
  1239. font-size: 16px;
  1240. padding: 12px 20px;
  1241. text-overflow: ellipsis;
  1242. white-space: nowrap;
  1243. overflow: hidden;
  1244. }
  1245. .header_btns {
  1246. display: flex;
  1247. align-items: center;
  1248. }
  1249. .search_box {
  1250. position: relative;
  1251. padding-left: 20px;
  1252. }
  1253. .search_box .wp-search {
  1254. display: block;
  1255. position: absolute;
  1256. top: 0;
  1257. right: 40px;
  1258. width: 0;
  1259. height: 50px;
  1260. background-color: #fff;
  1261. overflow: hidden;
  1262. }
  1263. .search_box .wp-search .form_box {
  1264. width: 100%;
  1265. display: flex;
  1266. align-items: center;
  1267. }
  1268. .search_box .wp-search .form_box .search-input {
  1269. flex: 1;
  1270. }
  1271. .search_box .wp-search .form_box .search-input input {
  1272. display: inline-block;
  1273. line-height: 1.5;
  1274. width: 100%;
  1275. padding: 6px 14px;
  1276. color: rgba(0, 0, 0, 0.85);
  1277. font-size: 14px;
  1278. background-color: transparent;
  1279. border: 1px solid #d9d9d9;
  1280. border-radius: 2px 0 0 2px;
  1281. transition: all 0.3s;
  1282. }
  1283. .search_box .wp-search .form_box .search-btn input {
  1284. background-color: var(--vt-c-primary);
  1285. color: #fff;
  1286. line-height: 1.5;
  1287. font-size: 14px;
  1288. padding: 6px 20px;
  1289. border: 1px solid var(--vt-c-primary);
  1290. border-radius: 0 2px 2px 0;
  1291. cursor: pointer;
  1292. }
  1293. .search_box .search_icon {
  1294. display: block;
  1295. width: 40px;
  1296. height: 40px;
  1297. background: url("../images/icon_search.png") no-repeat center/contain;
  1298. cursor: pointer;
  1299. }
  1300. .search_box .search_icon.close {
  1301. background: url("../images/icon_close.png") no-repeat center/contain;
  1302. }
  1303. .page_article_box .wp_paging {
  1304. margin-top: 20px;
  1305. float: none;
  1306. text-align: center;
  1307. }
  1308. .page_article_box .wp_paging li {
  1309. float: none;
  1310. }