style.css 31 KB

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