﻿@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px
}


/* ==================== Common: base ==================== */

html,
body {
    width: 100%;
    margin: 0 auto;
}

html {
    font-size: 5.2083333333333vw;
}

@media (max-width:1199px) {
    html {
        font-size: 6.6vw !important;
    }
}

@media (max-width:767px) {
    html {
        font-size: 13.3vw !important;
    }
}


/* Common: clearfix */

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Common: legacy IE support */

* html .clearfix {
    height: 0%;
}


/* Common: legacy IE support end */

*+html .clearfix {
    min-height: 0%;
}


/* Common: IE7 fixes */

*+html .clearfix {
    min-height: 0%;
}

@font-face {
    font-family: "闃块噷濡堝鏁伴粦浣?Bold";
    font-weight: 700;
    src: url("../fonts/J70mtDtZvU5r.woff2") format("woff2"), url("../fonts/J70mtDtZvU5r.woff") format("woff");
}

@font-face {
    font-family: "PingFang-Medium";
    src: url("../fonts/PingFang-Medium.ttf");
}

@font-face {
    font-family: "PingFang-Bold";
    src: url("../fonts/PingFang-Bold.ttf");
}

@font-face {
    font-family: "SourceHanSans-Regular";
    src: url("../fonts/SourceHanSans-Regular.otf");
}

@font-face {
    font-family: "SourceHanSans-Medium";
    src: url("../fonts/SourceHanSans-Medium.otf");
}

@font-face {
    font-family: "MiSans-Regular";
    src: url("../fonts/MiSans-Regular.otf");
}

@font-face {
    font-family: "Bebas";
    src: url("../fonts/Bebas.woff");
}


/* Common: original config */

body {
    color: #333;
    background: #ffffff;
    font: .16rem "SourceHanSans-Regular", 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

a {
    color: #333;
    text-decoration: none;
}


/* Common: block display helpers */

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/* Common: original config end */


/* Common: horizontal centering */

.te_c {
    text-align: center;
}


/* Common: relative positioning */

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.transition {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.container {
    max-width: 19.2rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

@media (max-width:1199px) {
    .container {
        width: 100%;
        padding-left: .2rem;
        padding-right: .2rem;
    }
}


/* ==================== Common: header navigation ==================== */

.header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    background: #075ca8;
    transition: all .35s;
}

.header.fixed {
    box-shadow: 0 .06rem .18rem rgba(0, 55, 111, .16);
}

.header-inner {
    position: relative;
    height: 1.3rem;
    display: flex;
    align-items: center;
}

.logo {
    height: .86rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    object-fit: contain;
}

.nav {
    margin-left: auto;
    align-self: flex-end;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav li {
    position: relative;
}

.nav a {
    display: block;
    color: #fff;
    font-size: .21rem;
    line-height: .28rem;
    line-height: .7rem;
}

.nav .arrow {
    display: none;
}

.nav .drop {
    position: absolute;
    left: 50%;
    top: .7rem;
    z-index: 10;
    width: 1.86rem;
    padding: .1rem 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 .1rem .24rem rgba(0, 59, 121, .18);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
}


/* 
.nav .drop:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -.07rem;
    width: .14rem;
    height: .14rem;
    background: rgba(255, 255, 255, .96);
    transform: translateX(-50%) rotate(45deg);
} */

.nav .drop a {
    color: #25547e;
    font-size: .18rem;
    line-height: .38rem;
    padding: 0 .22rem;
    text-align: center;
    white-space: nowrap;
}

.header-tools {
    position: absolute;
    right: 1.6rem;
    top: .18rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-left: 0;
}

.lang {
    display: flex;
    align-items: center;
    gap: .06rem;
    color: rgba(255, 255, 255, .82);
    white-space: nowrap;
}

.lang img {
    width: .27rem;
}

.search {
    width: 2.7rem;
    height: .36rem;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: .18rem;
    display: flex;
    align-items: center;
    padding: 0 .1rem 0 .18rem;
}

.search input {
    height: .34rem;
    background: transparent;
    color: #fff;
    width: 100%;
}

.search input::placeholder {
    color: rgba(255, 255, 255, .68);
}

.search button {
    width: .24rem;
    background: transparent;
}

.search button img {
    width: .24rem;
}

.mobile-search-btn {
    display: none;
    width: 24px;
    height: 24px;
    margin-left: auto;
    background: transparent;
    align-items: center;
    justify-content: center;
    margin-right: .15rem;
}

.mobile-search-btn img {
    width: 100%;
}

.mobile-search-panel {
    display: none;
}

.menu-btn {
    display: none;
    width: .44rem;
    height: .36rem;
    background: transparent;
    margin-left: .08rem;
}

.menu-btn span {
    display: block;
    height: .03rem;
    margin: .07rem 0;
    background: #fff;
    border-radius: .03rem;
}

.menu-btn.close {
    background: url("../images/close.svg") no-repeat center / 100%;
}

.menu-btn.close span {
    opacity: 0;
}


/* ==================== Home: hero banner ==================== */

.hero {
    height: 6.99rem;
    overflow: hidden;
}

.hero-swiper,
.hero .swiper-slide {
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    transition: all 5s;
    -webkit-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.hero .swiper-slide-active .hero-img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.hero-controls {
    position: absolute;
    left: 0;
    bottom: .25rem;
    z-index: 5;
    height: .48rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.hero-line {
    height: 1px;
    background: rgba(255, 255, 255, .45);
    width: 100%;
}

.hero-pagination {
    width: auto;
    display: flex;
    align-items: center;
    margin: 0 .2rem;
    gap: .26rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero-pagination .swiper-pagination-bullet {
    margin: 0 0 0 .85rem;
    opacity: 1;
    background: #fff;
    overflow: hidden;
    text-indent: -99px;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: .48rem;
    height: .48rem;
    border: 1px dashed rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(.08rem);
    -webkit-backdrop-filter: blur(.08rem);
    color: #fff;
    font-size: .14rem;
    line-height: .46rem;
    text-align: center;
    text-indent: 0;
}

.hero-pagination .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.hero-prev,
.hero-next,
.news-prev,
.news-next,
.study-prev,
.study-next {
    background: transparent;
    position: relative;
}

.hero-prev,
.hero-next {
    width: .3rem;
    height: .3rem;
}

.hero-prev:before,
.hero-next:before,
.study-prev:before,
.study-next:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .1rem;
    height: .1rem;
    border-left: .01rem solid #fff;
    border-bottom: .01rem solid #fff;
}

.hero-prev:before,
.study-prev:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-next:before,
.study-next:before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.section {
    position: relative;
}

.section-title {
    color: #122f66;
}

.section-title h2 {
    padding-top: .1rem;
    font-size: .4rem;
    line-height: 1;
    font-family: '闃块噷濡堝鏁伴粦浣?Bold';
    color: #070F36;
    background: url("../images/title-bg.svg") no-repeat -220% 0 / 2rem auto;
}

.section-title span {
    color: #0B5AA8;
    font-size: .12rem;
    line-height: 2;
}

.section-title span::before {
    content: '';
    width: .35rem;
    height: 1px;
    background-color: #0B5AA8;
    margin-right: 5px;
}

.more {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.2rem;
    height: .45rem;
    border: 1px solid #80a6d9;
    color: #3169a5;
    text-align: center;
    border-radius: .25rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    -ms-border-radius: .25rem;
    -o-border-radius: .25rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.more i {
    display: inline-block;
    width: .18rem;
    height: .18rem;
    margin-left: .1rem;
    border: .01rem solid #3169a5;
    border-radius: 50%;
    position: relative;
}

.more i:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #3169a5;
    border-top: 1px solid #3169a5;
    transform: rotate(45deg);
    margin-top: -3px;
    margin-left: -5px;
}


/* ==================== Home: admission information ==================== */

.admission {
    background: url("../images/home-bg1.png") no-repeat center bottom / cover;
    padding-top: .75rem;
    padding-bottom: 1.3rem;
}

.admission-list {
    margin-top: .9rem;
    margin-left: -.5rem;
    margin-right: -.2rem;
}

.admission-card {
    width: 2.43rem;
    position: relative;
    box-shadow: 0 .12rem .24rem rgba(0, 88, 170, .18);
    overflow: hidden;
    transform: rotate(-4.6deg);
    -webkit-transform: rotate(-4.6deg);
    -moz-transform: rotate(-4.6deg);
    -ms-transform: rotate(-4.6deg);
    -o-transform: rotate(-4.6deg);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.admission-card:nth-child(even) {
    transform: rotate(4.6deg);
    margin-top: .25rem;
}

.admission-card .pic {
    height: 1.57rem;
    overflow: hidden;
}

.admission-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admission-card .text {
    padding: .18rem .18rem;
    color: #fff;
    background-color: #047bd8;
    background-repeat: no-repeat;
    background-position: right .16rem bottom .16rem;
    background-size: .72rem auto;
    font-family: 'PingFang-Bold';
    height: 1.5rem;
}

.admission-card:nth-child(1) .text {
    background-image: url("../images/a-icon1.png");
}

.admission-card:nth-child(2) .text {
    background-image: url("../images/a-icon2.png");
}

.admission-card:nth-child(3) .text {
    background-image: url("../images/a-icon3.png");
}

.admission-card:nth-child(4) .text {
    background-image: url("../images/a-icon4.png");
}

.admission-card:nth-child(5) .text {
    background-image: url("../images/a-icon5.png");
}

.admission-card:nth-child(6) .text {
    background-image: url("../images/a-icon6.png");
}

.admission-card strong {
    display: block;
    font-size: .24rem;
    line-height: 1.5;
}

.admission-card span {
    display: block;
    width: 1.8rem;
    line-height: 1.5;
    opacity: .9;
}

.admission-card em {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: .2rem;
    bottom: .22rem;
}


/* ==================== Home: news center ==================== */

.news-grid {
    display: grid;
    grid-template-columns: 8.84rem 6.7rem;
    gap: .35rem;
    justify-content: center;
    margin-top: .5rem;
}

.news-feature {
    display: block;
    position: relative;
}

.news-swiper {
    width: 100%;
    overflow: hidden;
}

.news-swiper .swiper-slide {
    width: 100%;
}

.news-feature .date {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 1rem;
    height: 1rem;
    background: #0B5AA8;
    color: #fff;
    text-align: center;
    padding: 0 5px 5px 5px;
    font-family: "MiSans-Regular";
}

.news-feature .date b {
    display: block;
    font-size: .3rem;
    line-height: 1;
}

.news-feature .date span {
    display: block;
    font-size: .2rem;
    line-height: 1.2;
}

.news-feature .date .line {
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
    margin-top: .1rem;
    margin-bottom: .1rem;
}

.news-feature .date .line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
    background-color: #0B5AA8;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.news-feature .date .line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #FFF solid;
    background-color: #0B5AA8;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.news-feature .pic {
    width: 8.84rem;
    height: 4.2rem;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature p {
    margin-top: .2rem;
    font-size: .22rem;
    line-height: 1.2;
    font-family: "SourceHanSans-Medium";
}

.news-left-controls {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: .3rem;
    padding-left: 0;
    width: 100%;
}

.news-pagination {
    width: auto;
    display: flex;
    align-items: center;
    gap: .18rem;
    color: #9cb4d1;
    font-size: .12rem;
}

.news-line {
    display: block;
    position: relative;
    height: .01rem;
    background: #d5e1f0;
    flex-shrink: 0;
}

.news-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: .06rem;
    height: .06rem;
    border-radius: 50%;
    transform: translateY(-50%);
}

.news-line-start {
    width: .88rem;
    margin-right: .31rem;
    background: #0B5AA8;
}

.news-line-start::after {
    right: 0;
    background: #0B5AA8;
}

.news-line-middle {
    flex: 1;
    min-width: .4rem;
    margin: 0 .1rem 0 .24rem;
}

.news-line-middle::after {
    left: 0;
    background: #d5e1f0;
}

.news-left-controls::after {
    content: "";
    display: block;
    width: .62rem;
    height: .01rem;
    background: #d5e1f0;
}

.news-left-controls::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: .06rem;
    height: .06rem;
    border-radius: 50%;
    background: #d5e1f0;
    transform: translate(50%, -50%);
}

.news-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    color: #9cb4d1;
    font-size: .12rem;
    line-height: .28rem;
}

.news-pagination .swiper-pagination-bullet-active {
    color: #0B5AA8;
    font-size: .36rem;
    line-height: .42rem;
}

.news-prev,
.news-next {
    position: relative;
    width: .44rem;
    height: .44rem;
    flex-shrink: 0;
    margin-left: .3rem;
    border-radius: 50%;
}

.news-prev {
    background: #0B5AA8;
    margin-left: 0;
}

.news-next {
    background: #0B5AA8;
}

.news-prev:before,
.news-next:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .08rem;
    height: .08rem;
    border-left: .02rem solid #fff;
    border-bottom: .02rem solid #fff;
}

.news-prev:before {
    transform: translate(-40%, -50%) rotate(45deg);
}

.news-next:before {
    transform: translate(-62%, -50%) rotate(-135deg);
}

.news-right {
    padding-top: .01rem;
}

.news-right a {
    display: flex;
    align-items: center;
    position: relative;
    height: 1rem;
    padding: 0 0 0 1.5rem;
    border-bottom: 1px solid #dce7f5;
    font-size: .22rem;
}

.news-right a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.01rem;
    width: 1.15rem;
    height: .02rem;
    background: #0B5AA8;
}

.news-right a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.04rem;
    width: .06rem;
    height: .06rem;
    border: .01rem solid #dce7f5;
    border-radius: 50%;
    background: #fff;
}

.news-right a div:not(.news-thumb) {
    flex: 1;
    min-width: 0;
}

.news-right a span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.13rem;
    color: #0B5AA8;
    transform: translateY(-50%);
}

.news-right a p,
.news-right a h3 {
    line-height: .3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
}

.news-right .news-thumb {
    width: 0;
    height: .98rem;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.news-right .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-right a.news-active {
    height: 1.2rem;
    padding: .14rem .2rem .14rem .6rem;
    background: #0571c5 url("../images/tbg1.png") no-repeat center / cover;
    color: #fff;
    border: 0;
}

.news-right a.news-active::before,
.news-right a.news-active::after {
    display: none;
}

.news-right a.news-active h3 {
    color: #fff;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.news-right a.news-active span {
    display: block;
    position: relative;
    width: auto;
    margin-top: .2rem;
    color: #fff;
    font-size: .22rem;
    transform: none;
    top: auto;
}

.news-right a.news-active span::before {
    content: '';
    position: absolute;
    left: -.6rem;
    height: 1px;
    width: .45rem;
    background-color: #FFF;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.news-right a.news-active span::after {
    content: '';
    position: absolute;
    left: -.15rem;
    height: 5px;
    width: 5px;
    border: 1px #FFF solid;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.news-right a.news-active .news-thumb {
    width: 2.36rem;
    height: 1rem;
    margin-left: .2rem;
    opacity: 1;
}

.news-right a:last-child {
    border-bottom: 0;
}

.news-right a:last-child::before {
    display: none;
}


/* ==================== Home: notices ==================== */

.notice {
    min-height: 5.36rem;
    background: url("../images/home-bg2.png") no-repeat center top / cover;
    padding-top: .45rem;
    padding-bottom: 1.35rem;
    overflow: hidden;
    margin-top: .3rem;
}

.notice-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 5.45rem 4.9rem 5.45rem;
    justify-content: center;
    align-items: center;
    gap: .1rem;
    margin-top: .8rem;
}

.notice-list a {
    display: block;
    position: relative;
    height: 1.2rem;
    margin-bottom: .18rem;
    padding: .18rem .3rem;
    color: #202b38;
    font-size: .2rem;
    line-height: 1.4;
    background: transparent;
    border: 0;
    overflow: visible;
    transition: all .35s;
}

.notice-list a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--notice-bg) no-repeat center / 100% 100%;
    transition: all .35s;
}

.notice-list a::after {
    content: "";
    position: absolute;
    inset: .08rem .1rem -.04rem .1rem;
    z-index: 0;
    background: rgba(0, 91, 172, .22);
    opacity: 0;
    filter: blur(.12rem);
    -webkit-mask: var(--notice-mask) no-repeat center / 100% 100%;
    mask: var(--notice-mask) no-repeat center / 100% 100%;
    transition: opacity .35s;
}

.notice-list a b,
.notice-list a span {
    position: relative;
    z-index: 2;
    font-family: 'PingFang-Medium';
}

.notice-left a {
    padding-right: 1rem;
}

.notice-left a:nth-child(1) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M0 0H545C514 34 488 82 466 130H0Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M1 1H544C514 35 488 82 466 129H1Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-left a:nth-child(2) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M0 0H466C454 38 454 92 466 130H0Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M1 1H466C454 39 454 91 466 129H1Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-left a:nth-child(3) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M0 0H466C488 48 514 96 545 130H0Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M1 1H466C488 48 514 95 544 129H1Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-right a:nth-child(1) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M545 0H0C31 34 57 82 79 130H545Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M544 1H1C31 35 57 82 79 129H544Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-right a:nth-child(2) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M545 0H79C91 38 91 92 79 130H545Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M544 1H79C91 39 91 91 79 129H544Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-right a:nth-child(3) {
    --notice-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M545 0H79C57 48 31 96 0 130H545Z' fill='black'/%3E%3C/svg%3E");
    --notice-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 545 130' preserveAspectRatio='none'%3E%3Cpath d='M544 1H79C57 48 31 95 1 129H544Z' fill='rgba(255,255,255,0.38)' stroke='rgba(126,178,220,0.52)'/%3E%3C/svg%3E");
}

.notice-right a {
    padding: .58rem .34rem .18rem 1.1rem;
    text-align: left;
}

.notice-right a b {
    position: absolute;
    right: .34rem;
    top: .18rem;
    text-align: right;
}

.notice-list a b {
    display: block;
    color: #096bc2;
    font-size: .2rem;
    line-height: .2rem;
    margin-bottom: .1rem;
    font-family: Arial, sans-serif;
}

.notice-emblem {
    position: relative;
    width: 4.9rem;
    height: 4.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-emblem::before,
.notice-emblem::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.notice-emblem::before {
    z-index: 1;
    width: 3.37rem;
    height: 3.37rem;
    background: #fff;
    box-shadow: 0 .08rem .32rem rgba(0, 84, 166, .14);
}

.notice-emblem::after {
    z-index: 2;
    width: 2.55rem;
    height: 2.55rem;
    background: linear-gradient(180deg, #1b7fdb 0%, #b8ddf5 100%);
}

.notice-emblem img {
    position: relative;
    z-index: 3;
    width: 1.84rem;
    height: 1.84rem;
    border-radius: 50%;
    padding: 0;
    background: transparent;
}

.ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring1 {
    z-index: 0;
    width: 4.75rem;
    height: 4.75rem;
    background: conic-gradient(from 215deg, rgba(22, 118, 207, .36), rgba(124, 190, 234, .12), rgba(22, 118, 207, .24), rgba(208, 235, 251, .08), rgba(22, 118, 207, .36));
    animation: none;
}

.ring1::before {
    content: "";
    position: absolute;
    inset: .18rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
}

.ring2 {
    z-index: 2;
    width: 3.8rem;
    height: 3.8rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 366 366'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='40' y1='40' x2='326' y2='326' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230067e0' stop-opacity='.18'/%3E%3Cstop offset='.42' stop-color='%230067e0' stop-opacity='.95'/%3E%3Cstop offset='.72' stop-color='%237ec2ee' stop-opacity='.22'/%3E%3Cstop offset='1' stop-color='%230067e0' stop-opacity='.72'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='183' cy='183' r='181' fill='none' stroke='url(%23g)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    animation: rotate 10s linear infinite;
}

.ring2:before,
.ring2:after {
    content: "";
    position: absolute;
    width: .06rem;
    height: .06rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.ring2:before {
    left: 3.55rem;
    top: 1rem;
    width: .14rem;
    height: .14rem;
    background: #075fb5;
}

.ring2:after {
    left: .07rem;
    top: 1.43rem;
    width: .06rem;
    height: .06rem;
    background: rgba(88, 163, 225, .55);
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* ==================== Home: campus service ==================== */

.service {
    min-height: 4.25rem;
    background: #fff url("../images/home-bg3.png") no-repeat center bottom / 100% auto;
    overflow: hidden;
    margin-top: .6rem;
}

.service-ad {
    position: fixed;
    left: .2rem;
    bottom: 20%;
    width: 2.6rem;
    height: 1.35rem;
    overflow: hidden;
    z-index: 100;
}

.service-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-swiper {
    position: relative;
    width: 15.2rem;
    height: 4.18rem;
    padding: 0;
    overflow: hidden;
    margin-top: .45rem;
}

.service-swiper .swiper-wrapper {
    align-items: flex-start;
}

.service-swiper .swiper-slide {
    height: 3rem;
}

.service-swiper .swiper-slide:nth-child(5n+1),
.service-swiper .swiper-slide:nth-child(5n+3),
.service-swiper .swiper-slide:nth-child(5n+5) {
    padding-top: .86rem;
}

.service-swiper .swiper-slide:nth-child(5n+2) {
    padding-top: .05rem;
}

.service-swiper .swiper-slide:nth-child(5n+4) {
    padding-top: .18rem;
}

.service-item {
    display: flex;
    position: relative;
    z-index: 0;
    isolation: isolate;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0 auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1d1d1d;
    transition: all .35s;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: -.015rem;
    z-index: 2;
    border-radius: 50%;
    background: var(--service-ticks) no-repeat center / 100% 100%;
    filter: var(--tick-filter, none);
    opacity: .95;
}

.service-item::after {
    content: "";
    position: absolute;
    inset: .04rem;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    transition: all .35s;
}

.service-item i {
    position: relative;
    z-index: 3;
    width: .89rem;
    height: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item i img {
    max-width: 100%;
}

.service-item strong {
    position: relative;
    z-index: 3;
    margin-top: .1rem;
    font-size: .24rem;
    font-family: 'PingFang-Bold';
}

.service-item.blue {
    margin-top: 0;
    background: transparent;
    color: #0b66c3;
    box-shadow: none;
}

.service-item.blue::before {
    color: #0b66c3;
}

.service-item.blue {
    --tick-filter: hue-rotate(34deg) saturate(1.45) brightness(.92);
}

.service-item.yellow {
    color: #f2b500;
    --tick-filter: hue-rotate(-132deg) saturate(1.35) brightness(1.08);
}

.service-item.purple {
    color: #776dff;
    --tick-filter: hue-rotate(78deg) saturate(1.65) brightness(1.08);
}

.service-item.pink {
    color: #d76dd0;
    --tick-filter: hue-rotate(128deg) saturate(1.45) brightness(1.12);
}

.service-item.green {
    color: #21cbb8;
    --tick-filter: none;
}

.service-item {
    --service-ticks: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg stroke='%2321cbb8' stroke-width='1' stroke-linecap='butt'%3E%3Cpath id='t' d='M110 4v8'/%3E%3Cuse href='%23t' transform='rotate(4 110 110)'/%3E%3Cuse href='%23t' transform='rotate(8 110 110)'/%3E%3Cuse href='%23t' transform='rotate(12 110 110)'/%3E%3Cuse href='%23t' transform='rotate(16 110 110)'/%3E%3Cuse href='%23t' transform='rotate(20 110 110)'/%3E%3Cuse href='%23t' transform='rotate(24 110 110)'/%3E%3Cuse href='%23t' transform='rotate(28 110 110)'/%3E%3Cuse href='%23t' transform='rotate(32 110 110)'/%3E%3Cuse href='%23t' transform='rotate(36 110 110)'/%3E%3Cuse href='%23t' transform='rotate(40 110 110)'/%3E%3Cuse href='%23t' transform='rotate(44 110 110)'/%3E%3Cuse href='%23t' transform='rotate(48 110 110)'/%3E%3Cuse href='%23t' transform='rotate(52 110 110)'/%3E%3Cuse href='%23t' transform='rotate(56 110 110)'/%3E%3Cuse href='%23t' transform='rotate(60 110 110)'/%3E%3Cuse href='%23t' transform='rotate(64 110 110)'/%3E%3Cuse href='%23t' transform='rotate(68 110 110)'/%3E%3Cuse href='%23t' transform='rotate(72 110 110)'/%3E%3Cuse href='%23t' transform='rotate(76 110 110)'/%3E%3Cuse href='%23t' transform='rotate(80 110 110)'/%3E%3Cuse href='%23t' transform='rotate(84 110 110)'/%3E%3Cuse href='%23t' transform='rotate(88 110 110)'/%3E%3Cuse href='%23t' transform='rotate(92 110 110)'/%3E%3Cuse href='%23t' transform='rotate(96 110 110)'/%3E%3Cuse href='%23t' transform='rotate(100 110 110)'/%3E%3Cuse href='%23t' transform='rotate(104 110 110)'/%3E%3Cuse href='%23t' transform='rotate(108 110 110)'/%3E%3Cuse href='%23t' transform='rotate(112 110 110)'/%3E%3Cuse href='%23t' transform='rotate(116 110 110)'/%3E%3Cuse href='%23t' transform='rotate(120 110 110)'/%3E%3Cuse href='%23t' transform='rotate(124 110 110)'/%3E%3Cuse href='%23t' transform='rotate(128 110 110)'/%3E%3Cuse href='%23t' transform='rotate(132 110 110)'/%3E%3Cuse href='%23t' transform='rotate(136 110 110)'/%3E%3Cuse href='%23t' transform='rotate(140 110 110)'/%3E%3Cuse href='%23t' transform='rotate(144 110 110)'/%3E%3Cuse href='%23t' transform='rotate(148 110 110)'/%3E%3Cuse href='%23t' transform='rotate(152 110 110)'/%3E%3Cuse href='%23t' transform='rotate(156 110 110)'/%3E%3Cuse href='%23t' transform='rotate(160 110 110)'/%3E%3Cuse href='%23t' transform='rotate(164 110 110)'/%3E%3Cuse href='%23t' transform='rotate(168 110 110)'/%3E%3Cuse href='%23t' transform='rotate(172 110 110)'/%3E%3Cuse href='%23t' transform='rotate(176 110 110)'/%3E%3Cuse href='%23t' transform='rotate(180 110 110)'/%3E%3Cuse href='%23t' transform='rotate(184 110 110)'/%3E%3Cuse href='%23t' transform='rotate(188 110 110)'/%3E%3Cuse href='%23t' transform='rotate(192 110 110)'/%3E%3Cuse href='%23t' transform='rotate(196 110 110)'/%3E%3Cuse href='%23t' transform='rotate(200 110 110)'/%3E%3Cuse href='%23t' transform='rotate(204 110 110)'/%3E%3Cuse href='%23t' transform='rotate(208 110 110)'/%3E%3Cuse href='%23t' transform='rotate(212 110 110)'/%3E%3Cuse href='%23t' transform='rotate(216 110 110)'/%3E%3Cuse href='%23t' transform='rotate(220 110 110)'/%3E%3Cuse href='%23t' transform='rotate(224 110 110)'/%3E%3Cuse href='%23t' transform='rotate(228 110 110)'/%3E%3Cuse href='%23t' transform='rotate(232 110 110)'/%3E%3Cuse href='%23t' transform='rotate(236 110 110)'/%3E%3Cuse href='%23t' transform='rotate(240 110 110)'/%3E%3Cuse href='%23t' transform='rotate(244 110 110)'/%3E%3Cuse href='%23t' transform='rotate(248 110 110)'/%3E%3Cuse href='%23t' transform='rotate(252 110 110)'/%3E%3Cuse href='%23t' transform='rotate(256 110 110)'/%3E%3Cuse href='%23t' transform='rotate(260 110 110)'/%3E%3Cuse href='%23t' transform='rotate(264 110 110)'/%3E%3Cuse href='%23t' transform='rotate(268 110 110)'/%3E%3Cuse href='%23t' transform='rotate(272 110 110)'/%3E%3Cuse href='%23t' transform='rotate(276 110 110)'/%3E%3Cuse href='%23t' transform='rotate(280 110 110)'/%3E%3Cuse href='%23t' transform='rotate(284 110 110)'/%3E%3Cuse href='%23t' transform='rotate(288 110 110)'/%3E%3Cuse href='%23t' transform='rotate(292 110 110)'/%3E%3Cuse href='%23t' transform='rotate(296 110 110)'/%3E%3Cuse href='%23t' transform='rotate(300 110 110)'/%3E%3Cuse href='%23t' transform='rotate(304 110 110)'/%3E%3Cuse href='%23t' transform='rotate(308 110 110)'/%3E%3Cuse href='%23t' transform='rotate(312 110 110)'/%3E%3Cuse href='%23t' transform='rotate(316 110 110)'/%3E%3Cuse href='%23t' transform='rotate(320 110 110)'/%3E%3Cuse href='%23t' transform='rotate(324 110 110)'/%3E%3Cuse href='%23t' transform='rotate(328 110 110)'/%3E%3Cuse href='%23t' transform='rotate(332 110 110)'/%3E%3Cuse href='%23t' transform='rotate(336 110 110)'/%3E%3Cuse href='%23t' transform='rotate(340 110 110)'/%3E%3Cuse href='%23t' transform='rotate(344 110 110)'/%3E%3Cuse href='%23t' transform='rotate(348 110 110)'/%3E%3Cuse href='%23t' transform='rotate(352 110 110)'/%3E%3Cuse href='%23t' transform='rotate(356 110 110)'/%3E%3C/g%3E%3C/svg%3E");
}

.service-item strong {
    color: #1d1d1d;
}

.swiper-box .swiper{
    margin-left: auto;
    margin-right: auto;
}

.service-prev,
.service-next {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: .44rem;
    height: .44rem;
    margin-top: -.22rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #188ee6 0%, #0758bd 100%);
    box-shadow: 0 .06rem .16rem rgba(4, 82, 180, .22);
}

.service-prev::before,
.service-next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .18rem;
    height: .18rem;
    background: url("../images/arrow1.svg") no-repeat center / contain;
    transform: translate(-50%, -50%);
}

.service-next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.service-prev {
    left: -.6rem;
}

.service-next {
    right: -.6rem;
}

/* ==================== Home: study at Tongji ==================== */

.study {
    padding-bottom: 1.15rem;
    background: #fff;
    overflow: hidden;
    margin-top: .4rem;
}

.study-wrap {
    position: relative;
    overflow: hidden;
    margin-top: .55rem;
}

.study-swiper {
    width: 100%;
    overflow: visible;
}

.study .swiper-slide {
    position: relative;
    width: 7.7rem;
    height: 4.4rem;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
}

.study .study-active,
.study .study-prev-1,
.study .study-next-1,
.study .study-prev-2,
.study .study-next-2 {
    opacity: 1;
    pointer-events: auto;
}

.study .study-wrap a {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .7s;
    transform-origin: center center;
}

.study .study-active a {
    display: block;
}

.study .study-prev-2 a {
    transform: translateX(-.6rem);
    filter: grayscale(1);
    -webkit-transform: translateX(-.6rem);
    -moz-transform: translateX(-.6rem);
    -ms-transform: translateX(-.6rem);
    -o-transform: translateX(-.6rem);
}

.study .study-next-2 a {
    transform: translateX(4.78rem);
    -webkit-transform: translateX(4.78rem);
    -moz-transform: translateX(4.78rem);
    -ms-transform: translateX(4.78rem);
    -o-transform: translateX(4.78rem);
}

.study .study-wrap a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study .study-wrap span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: .8rem;
    height: .8rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: url(../images/play.svg)no-repeat center center / 100% 100%;
}

.study .swiper-slide-active a span {
    opacity: 1;
}

.study .study-wrap a span img {
    width: 100%;
    height: 100%;
}

.study-prev,
.study-next {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: .44rem;
    height: .44rem;
    margin-top: -.22rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #188ee6 0%, #0758bd 100%);
    box-shadow: 0 .06rem .16rem rgba(4, 82, 180, .22);
}

.study-prev::before,
.study-next::before {
    display: none;
}

.study-prev::after,
.study-next::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .18rem;
    height: .18rem;
    background: url("../images/arrow1.svg") no-repeat center / contain;
    transform: translate(-50%, -50%);
}

.study-next::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.study-prev {
    left: .46rem;
}

.study-next {
    right: .46rem;
}

.maskBg {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0
}

.videoShow {
    width: 12.8rem;
    height: 7.6rem;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.maskBg.active {
    opacity: 1;
}

.videoShow.active {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.videoShow .close {
    color: #FFF;
    position: absolute;
    right: 0;
    top: -.3rem;
    background: url(../images/close.svg)no-repeat left center;
    background-size: .2rem;
    padding-left: .3rem;
    cursor: pointer;
}


/* ==================== Common: footer ==================== */

.footer {
    min-height: 3.27rem;
    color: #fff;
    background: #075ca8 url("../images/footer-bg.jpg") no-repeat center top / cover;
    padding-top: .05rem;
}

.friend {
    height: .68rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .22rem;
    color: rgba(255, 255, 255, .82);
}

.friend img {
    width: .2rem;
}

.friend a {
    color: rgba(255, 255, 255, .82);
}

.footer-main {
    height: 1.6rem;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: .86rem;
}

.footer-info {
    margin-left: auto;
    color: rgba(255, 255, 255, .9);
    line-height: 2;
    padding-top: .05rem;
}

.qrcode {
    margin-left: 1.4rem;
    text-align: center;
    font-size: .12rem;
    color: rgba(255, 255, 255, .86);
    margin-top: .25rem;
}

.qrcode img {
    display: block;
    width: .9rem;
    height: .9rem;
    margin-bottom: .1rem;
}

.copy {
    height: .65rem;
    line-height: .65rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin-top: .3rem;
}


/* ==================== Inner: banner and breadcrumb ==================== */

.inner-banner {
    position: relative;
    overflow: hidden;
}

.inner-banner>img {
    width: 100%;
}

.crumb {
    position: absolute;
    bottom: .4rem;
    right: 1.6rem;
    color: rgba(255, 255, 255, .86);
    font-size: .18rem;
}
.crumb a{
    color: rgba(255, 255, 255, .86);
}
.crumb a:hover{
    color: rgb(5 89 177);
}

.crumb img {
    width: .16rem;
    height: .16rem;
    vertical-align: -.03rem;
    margin-right: .06rem;
}


/* ==================== Inner: sidebar and main layout ==================== */

.sub-main {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    gap: .6rem;
    align-items: start;
    position: relative;
    padding-bottom: 1rem;
    background: url("../images/pub-bg.png") no-repeat center bottom / 100% auto;
}

.sidebar {
    width: 3.4rem;
    margin-top: -1.25rem;
    background: url("../images/sidebar-bg.png") no-repeat center top / 3.4rem auto;
    position: relative;
    z-index: 2;
}

.sidebar h1 {
    height: 1.2rem;
    color: #fff;
    font-size: .48rem;
    font-weight: 400;
    line-height: 1.2rem;
    text-align: center;
    position: relative;
}

.sidebar>ul {
    padding: 0 .38rem 0 .44rem;
    background-image: linear-gradient(#ECF4FF, #FFFFFF);
    margin-left: 5px;
    padding-bottom: .4rem;
}

.sidebar li {
    position: relative;
}

.sidebar li .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: .4rem;
    height: .9rem;
    cursor: pointer;
}

.sidebar li .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: .24rem;
    height: .24rem;
    background: url(../images/arrow.svg)no-repeat center center / 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.sidebar li>a {
    display: block;
    position: relative;
    padding-left: .42rem;
    color: #333;
    font-size: .24rem;
    line-height: .89rem;
    border-bottom: 1px solid #d3e2f2;
}

.sidebar li:last-child a {
    border-bottom: 0;
}

.sidebar li>a:before {
    content: "";
    position: absolute;
    left: .08rem;
    top: 50%;
    width: .08rem;
    height: .08rem;
    margin-top: -.04rem;
    background: #cfe2f4;
    transform: rotate(45deg);
}

.sidebar li.active>a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.01rem;
    height: .02rem;
    background: #0067be;
}

.sidebar li.active>a {
    color: #0067be;
    font-weight: 700;
}

.sidebar li.active>a:before {
    background: #0067be;
}

.sidebar li.active .arrow::after {
    transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
}

.sidebar .submenu>a {
    border-bottom: 1px solid #d3e2f2;
    font-size: .18rem;
    line-height: .6rem;
    padding-left: .4rem;
    color: #666;
}


/* ==================== Inner: profile page ==================== */

.intro-content {
    padding-top: .44rem;
}

.intro-content {
    color: #333;
    font-size: .2rem;
    line-height: 2.3;
}

.intro-content img {
    /* width: 5.8rem; */
    /* float: left; */
    margin-right: .6rem;
}

.intro-content p {
    /*text-indent: .4rem;*/
    word-wrap: break-word;
}

.intro-content h2 {
    margin: .18rem 0 .08rem;
    color: #333;
    font-size: .24rem;
    line-height: .34rem;
    text-indent: .4rem;
}


/* ==================== Inner: text list page ==================== */

.list-content {
    padding-top: .15rem;
}

.list-item {
    min-height: 1.1rem;
    display: grid;
    grid-template-columns: .7rem 1fr;
    gap: .2rem;
    align-items: center;
    padding: .31rem .2rem .31rem 0;
    border-bottom: .01rem dotted #cbddec;
    color: #333;
    transition: all .35s;
    position: relative;
}

.list-item time {
    color: #0B5AA8;
    text-align: center;
    font-family: 'Bebas';
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.list-item time b {
    display: block;
    font-size: .3rem;
}

.list-item time span {
    display: block;
    font-size: .18rem;
}

.list-item h2,
.image-list-item h2 {
    margin-bottom: .08rem;
    color: #333;
    font-size: .22rem;
    line-height: 1.4;
    font-family: 'PingFang-Medium';
    z-index: 2;
    position: relative;
}

.list-item p,
.image-list-item p {
    color: #666;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.pager {
    margin: .38rem 0 0;
    text-align: center;
    color: #476d9b;
    font-size: 12px;
}

.pager a,
.pager span,
.pager button,
.pager input {
    display: inline-block;
    min-width: .28rem;
    height: 24px;
    margin: 0 .02rem;
    padding: 0 .07rem;
    border: 1px solid #9bb9e0;
    color: #476d9b;
    line-height: 22px;
    background: #fff;
    vertical-align: middle;
}

.pager .cur {
    background: #0a65c0;
    color: #fff;
}

.pager input {
    width: .42rem;
}


/* ==================== Inner: article detail page ==================== */

.article-content {
    width: 11.5rem;
    margin: 0 auto;
    color: #333;
    padding-top: .5rem;
}

.article-content h1 {
    text-align: center;
    color: #333;
    font-size: .26rem;
    line-height: 1.4;
}

.meta {
    padding-bottom: .18rem;
    text-align: center;
    color: #8D8D8D;
    border-bottom: 1px solid #E8E8E8;
    margin-top: .25rem;
}

.meta span {
    margin: 0 .18rem;
    background-position: left center;
    background-repeat: no-repeat;
}

.meta span:first-child {
    background-image: url(../images/date.svg);
    padding-left: 20px;
}

.meta span:last-child {
    background-image: url(../images/click.svg);
    padding-left: 20px;
}

.article-content .body {
    font-size: .18rem;
    line-height: 1.6;
    margin-top: .4rem;
}

.article-content p {
    margin-bottom: .22rem;
    text-indent: 2em;
}

.article-content h2 {
    margin: .18rem 0 .08rem;
    font-size: .22rem;
}

.article-content img {
    max-width: 100%;
}

.article-nav {
    margin-top: .36rem;
    padding-top: .22rem;
    border-top: .01rem solid #d9e4ef;
}

.article-nav p {
    margin-bottom: .15rem;
    text-indent: 0;
}

.article-nav p:last-child {
    margin-bottom: 0;
}


/* ==================== Inner: image list page ==================== */

.image-list-content {
    padding-top: .15rem;
}

.image-list-item {
    min-height: 2.16rem;
    display: grid;
    grid-template-columns: 2.94rem 1fr;
    gap: .4rem;
    padding: .35rem .2rem .4rem 0;
    border-bottom: 1px dotted #8D8D8D;
    color: #333;
    transition: all .35s;
    position: relative;
}

.image-list-item>div {
    position: relative;
    z-index: 2;
}

.image-list-item .pic {
    width: 2.9rem;
    height: 1.93rem;
    overflow: hidden;
}

.image-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-list-item h2 {
    font-weight: normal;
    font-size: .22rem;
    line-height: 1.2;
    font-family: 'PingFang-Medium';
    margin-top: .15rem;
}

.image-list-item p {
    color: #8D8D8D;
    line-height: 1.7;
    margin-top: .2rem;
    height: .5rem;
    overflow: hidden;
}

.image-list-item time {
    display: block;
    margin-top: .35rem;
    color: #999;
    font-size: .16rem;
    font-family: 'Bebas';
    position: relative;
}

.image-list-item time::before {
    content: '';
    position: absolute;
    left: -.45rem;
    width: .3rem;
    height: 1px;
    background-color: #EAB77B;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.image-list-item time::after {
    content: '';
    position: absolute;
    left: -.15rem;
    width: 5px;
    height: 5px;
    background-color: #FFF;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border: 1px #EAB77B solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/* ==================== Responsive: tablet and small screens ==================== */

@media (max-width:1199px) {
    body {
        font-size: 14px;
    }
    .header-inner {
        height: 70px;
    }
    .logo,
    .logo img {
        height: 40px;
    }
    .menu-btn {
        display: block;
    }
    .mobile-search-btn {
        display: flex;
    }
    .header-tools {
        display: none;
    }
    body.search-lock {
        overflow: hidden;
    }
    .mobile-search-panel {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.3rem .28rem 0;
        background: rgba(3, 44, 92, .94);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all .28s;
    }
    .mobile-search-panel.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mobile-search-close {
        position: absolute;
        right: .5rem;
        top: .5rem;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, .12);
        border-radius: 50%;
    }
    .mobile-search-close img {
        width: 18px;
        height: 18px;
    }
    .mobile-search-form {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 6.8rem;
        height: 50px;
        padding: 0 .16rem 0 .24rem;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 .12rem .32rem rgba(0, 0, 0, .18);
        transform: translateY(.16rem);
        transition: transform .28s;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }
    .mobile-search-panel.open .mobile-search-form {
        transform: translateY(0);
    }
    .mobile-search-form input {
        flex: 1;
        min-width: 0;
        height: 50px;
        color: #12345c;
        font-size: 14px;
        background: transparent;
    }
    .mobile-search-form input::placeholder {
        color: #8aa0b8;
    }
    .mobile-search-form button {
        width: 34px;
        height: 34px;
        background: #075ca8;
        border-radius: 50%;
    }
    .mobile-search-form button img {
        width: 70%;
    }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        top: 70px;
        width: 100%;
        margin: 0;
        background: #075ca8;
        padding-bottom: .1rem;
    }
    .nav li {
        position: relative;
    }
    .nav ul {
        display: block;
        padding: .08rem .2rem .16rem;
    }
    .nav a {
        line-height: 50px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .nav .arrow {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 30px;
        height: 50px;
        background: transparent;
    }
    .nav .arrow:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: translate(-50%, -65%) rotate(45deg);
        transition: all .25s;
    }
    .nav .arrow.this:after {
        transform: translate(-50%, -35%) rotate(-135deg);
    }
    .nav .drop {
        display: none;
        position: static;
        width: 100%;
        padding: .04rem 0 .08rem .2rem;
        background: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    .nav .drop:before {
        display: none;
    }
    .nav .drop a {
        color: rgba(255, 255, 255, .82);
        font-size: 14px;
        line-height: 2;
        padding: 0 .18rem;
        text-align: left;
        border-bottom: 0;
    }
    .section-title {
        justify-content: flex-start;
    }
    .section-title h2 {
        font-size: 26px;
        background: none;
    }
    .section-title span {
        font-size: 12px;
    }
    .more {
        width: 90px;
        height: 30px;
    }
    .more i {
        width: 14px;
        height: 14px;
    }
    .more i:before {
        width: 5px;
        height: 5px;
    }
    .hero {
        height: auto;
    }
    .hero .swiper-slide .hero-img {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        height: 100%;
        object-fit: cover;
    }
    .hero-pagination .swiper-pagination-bullet {
        margin-left: .4rem;
    }
    .hero-pagination .swiper-pagination-bullet-active {
        font-size: 12px;
        width: 32px;
        height: 32px;
    }
    .hero-prev:before,
    .hero-next:before,
    .study-prev:before,
    .study-next:before {
        width: 10px;
        height: 10px;
    }
    .more {
        right: .2rem;
    }
    .intro-top,
    .sub-main {
        display: block;
    }
    .admission {
        padding-bottom: .6rem;
    }
    .admission-list {
        padding-top: .3rem;
        margin-left: 0;
        margin-right: 0;
        margin-top: .3rem;
    }
    .admission-card {
        white-space: normal;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
        margin-top: .2rem !important;
        width: 32%;
    }
    .admission-card .pic {
        position: relative;
        padding-top: 70%;
    }
    .admission-card .text {
        height: 110px;
    }
    .admission-card .pic>img,
    .news-feature .pic>img,
    .study .study-next-2 a>img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .admission-card strong {
        font-size: 15px;
    }
    .admission-card span {
        width: 100%;
    }
    .news-feature .pic,
    .news-left,
    .news-right,
    .study-wrap,
    .study-swiper,
    .service-swiper {
        width: 100%;
    }
    .news-grid {
        grid-template-columns: 50% 48%;
    }
    .news-feature .pic {
        height: auto;
        position: relative;
        padding-top: 65%;
    }
    .news-feature .date {
        width: 70px;
        height: 70px;
    }
    .news-feature .date b,
    .list-item time b {
        font-size: 20px;
    }
    .admission-card span,
    .news-feature .date span,
    .news-pagination .swiper-pagination-bullet,
    .copy,
    .qrcode,
    .footer-info,
    .friend,
    .crumb,
    .list-item time span,
    .list-item p,
    .image-list-item p,
    .image-list-item time,
    .meta {
        font-size: 12px;
    }
    .news-pagination .swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .news-prev,
    .news-next {
        width: 30px;
        height: 30px;
    }
    .news-prev:before,
    .news-next:before {
        width: 8px;
        height: 8px;
    }
    .news-feature p,
    .news-right a,
    .service-item strong,
    .notice-list a b,
    .intro-content,
    .list-item h2,
    .image-list-item h2,
    .article-content .body,
    .sidebar li>a,
    .sidebar .submenu>a {
        font-size: 14px;
    }
    .notice {
        padding-bottom: .4rem;
    }
    .notice-wrap {
        justify-content: space-between;
        grid-template-columns: 49% 49%;
        margin-top: .2rem;
    }
    .notice-list {
        width: 100%;
    }
    .notice-list a::after,
    .notice-list a::before,
    .notice-emblem,
    .service-ad,
    .sidebar>ul,
    .pager span,
    .pager button,
    .pager input,
    .pager a:first-child {
        display: none;
    }
    .notice-list a {
        height: auto;
        min-height: 1.05rem;
        border: 1px #C6DAE8 solid;
    }
    .notice-right a,
    .notice-left a {
        padding: .2rem .2rem !important;
    }
    .notice-right a b {
        position: static;
        text-align: left;
        font-size: 14px;
    }
    .notice-list a span {
        height: 38px;
        font-size: 14px;
    }
    .notice-emblem::before {
        width: 2.2rem;
        height: 2.2rem;
        box-shadow: 0 .05rem .18rem rgba(0, 84, 166, .14);
    }
    .notice-emblem::after {
        width: 1.35rem;
        height: 1.35rem;
    }
    .ring1 {
        width: 2.3rem;
        height: 2.3rem;
        border-width: .1rem;
    }
    .ring2 {
        width: 1.85rem;
        height: 1.85rem;
        border-width: .01rem;
    }
    .notice-emblem img {
        width: .92rem;
        height: .92rem;
        padding: 0;
    }
    .study .swiper-slide,
    .study .swiper-slide-active {
        width: auto;
        height: auto;
        margin-top: 0;
    }
    .study-prev,
    .study-next {
        width: 32px;
        height: 32px;
    }
    .study-prev {
        left: .2rem;
    }
    .study-next {
        right: .2rem;
    }
    .study .study-next-2 a {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        position: relative;
        padding-top: 65%;
    }
    .study .study-wrap a {
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }
    .footer-main,
    .friend {
        height: auto;
        padding: .24rem 0;
    }
    .friend a,
    .friend span {
        margin-right: .12rem;
        line-height: .28rem;
    }
    .footer-logo {
        height: 40px;
    }
    .footer-info,
    .qrcode {
        margin: .24rem 0 0;
    }
    .footer-info {
        flex: 1;
        margin-left: 2rem;
    }
    .crumb {
        right: .2rem;
    }
    .sidebar {
        width: 100%;
        min-height: 0;
        margin: 0;
        background: #f0f6fc;
        border-left: .05rem solid #0067be;
    }
    .sidebar h1 {
        background: #0067be;
        font-size: 20px;
        line-height: 50px;
        height: 50px;
    }
    .sidebar h1::after {
        content: '';
        position: absolute;
        right: .2rem;
        top: 50%;
        width: 20px;
        height: 20px;
        background: url(../images/arrow.svg)no-repeat center center / 100%;
        filter: brightness(0) invert(1);
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
    }
    .sidebar h1.cur::after {
        transform: translateY(-50%) rotate(90deg);
        -webkit-transform: translateY(-50%) rotate(90deg);
        -moz-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
    }
    .intro-content,
    .list-content,
    .image-list-content,
    .article-content {
        padding-top: .28rem;
        width: 100%;
    }
    .intro-content h2,
    .article-content h2 {
        font-size: 16px;
    }
    .article-content h1 {
        font-size: 18px;
    }
    .meta {
        line-height: 2.2;
    }
    .meta span {
        display: inline-block;
    }
    .image-list-item .pic {
        width: 100%;
        height: 2.2rem;
        margin-bottom: .18rem;
    }
    .image-list-item p {
        height: 40px;
    }
    .list-item {
        grid-template-columns: 30px 1fr;
        gap: .3rem;
        overflow: hidden;
    }
    .videoShow {
        width: 90%;
        height: 4.2rem;
    }
    .pager a {
        padding: 0 10px;
    }
    .sidebar li .arrow {
        width: 30px;
    }
    .sidebar li .arrow::after {
        width: 18px;
        height: 18px;
    }
    .sidebar li>a {
        line-height: 60px;
    }
    .sidebar .submenu>a {
        line-height: 50px;
    }
    .service-prev,
    .service-next {
        width: 32px;
        height: 32px;
    }
    .service-prev {
        left: 0;
    }
    .service-next {
        right: 0;
    }
}


/* ==================== Responsive: mobile ==================== */

@media (max-width:767px) {
    .header-inner {
        height: 60px;
    }
    .nav {
        top: 60px;
    }
    .hero {
        height: 3.5rem;
    }
    .admission-card {
        width: 49%;
    }
    .news-grid,
    .notice-wrap {
        display: block;
    }
    .news-right {
        margin-top: .4rem;
    }
    .news-left-controls {
        padding-left: 0;
    }
    .news-right a.news-active {
        padding: .12rem;
    }
    .notice-list a {
        width: 100%;
        padding: .12rem .2rem;
        background: rgba(255, 255, 255, .58);
        border: 1px solid rgba(126, 178, 220, .55);
        border-radius: .04rem;
        overflow: hidden;
    }
    .notice-list a::before,
    .notice-list a::after,
    .news-right a.news-active span::after,
    .news-right a.news-active span::before {
        display: none;
    }
    .service-swiper .swiper-slide {
        padding-top: 0 !important;
    }
    .service,
    .service-swiper {
        min-height: auto;
        height: auto;
    }
    .service-item {
        width: 110px;
        height: 110px;
        margin-top: 0;
    }
    .service-swiper .swiper-slide {
        height: auto;
    }
    .study {
        padding-bottom: .48rem;
    }
    .footer-info {
        margin-left: 0;
    }
    .footer-main {
        display: block;
    }
    .qrcode {
        display: none;
    }
    .crumb {
        bottom: .2rem;
    }
    .inner-banner {
        height: 2.1rem;
    }
    .intro-content,
    .article-content {
        line-height: 2.2;
    }
    .intro-content img {
        margin-right: 0;
        float: none;
        /* width: 100%; */
    }
    .image-list-item {
        padding: .2rem .04rem;
    }
}


/* ==================== Desktop hover styles ==================== */

@media (min-width:1025px) {
    a:hover {
        color: #11406C;
    }
    .lang:hover {
        color: #FFF;
    }
    .nav a:hover {
        color: #d8ecff;
    }
    .nav li:hover .drop {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(0);
        -moz-transform: translateX(-50%) translateY(0);
        -ms-transform: translateX(-50%) translateY(0);
        -o-transform: translateX(-50%) translateY(0);
    }
    .nav .drop a:hover {
        color: #fff;
        background: #075ca8;
    }
    .admission-card:nth-child(1):hover .text {
        background-color: #ED6B00;
    }
    .admission-card:nth-child(2):hover .text {
        background-color: #FD5541;
    }
    .admission-card:nth-child(3):hover .text {
        background-color: #68B82E;
    }
    .admission-card:nth-child(4):hover .text {
        background-color: #004F8B;
    }
    .admission-card:nth-child(5):hover .text {
        background-color: #F5D421;
    }
    .admission-card:hover img,
    .news-feature:hover img,
    .news-top:hover img,
    .study a:hover>img,
    .image-list-item:hover img,
    .service-ad:hover img {
        transform: scale(1.08);
    }
    .news-next:hover,
    .news-prev:hover {
        background: #fb533f;
    }
    .admission-card:hover {
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
    }
    .notice-list a:hover {
        color: #fff;
        border-color: transparent;
    }
    .notice-list a:hover::before {
        background: linear-gradient(105deg, #064ec2 0%, #0d6ed0 48%, #29b1df 100%);
        -webkit-mask: var(--notice-mask) no-repeat center / 100% 100%;
        mask: var(--notice-mask) no-repeat center / 100% 100%;
    }
    .notice-list a:hover::after {
        opacity: 1;
    }
    .notice-list a:hover b {
        color: #fff;
    }
    .service-item:hover {
        --service-ticks: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg stroke='%23ffffff' stroke-width='1' stroke-linecap='butt'%3E%3Cpath id='t' d='M110 4v8'/%3E%3Cuse href='%23t' transform='rotate(4 110 110)'/%3E%3Cuse href='%23t' transform='rotate(8 110 110)'/%3E%3Cuse href='%23t' transform='rotate(12 110 110)'/%3E%3Cuse href='%23t' transform='rotate(16 110 110)'/%3E%3Cuse href='%23t' transform='rotate(20 110 110)'/%3E%3Cuse href='%23t' transform='rotate(24 110 110)'/%3E%3Cuse href='%23t' transform='rotate(28 110 110)'/%3E%3Cuse href='%23t' transform='rotate(32 110 110)'/%3E%3Cuse href='%23t' transform='rotate(36 110 110)'/%3E%3Cuse href='%23t' transform='rotate(40 110 110)'/%3E%3Cuse href='%23t' transform='rotate(44 110 110)'/%3E%3Cuse href='%23t' transform='rotate(48 110 110)'/%3E%3Cuse href='%23t' transform='rotate(52 110 110)'/%3E%3Cuse href='%23t' transform='rotate(56 110 110)'/%3E%3Cuse href='%23t' transform='rotate(60 110 110)'/%3E%3Cuse href='%23t' transform='rotate(64 110 110)'/%3E%3Cuse href='%23t' transform='rotate(68 110 110)'/%3E%3Cuse href='%23t' transform='rotate(72 110 110)'/%3E%3Cuse href='%23t' transform='rotate(76 110 110)'/%3E%3Cuse href='%23t' transform='rotate(80 110 110)'/%3E%3Cuse href='%23t' transform='rotate(84 110 110)'/%3E%3Cuse href='%23t' transform='rotate(88 110 110)'/%3E%3Cuse href='%23t' transform='rotate(92 110 110)'/%3E%3Cuse href='%23t' transform='rotate(96 110 110)'/%3E%3Cuse href='%23t' transform='rotate(100 110 110)'/%3E%3Cuse href='%23t' transform='rotate(104 110 110)'/%3E%3Cuse href='%23t' transform='rotate(108 110 110)'/%3E%3Cuse href='%23t' transform='rotate(112 110 110)'/%3E%3Cuse href='%23t' transform='rotate(116 110 110)'/%3E%3Cuse href='%23t' transform='rotate(120 110 110)'/%3E%3Cuse href='%23t' transform='rotate(124 110 110)'/%3E%3Cuse href='%23t' transform='rotate(128 110 110)'/%3E%3Cuse href='%23t' transform='rotate(132 110 110)'/%3E%3Cuse href='%23t' transform='rotate(136 110 110)'/%3E%3Cuse href='%23t' transform='rotate(140 110 110)'/%3E%3Cuse href='%23t' transform='rotate(144 110 110)'/%3E%3Cuse href='%23t' transform='rotate(148 110 110)'/%3E%3Cuse href='%23t' transform='rotate(152 110 110)'/%3E%3Cuse href='%23t' transform='rotate(156 110 110)'/%3E%3Cuse href='%23t' transform='rotate(160 110 110)'/%3E%3Cuse href='%23t' transform='rotate(164 110 110)'/%3E%3Cuse href='%23t' transform='rotate(168 110 110)'/%3E%3Cuse href='%23t' transform='rotate(172 110 110)'/%3E%3Cuse href='%23t' transform='rotate(176 110 110)'/%3E%3Cuse href='%23t' transform='rotate(180 110 110)'/%3E%3Cuse href='%23t' transform='rotate(184 110 110)'/%3E%3Cuse href='%23t' transform='rotate(188 110 110)'/%3E%3Cuse href='%23t' transform='rotate(192 110 110)'/%3E%3Cuse href='%23t' transform='rotate(196 110 110)'/%3E%3Cuse href='%23t' transform='rotate(200 110 110)'/%3E%3Cuse href='%23t' transform='rotate(204 110 110)'/%3E%3Cuse href='%23t' transform='rotate(208 110 110)'/%3E%3Cuse href='%23t' transform='rotate(212 110 110)'/%3E%3Cuse href='%23t' transform='rotate(216 110 110)'/%3E%3Cuse href='%23t' transform='rotate(220 110 110)'/%3E%3Cuse href='%23t' transform='rotate(224 110 110)'/%3E%3Cuse href='%23t' transform='rotate(228 110 110)'/%3E%3Cuse href='%23t' transform='rotate(232 110 110)'/%3E%3Cuse href='%23t' transform='rotate(236 110 110)'/%3E%3Cuse href='%23t' transform='rotate(240 110 110)'/%3E%3Cuse href='%23t' transform='rotate(244 110 110)'/%3E%3Cuse href='%23t' transform='rotate(248 110 110)'/%3E%3Cuse href='%23t' transform='rotate(252 110 110)'/%3E%3Cuse href='%23t' transform='rotate(256 110 110)'/%3E%3Cuse href='%23t' transform='rotate(260 110 110)'/%3E%3Cuse href='%23t' transform='rotate(264 110 110)'/%3E%3Cuse href='%23t' transform='rotate(268 110 110)'/%3E%3Cuse href='%23t' transform='rotate(272 110 110)'/%3E%3Cuse href='%23t' transform='rotate(276 110 110)'/%3E%3Cuse href='%23t' transform='rotate(280 110 110)'/%3E%3Cuse href='%23t' transform='rotate(284 110 110)'/%3E%3Cuse href='%23t' transform='rotate(288 110 110)'/%3E%3Cuse href='%23t' transform='rotate(292 110 110)'/%3E%3Cuse href='%23t' transform='rotate(296 110 110)'/%3E%3Cuse href='%23t' transform='rotate(300 110 110)'/%3E%3Cuse href='%23t' transform='rotate(304 110 110)'/%3E%3Cuse href='%23t' transform='rotate(308 110 110)'/%3E%3Cuse href='%23t' transform='rotate(312 110 110)'/%3E%3Cuse href='%23t' transform='rotate(316 110 110)'/%3E%3Cuse href='%23t' transform='rotate(320 110 110)'/%3E%3Cuse href='%23t' transform='rotate(324 110 110)'/%3E%3Cuse href='%23t' transform='rotate(328 110 110)'/%3E%3Cuse href='%23t' transform='rotate(332 110 110)'/%3E%3Cuse href='%23t' transform='rotate(336 110 110)'/%3E%3Cuse href='%23t' transform='rotate(340 110 110)'/%3E%3Cuse href='%23t' transform='rotate(344 110 110)'/%3E%3Cuse href='%23t' transform='rotate(348 110 110)'/%3E%3Cuse href='%23t' transform='rotate(352 110 110)'/%3E%3Cuse href='%23t' transform='rotate(356 110 110)'/%3E%3C/g%3E%3C/svg%3E");
        --tick-filter: none;
    }
    .service-item:hover strong {
        color: #fff;
    }
    .service-item:hover {
        color: #fff;
        box-shadow: 0 .12rem .28rem rgba(5, 99, 198, .18);
        transform: none;
    }
    .service-item:hover::after {
        inset: 0;
        background: radial-gradient(circle at 72% 22%, #1599e2 0, #0c71ce 36%, #0758bd 68%, #034aad 100%);
    }
    .service-item:hover i img {
        filter: brightness(0) invert(1);
    }
    .sidebar li>a:hover {
        color: #0067be;
        font-weight: 700;
    }
    .sidebar li>a:hover:before {
        background: #0067be;
    }
    .list-item:hover {
        color: #fff;
        border-bottom: 0;
    }
    .list-item:hover::after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        z-index: -1;
        right: 0;
        left: -.3rem;
        background: linear-gradient(90deg, #0756c0, #39bfdf);
        box-shadow: 0 .1rem .22rem rgba(0, 91, 172, .22);
    }
    .list-item:hover time,
    .list-item:hover h2,
    .list-item:hover p,
    .image-list-item:hover {
        color: #fff;
    }
    .image-list-item:hover::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        height: 100%;
        right: 0;
        left: -.4rem;
        background: linear-gradient(135deg, #0233A8, #4DC1E5);
        box-shadow: 0 .1rem .22rem rgba(0, 91, 172, .22);
    }
    .image-list-item:hover h2,
    .image-list-item:hover p,
    .image-list-item:hover time {
        color: #fff;
    }
    .image-list-item:hover time::after {
        border-color: #FFF;
        background-color: transparent;
    }
    .image-list-item:hover time::before {
        background-color: #FFF;
    }
}