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: 420px;
  25. height: 58px;
  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. height: 430px;
  258. object-fit: cover;
  259. }
  260. .news_lay_box .news_lay_item .list_item .cover {
  261. display: none;
  262. height: 430px;
  263. width: 100%;
  264. overflow: hidden;
  265. }
  266. .news_lay_box .news_lay_item .list_item.news_1 {
  267. display: block;
  268. }
  269. .news_lay_box .news_lay_item .list_item .item_info {
  270. display: flex;
  271. align-items: center;
  272. justify-content: space-between;
  273. }
  274. .news_lay_box .news_lay_item .list_item.news_1 .item_info {
  275. position: absolute;
  276. display: block;
  277. left: 0;
  278. bottom: 20px;
  279. width: 100%;
  280. height: 80px;
  281. padding: 10px 20px;
  282. background: linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, #000000 100%);
  283. color: #fff;
  284. }
  285. .news_lay_box .news_lay_item .list_item.news_1 .cover {
  286. display: block;
  287. }
  288. .news_lay_box .news_lay_item .list_item.news_1 .first_date {
  289. display: block;
  290. }
  291. .news_lay_box .news_lay_item .list_item.news_1 .item_date {
  292. display: none;
  293. }
  294. .news_lay_box .news_lay_item .list_item .first_date {
  295. display: none;
  296. font-size: 16px;
  297. }
  298. .news_lay_box .news_lay_item .list_item .item_date {
  299. display: block;
  300. color: #848484;
  301. font-size: 12px;
  302. }
  303. .news_lay_box .news_lay_item .list_item.news_1 {
  304. padding-top: 0;
  305. font-size: 24px;
  306. line-height: 28px;
  307. }
  308. .news_lay_box .news_lay_item .list_item.news_1 .title {
  309. padding-right: 0;
  310. }
  311. .news_lay_box .news_lay_item .list_item.news_1 a {
  312. color: #fff;
  313. }
  314. .news_lay_box .news_lay_item .list_item.news_1.item:hover a {
  315. color: #fff;
  316. }
  317. .news_lay_box .news_lay_item .list_item .title {
  318. flex: 1;
  319. padding-right: 30px;
  320. text-overflow: ellipsis;
  321. white-space: nowrap;
  322. overflow: hidden;
  323. }
  324. .news_lay_box .news_lay_item .s_item {
  325. padding: 12px 0;
  326. font-size: 14px;
  327. line-height: 28px;
  328. border-bottom: 1px solid #e5e5e5;
  329. }
  330. .news_lay_box .news_lay_item .s_item .title {
  331. width: 100%;
  332. overflow: hidden;
  333. text-overflow: ellipsis;
  334. white-space: nowrap;
  335. }
  336. .news_lay_box .news_lay_item .s_item .item_date {
  337. font-size: 12px;
  338. color: #848484;
  339. }
  340. .news_lay_box .news_lay_item .s_item img {
  341. width: 100%;
  342. height: 210px;
  343. object-fit: cover;
  344. }
  345. .news_lay_box .news_lay_item .s_item .cover {
  346. display: none;
  347. height: 210px;
  348. width: 100%;
  349. overflow: hidden;
  350. margin-bottom: 10px;
  351. }
  352. .news_lay_box .news_lay_item .s_item.news_1 {
  353. padding-top: 0;
  354. font-size: 16px;
  355. }
  356. .news_lay_box .news_lay_item .s_item.news_1 .cover {
  357. display: block;
  358. }
  359. .news_lay_box .news_lay_item .item {
  360. width: 100%;
  361. color: var(--vt-c-indigo);
  362. cursor: pointer;
  363. overflow: hidden;
  364. transition: all 0.2s ease-in-out;
  365. }
  366. .news_lay_box .news_lay_item .item:hover a {
  367. color: var(--vt-c-primary);
  368. }
  369. .news_lay_box .news_lay_item .item a:hover {
  370. color: var(--vt-c-primary);
  371. }
  372. .news_lay_box .news_lay_item .item:hover img {
  373. transform: scale(1.2);
  374. transition: all 0.2s ease-in-out;
  375. }
  376. .list_more {
  377. text-align: center;
  378. }
  379. .list_more.mt {
  380. margin-top: 50px;
  381. }
  382. .list_more .more_text {
  383. color: var(--vt-c-primary);
  384. cursor: pointer;
  385. }
  386. .list_more .arrow {
  387. display: inline-block;
  388. margin-left: 6px;
  389. width: 18px;
  390. height: 18px;
  391. object-fit: contain;
  392. vertical-align: text-bottom;
  393. background: url("../images/arrow_right_primary.png") no-repeat center/contain;
  394. }
  395. .spe_cards {
  396. display: flex;
  397. height: 460px;
  398. }
  399. .spe_cards .cards_item {
  400. position: relative;
  401. flex: 1;
  402. margin: 0 12px;
  403. height: 460px;
  404. padding: 70px 20px 40px;
  405. color: #fff;
  406. box-sizing: border-box;
  407. background-color: #fff;
  408. transition: all 0.3s ease-in-out;
  409. }
  410. .spe_cards .cards_item:first-child {
  411. margin-left: 0;
  412. }
  413. .spe_cards .cards_item:last-child {
  414. margin-right: 0;
  415. }
  416. .spe_cards .cards_item .card_icon {
  417. line-height: 1;
  418. }
  419. .spe_cards .cards_item .card_icon {
  420. width: 72px;
  421. height: 72px;
  422. }
  423. .spe_cards .cards_item .card_icon.icon_1 {
  424. background: url("../images/icon_home_specialty_1.png") no-repeat center /
  425. contain;
  426. }
  427. .spe_cards .cards_item:hover .card_icon.icon_1 {
  428. background: url("../images/icon_home_specialty_1_hover.png") no-repeat center /
  429. contain;
  430. }
  431. .spe_cards .cards_item .card_icon.icon_2 {
  432. background: url("../images/icon_home_specialty_2.png") no-repeat center /
  433. contain;
  434. }
  435. .spe_cards .cards_item:hover .card_icon.icon_2 {
  436. background: url("../images/icon_home_specialty_2_hover.png") no-repeat center /
  437. contain;
  438. }
  439. .spe_cards .cards_item .card_icon.icon_3 {
  440. background: url("../images/icon_home_specialty_3.png") no-repeat center /
  441. contain;
  442. }
  443. .spe_cards .cards_item:hover .card_icon.icon_3 {
  444. background: url("../images/icon_home_specialty_3_hover.png") no-repeat center /
  445. contain;
  446. }
  447. .spe_cards .cards_item .card_icon.icon_4 {
  448. background: url("../images/icon_home_specialty_4.png") no-repeat center /
  449. contain;
  450. }
  451. .spe_cards .cards_item:hover .card_icon.icon_4 {
  452. background: url("../images/icon_home_specialty_4_hover.png") no-repeat center /
  453. contain;
  454. }
  455. .spe_cards .cards_item .card_icon.icon_5 {
  456. background: url("../images/icon_home_specialty_5.png") no-repeat center /
  457. contain;
  458. }
  459. .spe_cards .cards_item:hover .card_icon.icon_5 {
  460. background: url("../images/icon_home_specialty_5_hover.png") no-repeat center /
  461. contain;
  462. }
  463. .spe_cards .cards_item .card_tit {
  464. margin-top: 20px;
  465. font-size: 20px;
  466. line-height: 1;
  467. color: var(--vt-c-primary);
  468. }
  469. .spe_cards .cards_item .card_tit a {
  470. color: var(--vt-c-primary);
  471. }
  472. .spe_cards .cards_item:hover .card_tit,
  473. .spe_cards .cards_item:hover .card_tit a {
  474. color: #fff;
  475. }
  476. .spe_cards .cards_item .card_desc a {
  477. color: #fff;
  478. }
  479. .spe_cards .cards_item .card_desc {
  480. position: absolute;
  481. bottom: 0;
  482. left: 0;
  483. width: 100%;
  484. padding: 0 20px 40px;
  485. opacity: 0;
  486. }
  487. .spe_cards .cards_item .card_desc .desc {
  488. font-size: 14px;
  489. line-height: 24px;
  490. }
  491. .spe_cards .cards_item .card_desc .more {
  492. margin-top: 20px;
  493. text-align: r;
  494. }
  495. .spe_cards .cards_item .card_desc .more .more_text {
  496. font-size: 16px;
  497. color: #fff;
  498. }
  499. .spe_cards .cards_item .card_desc .more .arrow {
  500. margin-left: 6px;
  501. width: 18px;
  502. height: 18px;
  503. display: inline-block;
  504. object-fit: contain;
  505. vertical-align: text-bottom;
  506. background: url("../images/arrow_right.png") no-repeat center/contain;
  507. }
  508. .spe_cards .cards_item:hover {
  509. flex: 2;
  510. background-color: var(--vt-c-primary);
  511. }
  512. .spe_cards .cards_item:hover .card_desc {
  513. animation: fadeInUp 0.3s ease-in-out;
  514. animation-fill-mode: forwards;
  515. }
  516. .wrapper.wrapper_teacher_bg {
  517. background: url("../images/bg_teachers.png") no-repeat center/cover;
  518. }
  519. /*teacher*/
  520. .teachers_box .teachers_swiper {
  521. width: 100%;
  522. display: grid;
  523. gap: 24px;
  524. grid-template-columns: repeat(5, 1fr);
  525. }
  526. .teachers_box .teachers_swiper .teacher_slide {
  527. text-align: center;
  528. }
  529. .teachers_box .teacher_item {
  530. width: 100%;
  531. position: relative;
  532. }
  533. .teachers_box .teacher_item a {
  534. display: block;
  535. position: relative;
  536. padding-top: 100%;
  537. }
  538. .teachers_box .teacher_item img {
  539. position: absolute;
  540. top: 0;
  541. left: 0;
  542. width: 100%;
  543. height: 100%;
  544. object-fit: cover;
  545. border-radius: 50%;
  546. transition: all 0.3s linear;
  547. }
  548. .teachers_box .teacher_item:hover img {
  549. transform: scale(1.1);
  550. }
  551. .teachers_box .teacher_slide .item_footer {
  552. margin-top: 20px;
  553. display: block;
  554. }
  555. .teachers_box .teacher_slide .name a {
  556. color: #000;
  557. font-size: 20px;
  558. font-weight: 600;
  559. }
  560. .teachers_box .teacher_slide:hover .name a {
  561. color: var(--vt-c-primary);
  562. }
  563. .tabs_header {
  564. display: flex;
  565. align-items: center;
  566. margin-bottom: 30px;
  567. }
  568. .tabs_header .home_lay_title {
  569. margin-bottom: 0;
  570. }
  571. .tabs_header .tabs_nav_list {
  572. flex: 1;
  573. position: relative;
  574. display: flex;
  575. align-self: stretch;
  576. overflow: hidden;
  577. white-space: nowrap;
  578. justify-content: flex-end;
  579. }
  580. .tabs_header .tabs_nav_list .list_item {
  581. position: relative;
  582. padding: 14px 0;
  583. font-size: 18px;
  584. color: rgba(0, 0, 0, 0.8);
  585. cursor: pointer;
  586. }
  587. .works_tab .tabs_header .tabs_nav_list .list_item {
  588. color: rgba(255, 255, 255, 0.8);
  589. }
  590. .tabs_header .tabs_nav_list .list_item.selected {
  591. color: #000;
  592. }
  593. .works_tab .tabs_header .tabs_nav_list .list_item.selected {
  594. color: #fff;
  595. }
  596. .tabs_header .tabs_nav_list .list_item.selected::after {
  597. position: absolute;
  598. content: "";
  599. bottom: 0;
  600. left: 50%;
  601. -webkit-transform: translateX(-50%);
  602. -ms-transform: translateX(-50%);
  603. transform: translateX(-50%);
  604. width: 28px;
  605. height: 2px;
  606. background-color: var(--vt-c-primary);
  607. }
  608. .works_tab .tabs_header .tabs_nav_list .list_item.selected::after {
  609. background-color: #fff;
  610. }
  611. .tabs_header .tabs_nav_list .list_item + .list_item {
  612. margin-left: 30px;
  613. }
  614. .tab_list {
  615. display: grid;
  616. grid-template-columns: repeat(4, 1fr);
  617. gap: 24px;
  618. }
  619. .tab_list.research_list {
  620. grid-template-columns: repeat(2, 1fr);
  621. }
  622. .tab_list .list_item,
  623. .page_article_list .list_item {
  624. width: 100%;
  625. background-color: #fff;
  626. overflow: hidden;
  627. position: relative;
  628. }
  629. .tab_list .list_item .item {
  630. position: relative;
  631. display: block;
  632. /* border-bottom: 2px solid rgba(159, 159, 159, 0.5); */
  633. cursor: pointer;
  634. }
  635. .page_article_list .list_item .item {
  636. display: flex;
  637. align-items: center;
  638. margin-bottom: 20px;
  639. }
  640. .page_article_list .list_item .item:hover {
  641. background-color: #f5f5f5;
  642. }
  643. /* .tab_list .list_item .item::before {
  644. content: "";
  645. position: absolute;
  646. bottom: 0;
  647. right: 0;
  648. border-width: 6px;
  649. border-style: solid;
  650. border-color: transparent rgba(159, 159, 159, 0.5) rgba(159, 159, 159, 0.5)
  651. transparent;
  652. } */
  653. /* .tab_list .list_item .item::after {
  654. content: "";
  655. position: absolute;
  656. bottom: -2px;
  657. right: 0;
  658. width: 0;
  659. height: 2px;
  660. background-color: var(--vt-c-primary);
  661. transition: width 0.3s ease-in-out;
  662. }
  663. .tab_list .list_item .item:hover::before {
  664. border-color: transparent var(--vt-c-primary) var(--vt-c-primary) transparent;
  665. }
  666. .tab_list .list_item .item:hover::after {
  667. width: 100%;
  668. } */
  669. .tab_list .list_item .item:hover img,
  670. .page_article_list .list_item .item:hover img {
  671. transform: scale(1.2);
  672. }
  673. .tab_list.research_list .list_item .item {
  674. position: relative;
  675. }
  676. .tab_list.research_list .list_item .item .list_img {
  677. width: 100%;
  678. height: 400px;
  679. overflow: hidden;
  680. }
  681. .tab_list.research_list .list_item img {
  682. height: 400px;
  683. }
  684. .tab_list.research_list .list_item .item_tit a {
  685. color: #fff;
  686. }
  687. .tab_list.research_list .list_item .item:hover .item_tit a {
  688. color: #fff;
  689. }
  690. .tab_list.research_list .list_item .item .info_box {
  691. position: absolute;
  692. left: 0;
  693. bottom: 0;
  694. padding: 30px 20px;
  695. width: 100%;
  696. color: #fff;
  697. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  698. opacity: 0;
  699. overflow: hidden;
  700. }
  701. .tab_list.research_list .list_item .item:hover .info_box {
  702. animation: fadeInUp 0.3s ease-in-out;
  703. animation-fill-mode: forwards;
  704. }
  705. .tab_list.research_list .list_item .item .info_box .item_tit {
  706. height: auto;
  707. font-size: 20px;
  708. font-weight: 600;
  709. width: 100%;
  710. overflow: hidden;
  711. text-overflow: ellipsis;
  712. white-space: nowrap;
  713. color: #fff;
  714. }
  715. .tab_list.research_list .list_item .item .info_box .item_date {
  716. color: #fff;
  717. }
  718. .tab_list .list_item .list_img {
  719. width: 100%;
  720. height: 300px;
  721. overflow: hidden;
  722. }
  723. .tab_list .list_item img {
  724. width: 100%;
  725. height: 300px;
  726. object-fit: cover;
  727. transition: all 0.3s ease-in-out;
  728. }
  729. .tab_list .list_item .info_box {
  730. padding: 16px 18px;
  731. }
  732. .tab_list .list_item .item_tit {
  733. height: 48px;
  734. font-size: 16px;
  735. line-height: 24px;
  736. color: var(--vt-c-indigo);
  737. overflow: hidden;
  738. }
  739. .tab_list .list_item .item:hover .item_tit a {
  740. color: var(--vt-c-primary);
  741. }
  742. .tab_list .list_item .item_tit a {
  743. color: var(--vt-c-indigo);
  744. }
  745. .tab_list .list_item .item_tit a:hover {
  746. color: var(--vt-c-primary);
  747. }
  748. .tab_list .list_item .item_desc {
  749. height: 72px;
  750. overflow: hidden;
  751. margin-top: 20px;
  752. font-size: 16px;
  753. line-height: 24px;
  754. font-weight: 400;
  755. color: #666666;
  756. word-break: break-all;
  757. }
  758. .tab_list .list_item .item_desc a {
  759. color: #666666;
  760. }
  761. .tab_list .list_item .item_desc a:hover {
  762. color: var(--vt-c-primary);
  763. }
  764. .tab_list .list_item .item_date {
  765. font-size: 14px;
  766. margin-top: 10px;
  767. font-weight: 400;
  768. color: #999999;
  769. }
  770. .page_article_list .list_img {
  771. overflow: hidden;
  772. }
  773. .page_article_list img {
  774. width: 240px;
  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: 58px;
  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. }