html {
    box-sizing: border-box;
    font-size: 16px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    min-width: 23rem;
    height: 100%;
    font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
}

#swiperBanner {
    height: 100vh;
    width: 100%;
}

.swiperBanner > .swiper-pagination-bullets > .swiper-pagination-bullet-active {
    background: #fff;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(.25rem);
        -moz-transform: translateY(.25rem);
        -o-transform: translateY(.25rem);
        transform: translateY(.23rem)
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

#nav-placeholders {
    height: 7.5rem;
    transition: all 0.5s ease-out 0.3s;;
}

.content {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    /*transition: all 0.3s ease-out 0s;*/
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-container {
    max-height: 100vh;
    width: 100%;
    height: 100%;
}

.header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    width: 100%;
    height: 7.5rem;
    color: white;
    position: fixed;
    z-index: 9;
    transition: all 0.5s ease-in-out;
    /*transition: all 0.3s ease-out 0s;*/
    /*transition: top 0.7s cubic-bezier(0.5,0,0.2,1) 0s;*/
    /*transition: all 0.3s ease-in-out 0s;*/
    /*transition: all 250ms linear;*/
    /*transition: transform 200ms ease, color 200ms ease;*/
}

.header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    height: 100%;
    margin: 0 auto;
}

.header-logo {
    height: 6.25rem;
    width: 17.4375rem;
    flex-shrink: 0;
}

.header-nav {
    flex: 1;
    white-space: nowrap;
    margin-left: 2.25rem;
    margin-top: 1rem;
}

.nav-top {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 2.875rem;
    font-size: 1rem;

}

.nav-top-week {
    display: flex;
    align-items: center;
}

.link-img-title {
    height: 1.25rem;
    margin-right: 0.25rem;
}

.link-img {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.link-img:after{
    content: '';
    width: 0;
    height: 0.125rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.link-img:hover:after{
    width: 100%;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.nav-top-bar {
    display: flex;
}

.nav-navbar {
    list-style: none;
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
}

.nav-navbar li {
    position: relative;
    display: flex;
    justify-content: center;
}

.nav-navbar > li > a {
    position: relative;
}

.nav-navbar a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    /*width: 7.5rem;*/
    padding: 1.3125rem 0;
}

.nav-navbar a:hover {
    /*background-color: #575757;*/
}

.nav-dropdown {
    /*display: none;*/
    position: absolute;
    top: 4.3125rem;
    /*left: calc(50% - 5.125rem);*/
    left: calc(50% - 4.6875rem);
    list-style: none;
    background-color: rgba(255, 255, 255, 0.88);
    margin: 0;
    z-index: 1;
    font-size: 1.125rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .2);
    width: 9.375rem;
    text-align: center;
    /*padding: 0.25rem 0;*/
    border-radius: 0 0 0.375rem 0.375rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.nav-dropdown li {
    position: relative;
}

.nav-dropdown a {
    padding: 0.75rem 0;
    white-space: nowrap;
    color: #636566;
    width: 100%;
}

.nav-navbar li:hover > .nav-dropdown {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
}

.nav-dropdown li:hover > .nav-dropdown {
    left: 100%;
    top: 0.25rem;
}

.nav-dropdown a:hover {
    background-color: #3269a0;
    color: #ffffff;
}

.link-img-title {
    /*display: none;*/
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 2.25rem;
}

#searchInput::placeholder {
    color: #ffffff;
}

.search-input {
    background-color: transparent;
    width: 2.25rem; /* 默认宽度，保持图标显示 */
    height: 2.25rem;
    padding: 0 0.9375rem;
    color: transparent;
    border: 0.0625rem solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    outline: none;
    font-size: 1rem;
    transition: width 0.3s ease;
    text-align: center;
}


.search-btn {
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 2.25rem;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.search-btn:hover {
    /*background-color: #f0f0f0;*/
    border-radius: 50%;
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

/* 隐藏 placeholder */
.search-input::placeholder {
    opacity: 0;
}

.search-container:hover .search-input::placeholder {
    opacity: 1;
    color:#ffffff;
}

/* 鼠标悬停时和输入框获取焦点时，展开输入框 */
.search-container:hover .search-input,
.search-input:focus {
    width: 12.5rem; /* 展开后的宽度 */
    text-align: left; /* 聚焦时文字左对齐 */
    color: #ffffff;
}

/* 当输入框获取焦点时，隐藏按钮 */
.search-container input:focus + .search-btn {
    display: block;
}

.search-container input:not(:focus) + .search-btn {
    display: block;
}


li {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

.menu {
    display: none;
}


.news {
    width: 100%;
    background-color: #ffffff;
    padding: 3rem 0;
    background-image: url("../images/news-left-background.png"), url("../images/news-right-background.png");
    background-repeat: no-repeat no-repeat;
    background-position: left center, right bottom;
    background-size: 10%, 21%;
}

.news-container {
    width: 68%;
    margin: 0 auto;
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.news-bar {
    font-weight: bold;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.news-bar img {
    height: 1.5rem;
}

.news-bar-chinese {
    color: #004d82;
    font-size: 2rem;
    margin: 0 1.125rem 0 0.75rem;
}

.news-bar-english {
    color: #9eacc6;
    font-size: 2rem;
}

.more {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1a5397;
    display: flex;
    align-items: center;
}

.more img {
    height: 0.375rem;
    margin-right: 1rem;
}

.news-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.news-banner {
    width: 44%;
    height: 28rem;
}

.news-slide {
    height: 25.625rem;
    transition: all 0.4s ease-in;
}

.news-slide:hover {
    transform: scale(1.03);
}


.news-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-img-title {
    position: absolute;
    bottom: -2.5rem;
    left: 25%;
    background: linear-gradient(to right, #0b5d9e, #0c4580);
    color: #FCDCA9;
    padding: 1rem;
    right: 0;
}

.news-pagination {
    position: absolute;
    left: auto !important;
    right: 1.5rem !important;
    width: auto !important;
}

.news-pagination .swiper-pagination-bullet {
    background: rgba(252, 220, 169, 0.3);
    opacity: inherit;
    margin: 0 0.5rem !important;
}

.news-pagination .swiper-pagination-bullet-active {
    background: rgba(252, 220, 169, 1);
}


.news-img-title-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.news-img-title-date {
    margin: 0.25rem 0;
}

.news-list {
    width: 53%;
}

.news-list-item {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 5rem;
    align-items: center;
    background: #f7f7f7;
    margin: 0.75rem 0;
    filter: drop-shadow(0 0 0.125rem #cecece) drop-shadow(0 0 0 #ffffff);
}

.news-list-item:hover {
background: url("../images/newslistimg.png"), linear-gradient(to right, #0b5d9e, #0c4580);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 0.75rem 0;
    transform: scale(1.02);
}

.news-list-item:hover .news-list-item-title,
.news-list-item:hover .news-list-item-date {
    color: #fcdca9;
}

.news-list-item-date {
    border-right: 0.0625rem #afafaf solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 5.875rem;
    padding: 0 0.75rem;
    color: #1a5397;
    font-weight: bold;
}

.news-list-item-date .d1 {
    font-size: 1.375rem;
}

.news-list-item-date .d2 {
    font-size: 0.9375rem;
}

.news-list-item-title {
    padding: 0 0.75rem;
    /*color: #4d5051;*/
    color: #2c2e2e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.125rem;
}

.news-list-item:first-child {
    margin-top: 0;
}

.news-list-item:last-child {
    margin-bottom: 0;
}

.notice {
    width: 100%;
    position: relative;
    background: url("../images/notification-background.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    transition: background 0.5s ease;
}

.notice::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background: url("../images/school-building.png") no-repeat center bottom;
    background-size: contain;
}

.notice-container {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 8rem;
}

.notice-container .notice-content {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.custom-prev {
    left: -5%;
    z-index: 1;
}

.custom-next {
    right: -5%;
    z-index: 1;
}

.notice-bar {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1.5rem 0;
    color: #004d82;
    align-items: center;
}

.notice-item-title {
    margin: 0 auto;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: bold;
    padding-left: 10.3125rem;
}

.notice-bar-chinese {
    letter-spacing: 0.25rem;
    margin: 0 1.375rem;
    font-size: 2rem;
}

.notice-bar-english {
    color: #9eacc6;
    font-size: 2rem;
}

.notice-slide {
    display: flex;
    flex-direction: row;
    height: 5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.notice-slide:hover {
    transform: scale(1.03);
    /*transition: all 0.4s ease-in;*/
}

.mobile-notice-content {
    display: none;
}

.notice-content-date {
    min-width: 3.625rem;
    margin-right: 0.75rem;
    height: 100%;
    background: #0059a6;
    color: #fff;
    line-height: 1.5rem;
    padding: 0.25rem 0;
}

.notice-content-date .d1 {
    font-size: 1.375rem;
    color: #ffd073;
    text-align: center;
    padding-top: 0.125rem;
    font-weight: bold;
}

.notice-content-date .d2 {
    font-size: 0.6875rem;
    color: #edeeef;
    text-align: center;
    border-bottom: 0.0625rem solid #aaaaaa;
    font-weight: bold;
}

.notice-content-date .d3 {
    font-size: 0.75rem;
    color: #edeeef;
    text-align: center;
}

.notice-content-title {
    width: 23.75rem;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    padding: 1rem 0.75rem;
    border-radius: 0 2.625rem 0 0;
    box-shadow: 0.125rem 0.0625rem 0.375rem 0 #bcbcbc;
    display: flex;
    align-items: center;
    line-height: 1.5rem;
    font-size: 1.125rem;
    color: #2c2e2e;
}

.notice-content-title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.mien {
    width: 100%;
    background: url("../images/mien-background5.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.mien-container {
    width: 68%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4.5rem 0;
}

.mien-left {
    width: 42%;
    height: 25.9375rem;
}

.mien-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mien-more-parent {
    width: 100%;
}

.mien-more {
    color: #ffffff;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    float: right;
    display: flex;
    align-items: center;
}

.mien-more a {
    color: #ffffff;
}

.mien-more img {
    height: 0.375rem;
    margin-right: 1rem;
}

.mien-bar {
    display: flex;
    font-size: 2rem;
    color: #e8e9ea;
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: bold;
    align-items: center;
    z-index: 1;
}

.mien-bar div.active {
    color: #ffd073;
    font-size: 2.5rem;
}

.mien-bar-mark {
    font-size: 1.5rem;
    margin: 0 2.25rem;
}

.mien-bar-chinese {
    white-space: nowrap;
    cursor: pointer;
    z-index: 9;
}

.mien-bar-english {
    font-size: 3rem;
    color: #d8d6d6;
    opacity: 0.35;
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    white-space: nowrap;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard syntax */
}

.mien-list {
    width: 100%;
    margin-top: 1.5rem;
}
.mien-list-item{
    padding: 0 0.75rem;
    background-color: rgba(255, 255, 255, 0.85);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.mien-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 6.25rem;
    color: #2c2e2e;
    font-size: 1.125rem;
    width: 100%;
    border-bottom: #b8b8b8 solid 0.0625rem;
}

.mien-content:hover {
    color: #004d80;
}

.mien-content:nth-child(3) {
    border-bottom: none;
}

.mien-date {
    line-height: 1.75rem;
    padding-right: 0.75rem;
    border-right: 0.0625rem #afafaf solid;
}

.mien-date .d1 {
    font-size: 1.375rem;
    font-weight: bold;
    text-align: center;
}

.mien-date .d2 {
    font-size: 0.9375rem;
    text-align: center;
    font-weight: bold;
}

.mien-content-title {
    line-height: 1.75rem;
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0.75rem;
}

.mien-content-title p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.forum {
    width: 100%;
    background: #f7f7f7;
}

.forum-container {
    width: 68%;
    margin: 0 auto;
    padding: 4.5rem 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

.forum-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.forum-bar-item {
    display: flex;
    position: relative;
    /*margin-bottom: 1.5rem;*/
    font-weight: bold;
    align-items: center;
    font-size: 2rem;
    color: #004d80;
}

.forum-bar-item div.active {
    font-size: 2.5rem;
}

.forum-bar-chinese {
    white-space: nowrap;
    cursor: pointer;
    z-index: 9;
}

.forum-bar-english {
    font-size: 3rem;
    color: #d0d0d0;
    top: -2rem;
    left: 0;
}

.forum-content {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 2rem 0;
    justify-content: space-between;
    gap: 1rem;
}

.forum-left {
    background: #ffffff;
    width: 42%;
    /*min-width: 400px;*/
    /*margin-right: 1rem;*/
}

.forum-right {
    width: 55%;
}

.forum-banner {


}

.forum-banner-title {
    text-align: center;
    height: 4rem;
    font-size: 1.375rem;
    color: #545454;
    font-weight: bold;
    line-height: 4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
    padding-right: 0.75rem;
}


.forum-banner-top {
    display: flex;
    flex-wrap: nowrap;
}

.forum-banner-title-bar {
    white-space: nowrap;
    text-align: center;
    padding: 0.25rem 0.75rem;
}


.forum-banner-title-bar-img {
    height: 1.5rem;
}

.forum-banner-title-bar-t {
    font-size: 0.75rem;
    color: #aa0925;
    font-weight: bold;
}

.forum-banner-title-bar-q {
    font-size: 0.625rem;
    color: #aa0925;
    font-weight: bold;
}

.forum-banner-middle {
    background: #a83a3d;
    color: #ffffff;
    padding: 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    position: relative;
    height: 11rem;
}

.forum-banner-middle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    background: url("../images/forumImg-left.png") no-repeat;
    background-size: contain;
    height: 2.375rem;
    width: 8.125rem;
}

.forum-banner-middle::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0.75rem;
    background: url("../images/forumImg-left.png") no-repeat;
    background-size: contain;
    transform: scaleX(-1);
    height: 2.375rem;
    width: 8.125rem;
}

.forum-banner-middle-item {
    display: flex;
    flex-direction: row;
}

.forum-banner-bgr {
    font-size: 1.25rem;
    font-weight: bold;
    min-width: 5.652rem;
}

.forum-banner-bgr-title {
    font-size: 1.125rem;
}

.forum-banner-middle-name {
    font-size: 2.375rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.5rem;
    line-height: 3.625rem;
    position: relative;
}

.forum-banner-middle-name-zc {
    font-size: 1.375rem;
    font-weight: normal;
    position: absolute;
    width: 3.75rem;
    right: -5rem;
    bottom: -0.5rem;
}

.forum-banner-bottom {
    display: flex;
    flex-direction: row;
    color: #515151;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    justify-content: space-around;
    letter-spacing: 0;
}

.forum-banner-bottom-date {
    margin: 0.375rem 0.25rem 0.375rem 0;
    display: flex;
    align-items: center;
}

.forum-banner-bottom-date img {
    height: 1.125rem;
    margin-right: 0.75rem;
}

.forum-right-title {
    background: #ffffff;
    box-shadow: 0.1875rem 0.1875rem 0.1875rem 0.0624rem #bcbcbc;
    line-height: 5.625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 0.75rem;
    margin-bottom: 1.375rem;
    color: #2c2e2e;
    font-size: 1.125rem;
    display: block;
}

.forum-right-title:nth-child(3) {
    margin-bottom: 0;
}

.forum-right-title:hover {
    background: #a83a3d;
    color: #ffffff;
    transform: scale(1.02);
}

.media-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.content-section2 {
    display: none;
}

.content-section2.active {
    display: flex;
}

.media-item {
    height: 5.75rem;
    line-height: 5.75rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 1.375rem;
}

.media-date {
    margin-right: 0.75rem;
    background: #ffffff;
    padding: 0 0.75rem;
    text-align: center;
    font-weight: bold;
    color: #004d80;
    font-size: 1.375rem;
    box-shadow: 0.1875rem 0.1875rem 0.1875rem 0.0625rem #bcbcbc;
    position: relative;
    z-index: 1;
}

.media-date:before {
    content: "";
    background: url("../images/media-img.png") center center no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: cc 20s linear 0s infinite;
    z-index: -1;
    transform-origin: center center;
}

@keyframes cc {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.media-title {
    background: #ffffff;
    padding: 0 0.75rem;
    width: 100%;
    font-size: 1.125rem;
    color: #2c2e2e;
    box-shadow: 0.1875rem 0.1875rem 0.1875rem 0.0625rem #bcbcbc;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.media-title p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-item:nth-child(3) {
    margin-bottom: 0;
}

.media-title:hover {
    color: #004d80;
    cursor: pointer;
}

.web-bottom {
    background: url("../images/website-background2.png") no-repeat;
    background-size: cover;
    width: 100%;
}

.special {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 3rem 0;
    position: relative;
}


.specialImg-pagination{
    text-align: center;
}

.specialImg-pagination > .swiper-pagination-bullet-active{
    background: #fff;
}

.special-bar {
    color: #ffffff;
    font-weight: bold;
    font-size: 2.5rem;
    white-space: nowrap;
    flex: 0 0 auto
}

.special-bar-english {
    color: #e5e5e5;
    opacity: 0.5;
}

.specialImg {
    margin-left: 3rem;
    flex: 1;
}

.special-img-item {
    display: block;
    /*width: 11.875rem;*/
    /*height: 25.375rem;*/
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.special-img-item:hover {
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}



/*底部区域*/
.web-link {
    background: rgba(0, 51, 77,0.97);
    width: 100%;
    color: #fff;
    /**padding: 1rem 0;*/
}

.footer-dept-img {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1.125rem;
    align-items: center;
}

.footer-dept {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    justify-content: space-evenly;
    font-size: 1.375rem;
    line-height: 1.5rem;
    flex: 2;
}

.footer-dept-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: 1.5rem;
    position: relative;
    cursor: pointer;
    padding: 1rem 0;
}

.footer-dept-item:nth-child(3) {
    margin-right: 0;
}

.footer-dept-item img{
    margin-right: 0.25rem;
    width: 1.625rem;
    height: 1.625rem;
}

.footer-popup {
    height: 11.25rem;
    padding: 0.5rem;
    position: absolute;
    width: 43.75rem;
    top: -11.25rem;
    left: calc(50% - 21.875rem);
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 51, 77, 0.88);
    overflow: hidden;
    z-index: 11;
    opacity: 0;
    transform: translateY(-20%);
    transition: all 0.5s ease-in-out;
    visibility: hidden;
}

/*确保透明覆盖层能够完全覆盖 .footer-popup 的区域*/
.hover-trigger {
    position: absolute;
    top: -2.9375rem;
    left: 0;
    width: 11rem;
    height: 3.125rem;
    z-index: 1;
    background: transparent;
    cursor: pointer;
}


.footer-dept-item:hover .footer-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.footer-popup a {
    margin-right: 0.625rem;
    width: 10rem;
}


.footer-popup a:hover {
    color: #ffffff;
}

.footer-popup span {
    position: relative;
}

.footer-popup span:after {
    content: '';
    width: 0;
    height: 0.0625rem;
    position: absolute;
    bottom: -0.375rem;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.footer-popup span:hover:after {
    width: 100%;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.qr-popup {
    position: absolute;
    top: -8.125rem;
    left: 50%;
    /*transform: translateX(-50%);*/
    width: 6.25rem;
    height: 6.25rem;
    /*display: none;*/
    /*opacity: 0;*/
    /*transition: opacity 0.3s ease, visibility 0.3s ease;*/
    opacity: 0;
    /*transition: all 0.5s ease-in-out;*/
    transform: translateY(20%) translateX(-50%);
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    z-index: 2;
    cursor: pointer;
}

.qr-img-item:hover .qr-popup {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.qr-popup:before {
    content: '';
    position: absolute;
    left: calc(50% - 0.75rem);
    bottom: -1rem;
    width: 0;
    height: 0;
    border-width: 0.375rem 0.75rem 0.75rem 0.75rem;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    transform: rotate(180deg);
}

.web-footer {
    /*background: url("https://www.tfswufe.edu.cn/images/footer-bg.png");*/
    background: #00334D;
    background-size: cover;
    padding-top: 0.5rem;
    color: rgba(255, 255, 255, 0.66);
}

.web-footer-container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.web-footer-container-qr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-qr {
    margin-right: 1rem;
    text-align: center;
    width: 6rem;
    height: 6rem;
}

.footer-qr > img {
    width: 100%;
    height: 100%;
}

.footer-qr > p {
    margin: 0.5rem 0;
}

.footer-qr:nth-child(4) {
    margin-right: 0;
}

.footer-logo {
    width: 16rem;
}

.footer-address > p {
    margin: 0.25rem 0;
}

.footer-copyright {
    /*background: linear-gradient(180deg, #b39157 0%, #b8965a 100%);*/
    background: #002C43;
    padding: 0.125rem;
    text-align: center;
    color: #ffffffA8;
    margin-top: 1rem;
}
@media (max-width: 1280px) {
    .web-footer-container {
        width: 90%;
    }
    .footer-logo {
        width: 14rem;
    }
    .footer-qr{
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 768px) {
    .footer-dept{
        width: 80%;
    }
    .web-footer-container-qr{
        display: none;
    }
    .footer-logo{
        width: 12rem;
    }
}
@media (max-width: 480px) {
    .web-link{
        /**padding: 0.5rem;*/
    }
    .footer-dept-item{
        margin-right: 0.5rem;
        padding: 0.5rem 0;
    }
    .footer-dept{
        width: 100%;
    }
}

@media (max-width: 385px) {
    .footer-address{
        font-size: 14px;
    }
}
/*链接区域结束*/

.mobile-more {
    display: none;
}

.mobile-menu-more {
    display: none;
}

.mobile-search {
    display: none;
}

/* 定义动画 */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%); /* 开始时元素在视图外右侧 */
        opacity: 0; /* 开始时不可见 */
    }
    100% {
        transform: translateX(0); /* 动画结束时元素回到原位 */
        opacity: 1; /* 结束时完全可见 */
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(100%); /* 开始时元素在视图外右侧 */
        opacity: 0; /* 开始时不可见 */
    }
    100% {
        transform: translateY(0); /* 动画结束时元素回到原位 */
        opacity: 1; /* 结束时完全可见 */
    }
}

.content-fixed {
    position: fixed;
    right: 0.5rem;
    top: 25%;
    width: 6rem;
    z-index: 8;
    font-size: 0.75rem;
    color: #245587;
    display: none;
}

.mobile-fixed {
    position: fixed;
    right: -2.75rem;
    top: 45%;
    z-index: 8;
    width: 5rem;
    display: none;
transition: all 1s ease-out;
}

.mobile-fixed.show {
    display: block;
}

/*.mobile-fixed:after {*/
/*    content: '>';*/
/*    position: absolute;*/
/*    right: 1.75rem;*/
/*    color: #fff;*/
/*    top: calc(100% - 4rem);*/
/*}*/

.mobile-fixed img {
    width: 5rem;
transform: rotate(-90deg);
}

.content-fixed.show {
    display: block;
    animation: slideInFromRight 1s forwards;
}

.build-fixed-img {
    width: 6rem;
    margin-bottom: -0.625rem;
}

.content-fixed-list {
    display: flex;
    flex-direction: column;
    height: 22rem;
    width: 4.375rem;
    margin: 0 auto;
    border-bottom: 0.0625rem rgba(36, 85, 135, 0.5) solid;
    border-left: 0.0625rem rgba(36, 85, 135, 0.5) solid;
    border-right: 0.0625rem rgba(36, 85, 135, 0.5) solid;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    background: #ffffff;
}

.content-fixed-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.375rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-fixed-list-item:hover{
    transition: all 0.1s ease-in-out;
    transform: scale(1.03);
}

.content-fixed-list-item:after {
    content: '';
    width: 50%;
    height: 0.0625rem;
    position: absolute;
    bottom: -0.5rem;
    background: #e6e6e6;
}

.content-fixed-list-item:hover:after {
    width: 100%;
    transition: all 0.5s ease-in-out;
    background: #245587;
}

.content-fixed-list-item img {
    margin-bottom: 0.65rem;
    width: 2rem;
}

.content-fixed-close {
    position: absolute;
    top: -12px;
    right: 0px;
    cursor: pointer;
    display: none;
}

.news-container, .mien-container, .forum-container, .special {
    max-width: 2000px;
}

.notice-container, .header-item, .web-footer-container {
    max-width: 2600px;
}

/*.loading-animation {*/
/*    opacity: 0; !* 初始不可见 *!*/
/*    transform: translateY(50px); !* 初始位置偏下 *!*/
/*    transition: opacity 0.6s ease, transform 0.6s ease;*/
/*    will-change: opacity, transform; !* 提前告诉浏览器将会发生动画 *!*/
/*}*/

/*!* 进入视口后显示的样式 *!*/
/*.loading-animation.visible {*/
/*    opacity: 1;*/
/*    transform: translateY(0); !* 回到原位 *!*/
/*}*/


@media (min-width: 2200px) {
    html {
        font-size: 17px;
    }
}

@media (max-width: 2200px) {
    html {
        font-size: 16px;
    }

    /*.nav-dropdown {*/
    /*    top: 3.9375rem;*/
    /*}*/
}

@media (max-width: 1920px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 1440px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 1023px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}
@media (max-width: 2000px) {
    .special {
        width: 80%;
    }
}


/*@media (max-width: 2200px) {*/
/*    .special {*/
/*        width: 80%;*/
/*    }*/
/*}*/

/*@media (max-width: 1980px) {*/
/*    .special {*/
/*        width: 90%;*/
/*    }*/
/*}*/

@media (max-width: 1920px) {
    .news-container, .mien-container, .forum-container {
        width: 75%;
    }

    /*.news {*/
    /*    margin: 7.5rem 0;*/
    /*}*/
    /*.forum-container {*/
    /*    padding: 7.5rem 0;*/
    /*}*/
    /*}*/
    /*.special-bar {*/
    /*    font-size: 2.625rem;*/
    /*}*/
    .bottom-logo {
        height: 6.25rem;
        width: 17.5rem;
        margin-right: 5rem;
    }

    .footer-dept {
        font-size: 1.25rem;
    }

    .qr-popup {
        top: -7.125rem;
    }

}

@media (max-width: 1600px) {
    .forum-banner-bottom-date img {
        margin-right: 0.25rem;
    }
}

@media (max-width: 1440px) {
    .news-container, .mien-container, .forum-container {
        width: 80%;
    }

    .mien-container, .forum-container {
        padding: 3.5rem 0;
    }

    .news {
        padding:2rem 0;
    }

    .news-bar img {
        height: 1.25rem;
    }

    .news-bar .news-bar-chinese, .notice-item-title .notice-bar-chinese {
        font-size: 1.875rem;
    }

    .news-bar .news-bar-english, .notice-bar-chinese, .notice-bar-english {
        font-size: 1.75rem;
    }

    .mien-bar, .forum-bar-item {
        font-size: 1.625rem;
    }

    .mien-bar-english {
        font-size: 2.25rem;
        top: -1.25rem;
    }

    .mien-bar div.active, .forum-bar-item div.active {
        font-size: 2rem;
    }

    .forum-content {
        margin: 1rem 0;
    }

    .more, .mien-more {
        font-size: 1.125rem;
    }

    .more img, .mien-more img {
        height: 0.3125rem;
    }

    .special-bar {
        font-size: 2.375rem;
    }

    .bottom-logo {
        height: 6.25rem;
        width: 17.5rem;
        margin-right: 3.75rem;
    }

    .qr-img {
        margin-left: 3.75rem;
    }

    .footer-dept {
        font-size: 1.125rem;
    }

    .forum-banner-bottom-date img {
        display: none;
    }
}


@media (max-width: 1280px) {
    .news-list-item:hover {
        background: linear-gradient(to right, #0b5d9e, #0c4580);
    }
    .news-container, .mien-container, .forum-container, .special {
        width: 90%;
    }

    /*.notice-container {*/
    /*    width: 90%;*/
    /*}*/
    /*.news {*/
    /*    margin: 3.75rem 0;*/
    /*}*/
    /*.notice-bar {*/
    /*    padding: 3.125rem 0;*/
    /*}*/
    /*.notice-container {*/
    /*    padding-bottom: 12.5rem;*/
    /*}*/
    /*.forum-banner-title, .forum-banner-middle-name-zc {*/
    /*    font-size: 1.25rem;*/
    /*}*/
    /*.forum-banner-bgr {*/
    /*    font-size: 1.125rem;*/
    /*}*/
    /*.forum-banner-bgr-title {*/
    /*    font-size: 1rem;*/
    /*}*/
    /*.forum-banner-middle-name {*/
    /*    font-size: 2rem;*/
    /*}*/
    .footer-dept-item img:nth-child(3) {
        margin-right: 0.375rem;
    }

    .bottom-logo {
        height: 5.625rem;
        width: 15.6875rem;
        margin-right: 2.5rem;
    }

    .qr-img {
        margin-left: 2.5rem;
    }

    .footer-dept-img {
        margin-bottom: 1rem;
    }

    .footer-dept {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
.nav-navbar > li > a:after {
    content: '';
    width: 0;
    height: 0.125rem;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.nav-navbar > li > a:hover:after {
    width: 100%;
    left: 0;
    transition: all 0.5s ease-in-out;
}
    .nav-navbar {
        display: flex !important;
    }

    .forum-left {
        min-width: 400px;
    }
.nav-item{
            margin: 0 2.875rem;
}
.banner-button-next {
    position: absolute;
    bottom: 1rem;
    z-index: 6;
    text-align: center;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
}

.banner-button-next img {
    animation: scroll 1.5s cubic-bezier(.15, .41, .69, .94) infinite;
}

.swiperBanner > .swiper-pagination-bullets > .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
}

.swiperBanner > .swiper-pagination-bullets {
    bottom: 4.5rem;
    /*left: auto;*/
    /*right: 2rem;*/
    /*width: auto;*/
}
}

@media (max-width: 560px) {
    .forum-banner-bottom {
        justify-content: flex-start;
        padding: 0 1.5rem;
        font-size: 1rem;
    }

    .forum-banner-bottom-date img {
        margin-right: 0.75rem;
    }
}

@media (max-width: 1320px) {
    .header-item {
        width: 99%;
    }

    .header-logo {
        height: 5rem;
        width: 13.9375rem;
    }

    .nav-navbar {
        font-size: 1.25rem;
        /*font-weight: bold;*/
    }

    .nav-navbar a {
        /*width: 6.25rem;*/
        padding: 1.75rem 0;
    }

    .nav-dropdown {
        width: 8.125rem;
        font-weight: normal;
        opacity: 0.88;
        left: calc(50% - 4.0625rem);
        top: 4.9375rem;
    }

    .link-img {
        margin-left: 1.5rem;
    }

/**    .nav-top {
        justify-content: space-around;
        margin: 0;
    }
*/
    .nav-dropdown a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .header-nav {
        margin-left: 0;
    }

    .search-input {
        width: 1.875rem;
        height: 1.875rem;
    }

    .search-icon {
        width: 0.75rem;
        height: 0.75rem;
    }

    .search-btn {
        width: 1.875rem;
    }

    .search-container {
        margin-left: 1.5rem;
    }
}


@media (max-width: 1023px) {
    .web-footer{
        font-size: 0.9375rem;
    }
    .mobile-search {
        margin-top: 1rem;
        display: block;
        position: relative;
        font-size: 1rem;
    }

    .mobile-search-input {
        width: 100%;
        height: 2.25rem;
        border-radius: 1rem;
        padding: 0 0.5rem;
        border: 0.0625rem solid #fff;
        background: transparent;
        color: #ffffff;
    }

    .mobile-search-input::placeholder {
        color: #ffffff;
    }

    .mobile-search img {
        height: 1.125rem;
        width: 1.3125rem;
        position: absolute;
        right: 0.75rem;
        top: 0.4375rem;
    }

    .forum-banner-bottom-date img {
        display: block;
    }

    .forum-banner-title, .forum-banner-middle-name-zc {
        font-size: 1.375rem;
    }

    .forum-banner-bgr {
        font-size: 1.25rem;
    }

    .forum-banner-bgr-title {
        font-size: 1.125rem;
    }

    .forum-banner-middle-name {
        font-size: 2.25rem;
    }

    .nav-item, .nav-top-week, .changeOld, .top-link4, .search-container {
        display: none;
    }

    .news-container, .forum-container, .mien-container {
        width: 80%;
    }

    .mobile-menu-more {
        display: block;
    }

    .nav-item {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: 100%;
        transition: right 0.3s ease;
        background: #00558d !important;
        padding: 0 1rem;
        overflow-y: auto;
        padding-top: 0.75rem;
        z-index: 9999;
    }

    .nav-navbar li {
        position: relative;
        display: block;
    }

    .nav-navbar li a {
        width: 100%;
        text-align: left;
        border-bottom: 0.0625rem solid #ffffff47;
        color: #ffffff;
        padding: 0.75rem 0;
        font-weight: bold;
    }

    .nav-navbar li:last-child a {
        border-bottom: none;
    }

    .mobile-menu-more {
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        right: 1rem;
        top: 0.5rem;
        padding: 0.25rem 0.875rem;
    }

    .mobile-menu-more img {
        height: 1.25rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 85, 141);
        padding: 0 0.5rem;
        font-size: 1.125rem;
        transition:none;
        height: 0;
    }

    .nav-dropdown a:hover {
        color: #ffffff;
    }

    .nav-navbar li:hover > .nav-dropdown {
        /*display: none;*/
        opacity: 0;
        height: 0;
        visibility: hidden;
    }

    .nav-navbar li:hover > .nav-dropdown.open {
        /*display: block;*/
        opacity: 1;
        height: auto;
        visibility: visible;
    }

    .header-logo {
        height: 4.375rem;
        width: 12.25rem;
    }

    .header {
        height: 5rem;
    }

    .nav-navbar::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 1rem;
        background: linear-gradient(to bottom, rgba(17, 54, 99, 0.4), rgba(5, 76, 128, 0.42), rgba(0, 85, 141, 0.7));
    }

    .link-img {
        margin-left: 0.75rem;
    }

    .nav-top {
        padding-top: 0.75rem;
        justify-content: space-between;
    }

    .menu {
        width: 1.5rem;
        height: 1.375rem;
        margin: 0 2rem;
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .menu i {
        height: 0.125rem;
        background: #fff;
        width: 1.625rem;
        border-radius: 0.0625rem;
        margin-bottom: 0.375rem;
    }

    .menu i:nth-child(3) {
        margin-bottom: 0;
    }

    /* 隐藏汉堡图标和显示 X 图标的样式 */
    .menu.x-shape i {
        display: none; /* 隐藏汉堡菜单 */
    }

    .x-shape {
        position: relative;
        width: 1.5rem;
        height: 1.5rem;
    }

    .x-shape:before,
    .x-shape:after {
        content: '';
        position: absolute;
        width: 1.5rem;
        height: 0.125rem;
        background-color: #ffffff;
    }

    .x-shape:before {
        transform: rotate(45deg);
        top: 0.5rem;
        left: 0;
    }

    .x-shape:after {
        transform: rotate(-45deg);
        top: 0.5rem;
        left: 0;
    }

    #swiperBanner {
        height: 31.25rem;
    }

.swiper-slide {
    transform: translate3d(0, 0, 0); 
    backface-visibility: hidden;
will-change: transform;
}

    #swiperBanner .swiper-slide {
        width: 100% !important;
    }

    .news-banner, .news-list {
        width: 100%;
    }

    .news-banner {
        margin-bottom: 1.5rem;
    }

    .news {
        padding: 1.5rem 0;
    }

    .notice-item-title {
        padding-left: 2rem;
    }

    .mien-container {
        position: relative;
        padding: 3rem 0;
    }

    .mien-left {
        position: absolute;
        top: 7.75rem;
        width: 100%;
        height: 25rem;
    }

    .mien-right {
        width: 100%;
        z-index: 2;
        position: relative;
    }

    .mien-bar {
        margin-bottom: 25.625rem;
    }

    .mien-bar-mark {
        font-size: 1rem;
        margin: 0 1rem;
    }

    .mien-more img, .mien-more span {
        display: none;
        margin-right: 0;
    }

    .mien-more {
        margin-top: 0;
    }

    .mien-more-parent {
        position: absolute;
        top: 0;
        right: 0;
    }

    .more img, .more span {
        display: none;
        margin-right: 0;
    }

    .mobile-more {
        display: block !important;
        height: 1.75rem !important;
    }

    .forum-left {
        margin-bottom: 1.5rem;
    }

    .forum-content {
        flex-wrap: wrap;
    }

    .forum-left {
        width: 100%;
    }

    .forum-right {
        width: 100%;
    }

    .forum-container {
        padding: 3rem 0;
    }

    .forum-bar-item {
        margin-bottom: 0.75rem;
    }

    .forum-right-title {
        margin-bottom: 0;
        border-bottom: 0.0625rem solid #b8b8b8;
        height: auto;
        line-height: 4.5rem;
    }

    .media-content {
        margin: 1rem 0;
    }

    .media-item {
        height: 5.375rem;
        line-height: 5.375rem;
        margin-bottom: 1rem;
    }

    .media-date {
        font-size: 1.375rem;
    }

    .specialImg {
        margin-left: 0;
    }

    .special {
        flex-direction: column;
        padding: 2rem 0;
    }

    .special-bar {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .bottom-logo {
        height: 5rem;
        width: 13.9375rem;
        margin-right: 1rem;
    }

    .qr-img {
        display: none;
    }

    .footer-dept-item img {
        display: none;
    }

    .footer-dept-item:after {
        content: '';
        background: url("../images/mobile-footer-dept-img.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 1.125rem;
        height: 0.5rem;
        margin-left: 0.25rem;
    }

    .footer-dept-item {
        position: static;
    }

    .footer-dept {
        position: relative;
    }

    .footer-popup {
        height: 12.75rem;
        width: 22.75rem;
        left: calc(50% - 11.375rem);
        font-size: 0.875rem;
        top: -12.75rem;
    }

    /*.content-fixed.show {*/
    /*    display: none;*/
    /*}*/
    /*.content-fixed-close, .mobile-fixed {*/
    /*    display: block;*/
    /*}*/
}

/*@media (min-width: 768px) {*/
/*    .notice-content {*/
/*        display: block;*/
/*    }*/

/*    .mobile-notice-content {*/
/*        display: none;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .nav-item {
        top: 4.25rem;
    }

    .bottom-logo {
        height: 3.75rem;
        width: 10.5rem;
        display: none;
    }

    .forum-banner-title, .forum-banner-middle-name-zc {
        font-size: 1.125rem;
    }

    .forum-banner-bgr {
        font-size: 1rem;
        min-width: 4.5rem;
    }

    .forum-left {
        margin-bottom: 0.75rem;
    }

    .forum-banner-bgr-title {
        font-size: 1rem;
    }

    .forum-banner-middle-name {
        font-size: 1.25rem;
    }

    .forum-right-title {
        font-size: 1rem;
    }

    .mobile-notice-content {
        display: block;
    }

    .notice-slide {
        margin-top: 0.75rem;
    }

    .notice-content-title {
        width: 100%;
        border-radius: inherit;
    }

    .notice-content {
        display: none;
    }

    .notice-bar {
        padding: 1.25rem 0;
    }

    .notice-container {
        width: 80%;
        /*padding-bottom: 6rem;*/
    }

    .notice-slide {
        height: 4.5rem;
    }

    .notice-content-date .d1 {
        font-size: 1.25rem;
    }

    .notice-content-date .d3 {
        font-size: 0.625rem;
    }

    .notice-content-date {
        padding: 0;
    }

    .notice-item-title .notice-bar-chinese {
        font-size: 1.5rem;
    }

    .notice-bar-chinese {
        padding-bottom: 0;
    }

    .notice-item-title .notice-bar-english {
        font-size: 1rem;
    }

    .header {
        height: 4.25rem;
    }

    .nav-navbar {
        top: 4.25rem;
    }

    .header-logo {
        height: 2.75rem;
        width: 7.625rem;
    }

    .menu {
        margin: 0 0.75rem;
    }

    #swiperBanner {
        height: 15rem;
    }

    .nav-top {
        font-size: 0.875rem;
        padding-top: 0;
    }

    .news-bar img {
        height: 0.75rem;
        width: 3.25rem;
        display: none;
    }

    .forum-bar-item {
        margin-bottom: 0.5rem;
    }

    .forum-container {
        padding: 2.5rem 0;
    }

    .news-bar .news-bar-chinese {
        font-size: 1.5rem;
        margin: 0 0.625rem 0 0;
    }

    .news-bar .news-bar-english {
        font-size: 1rem;
    }

    .mien-bar {
        margin-bottom: 13.5rem;
        font-size: 1.25rem;
    }

    .forum-bar-item {
        font-size: 1.25rem;
    }

    .mien-bar-english {
        font-size: 1.375rem;
        top: -0.75rem;
    }

    .mien-content {
        height: 4.5rem;
        font-size: 1rem;
    }

    .mien-content-title {
        line-height: 1.5rem;
    }

    .mien-date {
        line-height: 1.5rem;
        padding-right: 0.25rem;
    }

    .mien-bar div.active, .forum-bar-item div.active {
        font-size: 1.5rem;
    }

    .mien-date .d1 {
        font-size: 1.25rem;
    }

    .mien-container {
        padding: 2.5rem 0;
    }

    .mien-left {
        height: 13.75rem;
        top: 5.9375rem;
    }

    .news-content {
        margin-top: 0.75rem;
    }

    .news {
        padding: 1.125rem 0;
    }

    .news-img-title {
        left: 10%;
        padding: 0.5rem 0.625rem;
    }

    .news-img-title-content {
        font-size: 1rem;
    }

    .news-list-item {
        margin: 0.5rem 0;
    }

    .news-list-item-title,.notice-content-title {
        font-size: 1rem;
    }

    .news-slide {
        height: 14.375rem;
    }

    .news-banner {
        height: 17.1875rem;
        margin-bottom: 1rem;
    }

    .news-list-item-date .d1 {
        font-size: 1.25rem;
    }

    .news-list-item-date .d2 {
        font-size: 0.875rem;
    }

    .media-content {
        margin: 0.5rem 0;
    }

    .media-item {
        height: 4.375rem;
        line-height: 4.375rem;
        margin-bottom: 0.5rem;
    }

    .media-date:before {
        background-size: contain;
    }

    .media-date {
        font-size: 1rem;
        padding: 0 0.375rem;
        margin-right: 0.5rem;
    }

    .media-title {
        font-size: 1rem;
        padding: 0 0.375rem;
    }

    .media-title p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.375rem;
        white-space: wrap;
    }

    .special {
        padding: 1.25rem 0;
    }

    .special-bar {
        font-size: 1.625rem;
        margin-bottom: 1rem;
    }

    .web-footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 580px) {
    .notice-container, .news-container, .forum-container, .mien-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .link-img-title{
        display: none;
    }
    .notice-container {
        padding-bottom: 5.5rem;
    }
    .footer-popup {
        top: -12.25rem;
    }
    /**.special-img-item {
        width: 9.5rem;
        height: 23.125rem;
    }*/

    /*.special {*/
    /*    padding: 1.25rem 0;*/
    /*}*/
}



/*二级学院页面相关样式*/
.secondary-college {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.secondary-college-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 2rem 0;
    color: rgba(109, 109, 109, 0.3);
}

.secondary-college-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.secondary-college-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    /**writing-mode: vertical-rl;*/
    /**text-orientation: upright;*/
    letter-spacing: 0.5rem;
    margin-right: 2rem;
    color: #00478B;
    display: flex;
    flex-direction: row;
    align-items: center;
    display: flex;
    flex-direction: column; /* 使子元素垂直排列 */
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    height: 10rem; /* 设置容器高度 */
}

.secondary-college-item-title img {
    width: 1rem;
    height: 1rem;
}

.secondary-college-square-name {
    margin: 3rem 0;
    position: relative;
    font-size: 1.5rem;
    writing-mode: vertical-rl; /* 在现代浏览器中，使用writing-mode进行垂直排列 */
    white-space: nowrap; /* 防止文字换行 */
}

.secondary-college-square-name:before {
    content: '';
    position: absolute;
    width: 0.0625rem;
    height: 2rem;
    background-color: #AA343C;
    top: -2.25rem;
    left: 50%;
}

.secondary-college-square-name:after {
    content: '';
    position: absolute;
    width: 0.0625rem;
    height: 2rem;
    background-color: #AA343C;
    bottom: -2.25rem;
    left: 50%;
}

.secondary-college-item-college img {
    width: 2.5rem;
    height: 2.5rem;
}

.secondary-college-item-college {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: -2rem;
    margin-right: -2rem;
}

.secondary-college-item-college-item {
    color: #333333;
    margin-right: 2rem;
    margin-bottom: 2rem;
    width: calc(100% / 6 - 2rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secondary-college-item-college-name {
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.secondary-college-item-college-item:hover {
    color: #00478B;
}

@media (max-width: 1600px) {
    .secondary-college-item-college-item {
        width: calc(100% / 5 - 2rem);
    }
}

@media (max-width: 1140px) {
    .secondary-college-item-college-item {
        width: calc(100% / 4 - 2rem);
    }
}

@media (max-width: 768px) {
    .secondary-college-title {
        display: none;
    }

    .secondary-college-item {
        flex-direction: column;
    }

    .secondary-college-item-title {
        writing-mode: horizontal-tb;
        margin-right: 0;
        margin: 1rem 0;
        flex-direction: row;
        height: 4rem;
    }

    .secondary-college-square-name {
        margin: 1.5rem 2.5rem 1.5rem 3rem;
        writing-mode: horizontal-tb;
    }

    .secondary-college-square-name:before {
        width: 2rem;
        height: 0.0625rem;
        top: 50%;
        left: -2.5rem;
    }

    .secondary-college-square-name:after {
        width: 2rem;
        height: 0.0625rem;
        top: 50%;
        right: -2rem;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 700px) {
    .secondary-college-item-college-item {
        width: calc(100% / 3 - 2rem);
    }
}

@media (max-width: 530px) {
    .secondary-college-item-college-item {
        width: calc(100% / 2 - 2rem);
    }
}




/** 网格布局 */
.grid-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    /*margin-bottom: -2rem;*/
    /*margin-right: -2rem;*/
    margin: 2rem 0;
    /*justify-content: space-between;*/
}

.grid-div-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*flex-wrap: nowrap;*/
    color: #333333;
    margin-bottom: 2.5rem;
    width: calc(100% / 4 - 1.5rem);
    box-sizing: border-box;
}

.grid-div-item:hover{
    color: #00478B;
}

.grid-div-item-img {
    /*width: 16rem;*/
    /*height: 9rem;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-div-item-img:hover{
    transition: all 0.8s ease-out 0s;
    transform: scale(1.03);
}

.grid-div-item-dt {
    text-align: left;
    width: 100%;
    position: relative;
}

.grid-div-item-dt:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 1.5rem;
    height: 0.0625rem;
    background: #00558d;
}

.grid-div-item-date {
    color: #00558d;
    margin: 0.375rem 0;
}

.grid-div-item-title {
    font-weight: bold;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 580px) {
    .grid-div-item {
        margin-right: 0.5rem;
        width: calc(100% / 2 - 0.25rem);
    }
    .grid-div-item:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 580px) and (max-width: 768px) {
    .grid-div-item {
        margin-right: 1rem;
        width: calc(100% / 3 - 0.75rem);
    }
    .grid-div-item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-div-item {
        margin-right: 1.25rem;
        width: calc(100% / 4 - 1rem);
    }
    .grid-div-item:nth-child(4n) {
        margin-right: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .grid-div-item {
        margin-right: 1.5rem;
        width: calc(100% / 3 - 1rem);
    }
    .grid-div-item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (min-width: 1440px) {
    .grid-div-item {
        margin-right: 2rem;
    }
    .grid-div-item:nth-child(4n) {
        margin-right: 0;
    }
}