style.css 33 KB

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