12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331 |
- @import "./base.css";
- .headtop {
- background-color: #fff;
- }
- .header_wapper {
- position: fixed;
- left: 0;
- top: 0;
- z-index: 200;
- width: 100%;
- box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
- }
- .header_layout {
- display: flex;
- align-items: center;
- padding: 16px 25px;
- background: #fff;
- }
- .header_logo a {
- display: block;
- font-size: 0;
- }
- .header_logo img {
- max-width: 440px;
- height: 65px;
- object-fit: contain;
- }
- .header_layout .header_menu {
- position: relative;
- margin-left: 50px;
- flex: 1;
- }
- .header_layout .nav .wp-menu {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .header_layout .nav .wp-menu .menu-item {
- width: 10%;
- margin-top: 16px;
- padding-bottom: 22px;
- max-width: 120px;
- position: relative;
- }
- .header_layout .nav .wp-menu .menu-item .menu-link {
- display: inline-block;
- width: 100%;
- font-size: 18px;
- line-height: 20px;
- text-align: center;
- white-space: nowrap;
- color: #767676;
- }
- .header_layout .nav .wp-menu .menu-item::before {
- content: "";
- position: absolute;
- bottom: 10px;
- left: 50%;
- transform: translateX(-50%);
- width: 0;
- height: 2px;
- background-color: var(--vt-c-primary);
- transition: width 0.3s ease-in-out;
- }
- .header_layout .nav .wp-menu .menu-item a:hover {
- color: var(--vt-c-primary);
- }
- .header_layout .nav .wp-menu .menu-item.hover::before {
- width: 24px;
- }
- .header_layout .nav .wp-menu .menu-item.hover .menu-link {
- color: var(--vt-c-primary);
- }
- .header_layout .nav .wp-menu .menu-item::after {
- content: "";
- position: absolute;
- top: 2px;
- right: 0;
- height: 20px;
- border-right: 1px solid rgba(132, 132, 132, 20%);
- }
- .header_layout .nav .sub-menu {
- display: none;
- position: absolute;
- left: 50%;
- top: 38px;
- min-width: 130px;
- transform: translateX(-50%);
- z-index: 100;
- padding: 10px 0;
- background: #fff;
- box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
- 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
- }
- .header_layout .nav .sub-menu .sub-item {
- position: relative;
- white-space: nowrap;
- vertical-align: top;
- _zoom: 1;
- }
- .header_layout .nav .sub-menu .sub-item a {
- display: block;
- height: 32px;
- line-height: 32px;
- padding: 0 12px;
- font-size: 16px;
- text-align: center;
- }
- .header_layout .nav .sub-menu .sub-item a:hover {
- color: var(--vt-c-primary);
- background-color: #f5f5f5;
- }
- .header_layout .mobile_menu {
- display: none;
- }
- .mobile_menu .mobile_menu_taggle {
- width: 28px;
- height: 28px;
- }
- .wp-navi-aside {
- display: none;
- }
- .banner_wrapper {
- background: #fff;
- }
- .banner_wrapper .inner {
- width: auto;
- padding: 0;
- max-width: 1920px;
- text-align: center;
- position: relative;
- }
- .banner_wrapper .focus .focus-pagination {
- position: absolute;
- left: 50%;
- bottom: 12px;
- right: auto;
- height: auto;
- transform: translateX(-50%);
- display: inline-block;
- padding: 6px 9px;
- border-radius: 30px;
- background-color: rgba(0, 0, 0, 0.56);
- z-index: 60;
- font-size: 0;
- }
- .banner_wrapper .focus .focus-page {
- display: inline-block;
- width: 12px;
- height: 12px;
- margin: 0 4px;
- line-height: 1;
- font-size: 0;
- border-radius: 6px;
- background-color: rgba(255, 255, 255, 0.6);
- -webkit-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- cursor: pointer;
- }
- .banner_wrapper .focus .focus-page-active {
- width: 24px;
- background-color: rgba(255, 255, 255, 1);
- }
- .banner_wrapper .focus .focus-navigation {
- width: 66px;
- height: 66px;
- opacity: 0.7;
- filter: alpha(opacity=70);
- font-size: 0;
- }
- .banner_wrapper .focus .focus-navigation:hover {
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .banner_wrapper .focus .focus-navigation:active {
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .banner_wrapper .focus .focus-prev {
- background: url("../images/botton_prev.png") no-repeat center/contain;
- }
- .banner_wrapper .focus .focus-next {
- background: url("../images/botton_next.png") no-repeat center/contain;
- }
- .header_btm_wrapper {
- padding: 130px 0;
- display: flex;
- width: 1200px;
- margin: 0 auto;
- }
- .home_lay_title {
- margin-bottom: 40px;
- font-size: 30px;
- color: var(--vt-c-indigo);
- line-height: 1;
- }
- .home_lay_title span {
- text-transform: uppercase;
- padding-left: 10px;
- font-weight: 100;
- color: rgba(123, 123, 123, 1);
- }
- .home_lay_title.white {
- color: #fff;
- }
- .home_lay_title.white span {
- color: #fff;
- }
- .home_lay_item_box {
- padding: 60px 0;
- }
- .news_tit {
- font-size: 18px;
- color: var(--vt-c-indigo);
- line-height: 1;
- margin-bottom: 14px;
- }
- .news_lay_box {
- display: flex;
- }
- .news_lay_box .news_lay_item {
- flex: 1;
- padding: 0 70px;
- border-right: 1px solid #e5e5e5;
- overflow: hidden;
- }
- .news_lay_box .news_lay_item:first-child {
- padding-left: 0;
- flex: 2;
- max-width: 660px;
- }
- .news_lay_box .news_lay_item:last-child {
- border-right: none;
- padding-right: 0;
- }
- .news_lay_box .news_lay_item .list_item {
- padding: 18px 0;
- font-size: 16px;
- line-height: 28px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #e5e5e5;
- }
- .news_lay_box .news_lay_item .list_item img {
- height: 390px;
- width: 100%;
- object-fit: cover;
- }
- .news_lay_box .news_lay_item .list_item .cover {
- display: none;
- height: 390px;
- width: 100%;
- overflow: hidden;
- }
- .news_lay_box .news_lay_item .list_item.news_1 {
- display: block;
- }
- .news_lay_box .news_lay_item .list_item.news_1 .cover {
- display: block;
- }
- .news_lay_box .news_lay_item .list_item.news_1 .first_date {
- display: block;
- }
- .news_lay_box .news_lay_item .list_item.news_1 .item_date {
- display: none;
- }
- .news_lay_box .news_lay_item .list_item .first_date {
- display: none;
- font-size: 16px;
- margin: 8px 0;
- }
- .news_lay_box .news_lay_item .list_item .item_date {
- display: block;
- }
- .news_lay_box .news_lay_item .list_item.news_1 {
- padding-top: 0;
- font-size: 24px;
- line-height: 36px;
- }
- .news_lay_box .news_lay_item .list_item.news_1 .title {
- padding-right: 0;
- overflow: auto;
- white-space: normal;
- }
- .news_lay_box .news_lay_item .list_item .title {
- flex: 1;
- padding-right: 30px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .news_lay_box .news_lay_item .s_item {
- margin-top: 10px;
- padding: 18px 0;
- font-size: 16px;
- line-height: 28px;
- border-bottom: 1px solid #e5e5e5;
- }
- .news_lay_box .news_lay_item .s_item img {
- height: 210px;
- width: 100%;
- object-fit: cover;
- }
- .news_lay_box .news_lay_item .s_item .cover {
- display: none;
- height: 210px;
- width: 100%;
- overflow: hidden;
- margin-bottom: 10px;
- }
- .news_lay_box .news_lay_item .s_item.news_1 {
- padding-top: 0;
- font-size: 18px;
- }
- .news_lay_box .news_lay_item .s_item.news_1 .cover {
- display: block;
- }
- .news_lay_box .news_lay_item .item {
- width: 100%;
- color: var(--vt-c-indigo);
- cursor: pointer;
- overflow: hidden;
- transition: all 0.2s ease-in-out;
- }
- .news_lay_box .news_lay_item .item:hover {
- color: var(--vt-c-primary);
- }
- .news_lay_box .news_lay_item .item:hover a {
- color: var(--vt-c-primary);
- }
- .news_lay_box .news_lay_item .item:hover img {
- transform: scale(1.2);
- transition: all 0.2s ease-in-out;
- }
- .list_more {
- margin-top: 20px;
- text-align: center;
- }
- .list_more .more_text {
- color: var(--vt-c-primary);
- cursor: pointer;
- }
- .list_more .arrow {
- display: inline-block;
- margin-left: 6px;
- width: 18px;
- height: 18px;
- object-fit: contain;
- vertical-align: text-bottom;
- background: url("../images/arrow_right_primary.png") no-repeat center/contain;
- }
- .spe_cards {
- display: flex;
- height: 460px;
- }
- .spe_cards .cards_item {
- position: relative;
- flex: 1;
- margin: 0 1px;
- height: 460px;
- padding: 70px 20px 40px;
- color: #fff;
- box-sizing: border-box;
- transition: all 0.3s ease-in-out;
- }
- .spe_cards .cards_item .card_icon {
- line-height: 1;
- }
- .spe_cards .cards_item .card_icon {
- width: 72px;
- height: 72px;
- }
- .spe_cards .cards_item .card_icon.icon_1 {
- background: url("../images/icon_home_specialty_1.png") no-repeat center /
- contain;
- }
- .spe_cards .cards_item .card_icon.icon_2 {
- background: url("../images/icon_home_specialty_2.png") no-repeat center /
- contain;
- }
- .spe_cards .cards_item .card_icon.icon_3 {
- background: url("../images/icon_home_specialty_3.png") no-repeat center /
- contain;
- }
- .spe_cards .cards_item .card_icon.icon_4 {
- background: url("../images/icon_home_specialty_4.png") no-repeat center /
- contain;
- }
- .spe_cards .cards_item .card_icon.icon_5 {
- background: url("../images/icon_home_specialty_5.png") no-repeat center /
- contain;
- }
- .spe_cards .cards_item .card_tit {
- margin-top: 20px;
- font-size: 20px;
- line-height: 1;
- }
- .spe_cards .cards_item .card_tit a,
- .spe_cards .cards_item .card_desc a {
- color: #fff;
- }
- .spe_cards .cards_item .card_desc {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- padding: 0 20px 40px;
- opacity: 0;
- }
- .spe_cards .cards_item .card_desc .desc {
- font-size: 14px;
- line-height: 24px;
- }
- .spe_cards .cards_item .card_desc .more {
- margin-top: 20px;
- }
- .spe_cards .cards_item .card_desc .more .more_text {
- font-size: 16px;
- color: #fff;
- }
- .spe_cards .cards_item .card_desc .more .arrow {
- margin-left: 6px;
- width: 18px;
- height: 18px;
- display: inline-block;
- object-fit: contain;
- vertical-align: text-bottom;
- background: url("../images/arrow_right.png") no-repeat center/contain;
- }
- .spe_cards .cards_item.card_1 {
- background: #343e47 url("../images/bg_home_specialty_1.png") no-repeat center /
- cover;
- }
- .spe_cards .cards_item.card_2 {
- background: #cb975b url("../images/bg_home_specialty_2.png") no-repeat center /
- cover;
- }
- .spe_cards .cards_item.card_3 {
- background: #ad947c url("../images/bg_home_specialty_3.png") no-repeat center /
- cover;
- }
- .spe_cards .cards_item.card_4 {
- background: #da737b url("../images/bg_home_specialty_4.png") no-repeat center /
- cover;
- }
- .spe_cards .cards_item.card_5 {
- background: #52a0a7 url("../images/bg_home_specialty_5.png") no-repeat center /
- cover;
- }
- .spe_cards .cards_item:hover {
- flex: 2;
- }
- .spe_cards .cards_item:hover .card_desc {
- animation: fadeInUp 0.3s ease-in-out;
- animation-fill-mode: forwards;
- }
- .wrapper.wrapper_teacher_bg {
- background: linear-gradient(180deg, #f3fbf1 0%, #ffffff 100%);
- }
- /*teacher*/
- .teachers_box .teachers_swiper {
- width: 100%;
- display: grid;
- gap: 24px;
- grid-template-columns: repeat(5, 1fr);
- height: 400px;
- }
- /* .teachers_box .teachers_swiper .teacher_slide {
- width: 370px;
- } */
- .teachers_box .teacher_item {
- width: 100%;
- height: 400px;
- position: relative;
- overflow: hidden;
- }
- .teachers_box .teacher_item img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: all 0.3s ease-in-out;
- }
- .teachers_box .teacher_item:hover .item_footer {
- transform: translateY(0);
- }
- .teachers_box .teacher_item:hover img {
- transform: scale(1.2);
- }
- .teachers_box .teacher_item .item_footer {
- position: absolute;
- display: inline-flex;
- flex-direction: column;
- justify-content: flex-end;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 140px;
- padding: 0 24px 20px;
- transform: translateY(100%);
- background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
- transition: all 0.3s ease-in-out;
- }
- .teachers_box .teacher_item .name a {
- color: #fff;
- font-size: 18px;
- font-weight: 600;
- }
- .tabs_header {
- display: flex;
- align-items: center;
- margin-bottom: 40px;
- }
- .tabs_header .home_lay_title {
- margin-bottom: 0;
- }
- .tabs_header .tabs_nav_list {
- flex: 1;
- position: relative;
- display: flex;
- align-self: stretch;
- overflow: hidden;
- white-space: nowrap;
- justify-content: flex-end;
- }
- .tabs_header .tabs_nav_list .list_item {
- position: relative;
- padding: 14px 0;
- font-size: 18px;
- color: rgba(0, 0, 0, 0.8);
- cursor: pointer;
- }
- .works_tab .tabs_header .tabs_nav_list .list_item {
- color: rgba(255, 255, 255, 0.8);
- }
- .tabs_header .tabs_nav_list .list_item.selected {
- color: #000;
- }
- .works_tab .tabs_header .tabs_nav_list .list_item.selected {
- color: #fff;
- }
- .tabs_header .tabs_nav_list .list_item.selected::after {
- position: absolute;
- content: "";
- bottom: 0;
- left: 50%;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 28px;
- height: 2px;
- background-color: var(--vt-c-primary);
- }
- .works_tab .tabs_header .tabs_nav_list .list_item.selected::after {
- background-color: #fff;
- }
- .tabs_header .tabs_nav_list .list_item + .list_item {
- margin-left: 30px;
- }
- .tab_list {
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 24px;
- }
- .tab_list .list_item,
- .page_article_list .list_item {
- width: 100%;
- background-color: #fff;
- overflow: hidden;
- position: relative;
- }
- .tab_list .list_item .item {
- position: relative;
- display: block;
- border-bottom: 2px solid rgba(159, 159, 159, 0.5);
- cursor: pointer;
- }
- .page_article_list .list_item .item {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- .page_article_list .list_item .item:hover {
- background-color: #f5f5f5;
- }
- .tab_list .list_item .item::before {
- content: "";
- position: absolute;
- bottom: 0;
- right: 0;
- border-width: 6px;
- border-style: solid;
- border-color: transparent rgba(159, 159, 159, 0.5) rgba(159, 159, 159, 0.5)
- transparent;
- }
- .tab_list .list_item .item::after {
- content: "";
- position: absolute;
- bottom: -2px;
- right: 0;
- width: 0;
- height: 2px;
- background-color: var(--vt-c-primary);
- transition: width 0.3s ease-in-out;
- }
- .tab_list .list_item .item:hover::before {
- border-color: transparent var(--vt-c-primary) var(--vt-c-primary) transparent;
- }
- .tab_list .list_item .item:hover::after {
- width: 100%;
- }
- .tab_list .list_item .item:hover img,
- .page_article_list .list_item .item:hover img {
- transform: scale(1.2);
- }
- .tab_list .list_item .list_img {
- width: 100%;
- height: 390px;
- overflow: hidden;
- }
- .tab_list .list_item img {
- width: 100%;
- height: 390px;
- object-fit: cover;
- transition: all 0.3s ease-in-out;
- }
- .tab_list .list_item .info_box {
- padding: 20px 18px;
- }
- .tab_list .list_item .item_tit {
- height: 56px;
- font-size: 20px;
- line-height: 28px;
- color: var(--vt-c-indigo);
- overflow: hidden;
- }
- .tab_list .list_item .item_desc {
- height: 72px;
- overflow: hidden;
- margin-top: 20px;
- font-size: 16px;
- line-height: 24px;
- font-weight: 400;
- color: #666666;
- word-break: break-all;
- }
- .tab_list .list_item .item_date {
- font-size: 14px;
- margin-top: 30px;
- font-weight: 300;
- color: #999999;
- }
- .page_article_list .list_img {
- width: 240px;
- height: 160px;
- overflow: hidden;
- }
- .page_article_list img {
- width: 100%;
- height: 160px;
- object-fit: cover;
- transition: all 0.3s ease-in-out;
- }
- .page_article_list .info_box {
- flex: 1;
- height: 160px;
- padding: 16px;
- }
- .page_article_list .item_tit {
- width: 100%;
- font-weight: 500;
- font-size: 20px;
- color: #333333;
- line-height: 24px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .page_article_list .item_desc {
- height: 70px;
- margin-top: 15px;
- font-size: 12px;
- line-height: 20px;
- font-weight: 400;
- color: #666666;
- overflow: hidden;
- word-break: break-all;
- }
- .page_article_list .item_date {
- font-size: 12px;
- font-weight: 300;
- color: #999999;
- }
- .research_bg {
- background: url("../images/bg_research.png") no-repeat center top/100% auto;
- }
- .teach_bg {
- position: relative;
- }
- .talent_tab {
- position: relative;
- z-index: 2;
- }
- .teach_bg::after {
- position: absolute;
- content: "";
- right: 0;
- top: 40%;
- width: 40%;
- height: 200px;
- background-color: rgba(53, 152, 107, 0.1);
- }
- .work_bg {
- background: url("../images/bg_works.png") no-repeat center top/100% auto;
- }
- .works_tab .tab_list .list_item {
- height: 388px;
- }
- .works_tab .tab_list .list_item .item_link {
- display: block;
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- cursor: pointer;
- }
- .works_tab .tab_list .list_item .item_link .item_txt {
- position: absolute;
- left: 0;
- bottom: 0;
- padding: 30px 40px;
- width: 100%;
- color: #fff;
- background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
- opacity: 0;
- overflow: hidden;
- }
- .works_tab .tab_list .list_item .item_link .item_txt .name {
- font-size: 20px;
- font-weight: 600;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .works_tab .tab_list .list_item .item_link .item_txt .name a {
- color: #fff;
- }
- .works_tab .tab_list .list_item .item_link:hover img {
- transform: scale(1.2);
- }
- .works_tab .tab_list .list_item .item_link:hover .item_txt {
- animation: fadeInUp 0.3s ease-in-out;
- animation-fill-mode: forwards;
- }
- .works_tab .tab_list .list_item img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: all 0.3s ease-in-out;
- }
- @keyframes fadeInUp {
- from {
- opacity: 0;
- transform: translate3d(0, 100%, 0);
- }
- to {
- opacity: 1;
- transform: translate3d(0, 0, 0);
- }
- }
- .services_bg {
- position: relative;
- }
- .services_bg::after {
- position: absolute;
- content: "";
- left: 0;
- top: 40%;
- width: 60%;
- height: 200px;
- background-color: rgba(53, 152, 107, 0.1);
- }
- .service_list {
- position: relative;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 24px;
- z-index: 2;
- }
- .service_list .ser_item {
- background-color: #fff;
- }
- .service_list .ser_item a {
- padding: 30px 50px;
- display: flex;
- align-items: center;
- color: var(--vt-c-indigo);
- }
- .service_list .ser_item a .ser_icon {
- padding-right: 40px;
- border-right: 1px solid #d3d9de;
- }
- .service_list .ser_item a .ser_icon img {
- width: 108px;
- height: 108px;
- object-fit: contain;
- }
- .service_list .ser_item a .ser_tit {
- flex: 1;
- font-size: 24px;
- padding-left: 40px;
- }
- .service_list .ser_item a .ser_tit p {
- margin: 0;
- }
- .service_list .ser_item a .ser_tit .desc {
- margin-top: 20px;
- font-size: 16px;
- line-height: 20px;
- color: #999;
- }
- .service_list .ser_item a:hover .ser_icon img {
- animation: heartBeat 2s ease-in-out infinite;
- }
- @keyframes heartBeat {
- 0% {
- transform: scale(1);
- }
- 14% {
- transform: scale(1.2);
- }
- 28% {
- transform: scale(1);
- }
- 42% {
- transform: scale(1.2);
- }
- 70% {
- transform: scale(1);
- }
- }
- .footer_layout .footer_fix_link {
- position: fixed;
- right: 0;
- top: 50%;
- z-index: 9;
- }
- .footer_layout .top_btn {
- display: none;
- position: fixed;
- right: 0;
- bottom: 40px;
- z-index: 9;
- cursor: pointer;
- }
- .footer_layout .top_btn img {
- width: 40px;
- height: 40px;
- object-fit: contain;
- }
- .footer_layout .footer_fix_link .link_vertical {
- display: inline-flex;
- flex-direction: column;
- }
- .footer_layout .footer_fix_link a {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- writing-mode: vertical-lr;
- width: 40px;
- height: 105px;
- }
- .footer_layout .footer_fix_link .xihua_link {
- background: url("../images/bg_links_1.png") no-repeat center / 100%;
- }
- .footer_layout .footer_fix_link .index_link {
- margin-top: 24px;
- background: url("../images/bg_links_2.png") no-repeat center / 100%;
- }
- .footer_layout .lay_footer {
- background-color: #454847;
- }
- .footer_layout .lay_footer .footer_menu {
- padding: 100px 140px;
- display: flex;
- }
- .footer_layout .lay_footer .footer_menu .logo {
- padding-right: 75px;
- border-right: 1px solid rgba(112, 112, 112, 0.5);
- }
- .footer_layout .lay_footer .footer_menu .logo .footer_logo img {
- height: 65px;
- object-fit: contain;
- }
- .footer_layout .lay_footer .footer_menu .logo .footer_tips {
- margin-top: 88px;
- }
- .footer_layout .lay_footer .footer_menu .logo .footer_tips img {
- height: 38px;
- object-fit: contain;
- }
- .footer_layout .lay_footer .footer_menu .logo .contact_view {
- margin-top: 90px;
- color: #ffffff;
- font-size: 14px;
- }
- .footer_layout .lay_footer .footer_menu .logo .contact_view p {
- margin-top: 18px;
- }
- .footer_layout .lay_footer .footer_menu .logo .contact_view .title {
- font-size: 18px;
- margin-top: 0;
- }
- .footer_layout .lay_footer .footer_menu .logo .contact_view .qrcode {
- margin-top: 35px;
- }
- .footer_layout .lay_footer .footer_menu .logo .contact_view .qrcode img {
- height: 120px;
- object-fit: contain;
- }
- .footer_layout .lay_footer .footer_menu .menus .wp-menu {
- flex: 1;
- padding: 30px 0 0 75px;
- display: grid;
- gap: 40px;
- grid-template-columns: repeat(5, 1fr);
- }
- .footer_layout .lay_footer .footer_menu .menus .menu-link {
- font-size: 18px;
- color: #ffffff;
- }
- .footer_layout .lay_footer .footer_menu .menus .sub-link {
- margin-top: 18px;
- display: block;
- font-size: 14px;
- color: rgba(255, 255, 255, 0.5);
- }
- .footer_layout .lay_footer .footer_menu .menus .sub-link:hover {
- color: #ffffff;
- }
- .footer_layout .lay_footer .footer_menu .menus .sub-menu {
- margin-top: 20px;
- }
- .footer_layout .copyright {
- padding: 28px 20px;
- font-size: 12px;
- line-height: 1.5;
- text-align: center;
- background-color: #242424;
- color: rgba(255, 255, 255, 0.6);
- }
- .page_title_box {
- position: relative;
- height: 500px;
- background-position: center center;
- background-repeat: no-repeat;
- background-size: cover;
- }
- .page_title_box img {
- display: none;
- }
- .page_title_box::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 220px;
- background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
- opacity: 0.7;
- z-index: 1;
- }
- .page_title_box .title {
- position: relative;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- padding-bottom: 28px;
- z-index: 2;
- }
- .page_title_box .title h1 {
- font-size: 36px;
- font-weight: 400;
- margin-bottom: 16px;
- color: #fff;
- }
- .page_title_box .title h2 {
- margin-bottom: 0;
- height: 1em;
- font-size: 14px;
- font-weight: 300;
- color: #fff;
- }
- .content_wrapper {
- flex: 1;
- padding-left: 40px;
- }
- .content_wrapper .page_article_box {
- padding: 20px 28px;
- background-color: #fff;
- }
- .content_wrapper .page_article_box .list_title {
- padding-bottom: 20px;
- font-weight: 500;
- font-size: 20px;
- color: #111111;
- line-height: 26px;
- border-bottom: 1px solid #e5e5e5;
- }
- .article {
- padding: 20px 28px;
- background-color: #fff;
- }
- .article h1.arti_title {
- line-height: 36px;
- font-family: "Microsoft YaHei";
- font-size: 28px;
- color: #333;
- } /**文章标题**/
- .article h2.arti_title {
- line-height: 28px;
- font-family: "Microsoft YaHei";
- font-size: 16px;
- color: var(--vt-c-text-light-2);
- } /**文章副标题**/
- .article .arti_metas {
- padding-top: 10px;
- }
- .article .arti_metas span {
- margin: 0 5px;
- font-size: 12px;
- color: #787878;
- } /**文章其他属性**/
- .article .entry {
- margin: 0 auto;
- overflow: hidden;
- margin-top: 30px;
- } /**文章内容**/
- .article .entry .read,
- .page_article_box .wp_entry {
- font-size: 14px;
- line-height: 1.5;
- }
- .article .entry .read p,
- .page_article_box .wp_entry p {
- margin-bottom: 1em;
- }
- .article .entry .read img,
- .page_article_box .wp_entry img {
- margin: 0 auto;
- max-width: 100%;
- } /**文章阅读部分图片大小限制**/
- .article .entry .read table,
- .page_article_box .wp_entry table {
- border: none !important;
- }
- .article .entry .read table td {
- background-color: transparent;
- }
- .page_tabs_box {
- position: relative;
- width: 220px;
- }
- .page_tabs_box .column_title {
- margin-bottom: 16px;
- padding: 24px 20px;
- width: 100%;
- font-weight: 600;
- font-size: 28px;
- color: #ffffff;
- white-space: nowrap;
- overflow: hidden;
- background: var(--vt-c-primary);
- }
- .page_tabs_box .page_tab_list {
- position: relative;
- width: 100%;
- background-color: #fff;
- }
- .page_tabs_box .page_tab_list .page_list_item {
- width: 100%;
- overflow: hidden;
- border-bottom: 1px solid #e5e5e5;
- }
- .page_tabs_box .page_tab_list .page_list_item:last-child {
- border-bottom: none;
- }
- .page_tabs_box .page_tab_list .page_list_item.selected .sub_list,
- .page_tabs_box .page_tab_list .page_list_item.parent .sub_list {
- display: block;
- }
- .page_tabs_box .page_tab_list .page_list_item .sub_list {
- display: none;
- padding: 0 20px 20px;
- width: 100%;
- }
- .page_tab_list .sub_list .sub_item {
- margin-bottom: 5px;
- }
- .page_tab_list .sub_list .sub_item:last-child {
- margin-bottom: 0;
- }
- .page_tab_list .sub_list .sub_item .sub_item_link {
- display: block;
- padding: 8px 10px;
- color: #666;
- font-size: 14px;
- font-weight: 500;
- border-radius: 2px;
- }
- .page_tab_list .sub_list .sub_item .sub_item_link:hover,
- .page_tab_list .sub_list .sub_item .sub_item_link.selected {
- color: var(--vt-c-primary);
- background-color: rgba(65, 150, 156, 0.1);
- }
- .page_tabs_box .page_tab_list .page_list_item .item_link {
- position: relative;
- display: block;
- width: 100%;
- padding: 20px 18px;
- color: #666;
- font-size: 16px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .page_tabs_box .page_tab_list .page_list_item .item_link::after {
- content: "";
- position: absolute;
- top: 50%;
- left: 0;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- height: 0;
- width: 0;
- border-left: 3px solid var(--vt-c-primary);
- }
- .page_tabs_box .page_tab_list .page_list_item .item_link.selected,
- .page_tabs_box .page_tab_list .page_list_item .item_link.parent {
- font-weight: 500;
- color: var(--vt-c-primary);
- }
- .page_tabs_box .page_tab_list .page_list_item .item_link.selected::after,
- .page_tabs_box .page_tab_list .page_list_item .item_link.parent::after {
- height: 18px;
- }
- .page_article_list,
- .page_teacher_list {
- display: block;
- padding: 30px 0 50px;
- }
- .page_teacher_list {
- width: 100%;
- overflow: hidden;
- }
- .page_teacher_list .item {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- .page_teacher_list .item .list_img {
- width: 160px;
- height: 160px;
- padding-bottom: 20px;
- overflow: hidden;
- }
- .page_teacher_list .item .info_box {
- flex: 1;
- height: 160px;
- padding: 0 16px 20px;
- border-bottom: 1px solid #e5e5e5;
- }
- .page_teacher_list .item .info_box .item_tit {
- width: 100%;
- font-weight: 500;
- font-size: 18px;
- color: #333333;
- line-height: 24px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .page_teacher_list .item .info_box .item_desc {
- height: 70px;
- margin-top: 15px;
- font-size: 12px;
- line-height: 20px;
- font-weight: 400;
- color: #666666;
- overflow: hidden;
- word-break: break-all;
- }
- .page_teacher_list .item .info_box .list_more {
- margin-top: 0;
- text-align: right;
- }
- .page_teacher_list .item img {
- width: 160px;
- height: 160px;
- object-fit: cover;
- border-radius: 80px;
- transition: all 0.3s ease-in-out;
- }
- .page_teacher_list .item:hover img {
- transform: scale(1.2);
- }
- .page_def_list {
- display: block;
- padding: 30px 0 50px;
- }
- .page_def_list .item {
- position: relative;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #e5e5e5;
- }
- .page_def_list .item:hover {
- background-color: #f5f5f5;
- }
- .page_def_list .item .item_title {
- flex: 1;
- }
- .page_def_list .item .item_date {
- font-size: 12px;
- color: #747474;
- }
- .page_def_list .item:hover a {
- color: var(--vt-c-primary);
- }
- .page_def_list .item a {
- position: relative;
- display: block;
- line-height: 20px;
- width: 100%;
- font-size: 16px;
- padding: 12px 20px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .header_btns {
- display: flex;
- align-items: center;
- }
- .search_box {
- position: relative;
- padding-left: 20px;
- }
- .search_box .wp-search {
- display: block;
- position: absolute;
- top: 0;
- right: 40px;
- width: 0;
- height: 50px;
- background-color: #fff;
- overflow: hidden;
- }
- .search_box .wp-search .form_box {
- width: 100%;
- display: flex;
- align-items: center;
- }
- .search_box .wp-search .form_box .search-input {
- flex: 1;
- }
- .search_box .wp-search .form_box .search-input input {
- display: inline-block;
- line-height: 1.5;
- width: 100%;
- padding: 6px 14px;
- color: rgba(0, 0, 0, 0.85);
- font-size: 14px;
- background-color: transparent;
- border: 1px solid #d9d9d9;
- border-radius: 2px 0 0 2px;
- transition: all 0.3s;
- }
- .search_box .wp-search .form_box .search-btn input {
- background-color: var(--vt-c-primary);
- color: #fff;
- line-height: 1.5;
- font-size: 14px;
- padding: 6px 20px;
- border: 1px solid var(--vt-c-primary);
- border-radius: 0 2px 2px 0;
- cursor: pointer;
- }
- .search_box .search_icon {
- display: block;
- width: 40px;
- height: 40px;
- background: url("../images/icon_search.png") no-repeat center/contain;
- cursor: pointer;
- }
- .search_box .search_icon.close {
- background: url("../images/icon_close.png") no-repeat center/contain;
- }
- .page_article_box .wp_paging {
- margin-top: 20px;
- float: none;
- text-align: center;
- }
- .page_article_box .wp_paging li {
- float: none;
- }
|