/* 全局样式 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


/* 主色调 - 根据设计稿中的红色主题 */

 :root {
    --primary-color: #AE0C2A;
    /* 红色主题色 */
    --secondary-color: #333;
    /* 深灰色文字 */
    --gray-color: #666;
    /* 浅灰色文字 */
    --border-color: #C5C5C5;
    /* 边框颜色 */
}


/* 响应式设计 */

@media screen and (max-width: 1200px) {
    body {
        min-width: auto;
    }
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}


/* 头部样式 */

.header {
    background: url(../images/index/headerBg.png) no-repeat center;
    background-size: cover;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
}

.header .headerCon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 6%;
}

.logo {
    display: flex;
}

.logo img {
    max-height: 40px;
}

.navBox {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 40px;
}

.toolBox {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 40px;
}

nav ul>li {
    position: relative;
    flex: 0 0 auto;
    height: 90px;
    line-height: 90px;
}

nav ul li>a {
    color: #fff;
    width: 100%;
    font-size: 22px;
    text-align: center;
    transition: 0.2s;
    position: relative;
}

nav ul li>a::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    transition: 0.3s;
    left: 50%;
    transform: translateX(-50%);
}

nav ul li>a.active::after,
nav ul li:hover a::after {
    width: 100%;
    transition: 0.3s;
}

nav ul li>a.active {
    font-weight: bold;
}

nav ul li dl {
    background: #fff;
    display: block;
    position: absolute;
    z-index: 99;
    width: 180%;
    left: 50%;
    border-radius: 6px;
    /* overflow: hidden; */
    /* visibility: hidden; */
    transform: scaleY(0) translateX(-50%);
    transition: .5s;
    transform-origin: top;
    top: 90px
}
nav ul li:last-child dl{width:250%}
nav ul li dl::before {
    content: "";
    width: 32px;
    height: 22px;
    display: block;
    background: url(../images/index/icon-sj.png) no-repeat center;
    margin: 0 auto;
    margin-top: -15px;
}

nav ul li dd {
    background: #fff;
    padding: 0 14px;
    line-height: normal;
}

nav ul li dd:last-child {
    border-radius: 0 0 6px 6px;
}

nav ul li dd a {
    color: #333;
    font-size: 16px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px 0;
    transition: all 0.3s;
}

nav ul li dd+dd a {
    border-top: 1px solid #EBEBEB;
}

nav ul li dl a:hover {
    background: #fff;
    font-size: 17px;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s;
}

nav ul li:hover dl {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateX(-50%);
}

.seaBtn {
    cursor: pointer;
    display: flex;
}

.searchBox {
    position: absolute;
    right: 110px;
    top: 0;
    width: 340px;
    height: 62px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    padding-right: 16px;
    display: none;
}

.searchBox form {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 18px 0;
}

.searchBox input {
    outline: none;
    border: none;
}

.searchBox input[type='text'] {
    padding: 0 15px;
    height: 100%;
    background: none;
    flex: 1;
    color: #fff;
    font-size: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.searchBox input[type='text']::placeholder {
    color: #fff;
}

.searchBox input[type='submit'] {
    background: url(../images/index/icon-search.png) no-repeat center/contain;
    opacity: 0.8;
    cursor: pointer;
    width: 24px;
    height: 24px;
}


/* 导航栏自适应样式 */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}


/* Banner样式 */

.banner-section {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide {
    width: 1200px;
    position: relative;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bannerCen {
    height: 100%;
    position: relative;
    margin-top: -480px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 70px;
    height: 100px;
    background: url(../images/index/banner-prev.png) no-repeat center center rgba(255, 255, 255, 0.46);
    border-radius: 6px;
    transition: 0.3s;
    z-index: 10;
}

.swiper-button-next {
    right: -100px;
}

.swiper-button-prev {
    left: -100px;
}

.swiper-button-next {
    background-image: url(../images/index/banner-next.png);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(174, 12, 42, 1);
    border: 1px solid #fff;
    transition: 0.3s;
}

.swiper-slide-next::after,
.swiper-slide-prev::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    position: absolute;
    top: 0;
}

.swiper-pagination {
    width: 100px;
    height: 100px;
    background: url(../images/index/PagenationBg.png) no-repeat;
    left: auto;
    bottom: 0;
    right: 0;
    padding: 50px 10px 10px 22px;
}

.swiper-pagination-current {
    font-weight: bold;
    font-size: 40px;
    color: #FFFFFF;
}

.swiper-pagination {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 23px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


/* 快速导航样式 */

.quick-nav {
    background: url(../images/index/fastBg.png) no-repeat center;
    background-size: cover;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 32px 0;
}

.nav-list li:first-child {
    border-left: 1px solid var(--border-color);
}

.nav-list li {
    flex: auto;
    margin: 0 10px;
    border-right: 1px solid var(--border-color);
}

.nav-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.nav-list a img {
    height: 40px;
    width: auto;
    transition: 0.3s;
}

.nav-list span {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
}


/* 主要内容区样式 */

.main-content {
    padding-top: 30px;
    background: #fff;
}


/* 通用标题样式 */

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    margin-bottom: 24px;
}

.section-title h2 {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    background: url(../images/index/titBg.png) no-repeat left center;
    padding-left: 58px;
}

.more {
    font-size: 16px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    background: url(../images/index/icon-more.png) no-repeat right center;
    padding-right: 20px;
}

.more:hover,
.publication-section .sectionBg-title a.more:hover {
    color: var(--primary-color);
    background-image: url(../images/index/icon-moreOn.png);
    transition: 0.3s;
}

.sectionBg-title a.more:hover {
    color: #ededed;
}


/* 学院动态和通知公告样式 */

.news-section {
    margin-bottom: 40px;
}

.news-box {
    float: left;
    width: 66%;
    padding-right: 20px;
}

.notice-box {
    float: right;
    width: 32%;
}

.news-item {
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
}

.news-img {
    width: 48%;
    overflow: hidden;
}

.news-img i {
    width: 100%;
    height: 225px;
    display: block;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-img:hover img {
    transform: scale(1.05);
}

.news-info {
    width: 52%;
    padding: 20px;
    padding-right: 0;
}

.news-info h3 {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-info p {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-info a.view-more {
    display: inline-block;
    background: url(../images/index/icon-moreOn.png) no-repeat right center;
    padding-right: 20px;
    color: var(--primary-color);
    transition: background 0.3s ease;
}

.news-item:hover .news-img img {
    transform: scale(1.05);
}

.news-item:hover .news-info h3 {
    color: var(--primary-color);
    transition: background 0.3s ease;
}

.news-text-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 10px;
}

.news-text-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.news-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
    background: url(../images/index/list-mark.png) no-repeat left center;
    padding-left: 28px;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}

.news-text-list a:hover .news-title {
    color: var(--primary-color);
    transition: 0.3s;
}

.news-date,
.notice-date {
    font-size: 16px;
    color: #666666;
    flex-shrink: 0;
}

.notice-list {
    display: flex;
    gap: 32px;
    flex-direction: column;
}

.notice-list a {
    display: flex;
    gap: 18px;
    align-items: center;
}

.notice-title {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}

.notice-date {
    width: 68px;
    height: 68px;
    border: 2px solid #FFDADA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.notice-date b {
    font-size: 22px;
    color: #AE0C2A;
    display: block;
    width: 100%;
    text-align: center;
}

.notice-date b::after {
    content: "";
    width: 80%;
    height: 1px;
    display: block;
    background: #E0E0E0;
    display: block;
    margin: 0 auto;
}

.notice-date span {
    font-size: 14px;
    color: #666666;
    line-height: 2;
}

.notice-list a:hover .notice-date {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: 0.3s;
}

.notice-list a:hover .notice-date b,
.notice-list a:hover .notice-date span {
    color: #fff;
}

.notice-list a:hover .notice-title {
    color: var(--primary-color);
    transition: 0.3s;
}


/* 学术动态样式 */

.academic-section {
    background: url(../images/index/mainBg2.png) no-repeat center/cover;
    padding: 30px 0 40px 0;
}

.sectionBg-title {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.sectionBg-title h2 {
    background: url(../images/index/txtLineWhite.png) no-repeat bottom center;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    padding: 0 34px;
}

.sectionBg-title a.more {
    position: absolute;
    right: 0;
    font-size: 16px;
    color: #FFFFFF;
    background-image: url(../images/index/icon-moreW.png);
    bottom: 5px;
}

.academic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 28px;
}

.academic-item {
    width: calc(33.3333% - 19px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px;
    height: 86px;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border-top: none;
}

.academic-item::before,
.academic-item::after {
    content: "";
    height: 2px;
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
}

.academic-item::before {
    width: 10px;
    left: 0;
}

.academic-item::after {
    width: calc(100% - 150px);
    right: 0;
}

.academic-item .academic-date {
    position: absolute;
    top: -13px;
    left: 20px;
    width: 118px;
    transition: 0.3s;
}

.academic-item .academic-date span {
    font-size: 16px;
    color: #FFE49E;
    background: url(../images/index/icon-time.png) no-repeat left center;
    padding-left: 20px;
}

.academic-info h3 {
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.academic-item:hover {
    background: url(../images/index/xsdtlistBgOn.png) no-repeat right/cover;
    border-color: #fff;
}

.academic-item:hover .academic-info h3 {
    color: #333;
}

.academic-item:hover .academic-date {
    background: #AE0C2A;
    border: 1px solid #FFFFFF;
    left: -2px;
    transition: 0.3s;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}


/* 学术著作样式 */

.publication-section {
    background: url(../images/index/mainBg3.png) no-repeat center/cover;
    padding: 30px 0 40px 0;
}

.publication-section .sectionBg-title h2 {
    color: #333;
    background-image: url(../images/index/txtLineRed.png);
}

.publication-section .sectionBg-title a.more {
    color: var(--gray-color);
    background-image: url(../images/index/icon-more.png);
}

.publication-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.publication-item {
    width: calc(33.33% - 17px);
    display: flex;
    align-items: center;
}

.publication-img {
    width: 127px;
    height: 170px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.publication-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.publication-item:hover .publication-img img {
    transform: scale(1.05);
}

.publication-info {
    padding-left: 12px;
    flex: 1;
    overflow: hidden;
}

.publication-info h3 {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}

.publication-info p {
    font-size: 14px;
    color: #666666;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
    background: url(../images/index/icon-hat.png) no-repeat left 3px;
    padding-left: 24px;
    margin-top: 10px;
}

.publication-info a.more {
    width: 58px;
    height: 11px;
    background: url(../images/index/icon-view.png) no-repeat right center;
    display: block;
    margin-top: 30px;
    transition: 0.3s;
}

.publication-info span {
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
}

.publication-item:hover .publication-info a.more {
    margin-left: 10px;
    transition: 0.3s;
}

.publication-item:hover .publication-info>a h3 {
    color: var(--primary-color);
    transition: 0.3s;
}

.publicationContent {
    width: 100%;
    overflow: hidden;
}

.pubLi {
    width: 100%;
    display: flex;
    padding: 8px 12px;
    background: #EDEDED;
    height: 74px;
    margin-bottom: 36px;
}

.pubLi a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    font-size: 18px;
    color: #000000;
}

.pubLi a.active {
    color: #fff;
    background: url(../images/index/book.png) no-repeat center center var(--primary-color);
}

.pubCont {
    width: 100%;
    overflow: hidden;
}

.punbContItem {
    display: none;
}


/* footer */

.footerBg {
    width: 100%;
    height: 283px;
}

.foot {
    width: 100%;
    height: 238px;
    padding: 30px 0px;
    background: url(../images/icon_footerbg.png) no-repeat center center / cover;
}

.link,
.contact {
    width: auto;
    float: left;
}

.link>h3,
.contact>h3 {
    display: block;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
    padding-bottom: 10px;
    position: relative;
}

.link>h3:after,
.contact>h3:after {
    display: block;
    content: '';
    width: 32px;
    height: 4px;
    background: #ffffff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
}

.links,
.contact>p {
    margin-top: 20px;
}

.links>a,
.contact>p {
    display: block;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 25px;
    padding-left: 20px;
    background: url(../images/icon_links.png) no-repeat 0px;
}

.contact {
    margin-left: 150px;
}

.contact>p {
    padding-left: 25px;
    background: url(../images/icon_call.png) no-repeat 0px;
}

.contact>p+p {
    background: url(../images/icon_email.png) no-repeat 0px;
}

.contact>p+p+p {
    background: url(../images/icon_ardess.png) no-repeat 0px;
}

.code {
    width: 110px;
    float: right;
    margin-top: 20px;
    height: auto;
}

.codeImg {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.code>p {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
}

.copyright {
    width: 100%;
    height: 45px;
    background-color: #1E1E1E;
    text-align: center;
}

.copyright>p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 45px;
}


/* 响应式调整 */

@media screen and (max-width: 1600px) {
    .header .headerCon {
        padding: 0 40px;
    }
    nav ul li>a {
        font-size: 20px;
    }
    nav ul li dd a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1500px) {
    nav ul,
    .navBox {
        gap: 25px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 60px;
        height: 90px;
        background-size: 60%;
    }
}

@media screen and (max-width: 1400px) {
    .logo img {
        max-height: 36px;
    }
}

@media screen and (max-width: 1300px) {
    .logo img {
        max-height: 30px;
    }
    nav ul li>a {
        font-size: 18px;
    }
    nav ul li dd a {
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .header .headerCon {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1140px) {
    nav ul,
    .navBox {
        gap: 10px;
    }
    .logo img {
        max-height: 28px;
    }
}

@media screen and (max-width: 992px) {
    .header {
        padding: 10px 0;
        position: relative;
        height: 60px;
    }
    .swiper-pagination-current {
        font-size: 36px;
    }
    .swiper-pagination {
        font-size: 18px;
    }
    .logo img {
        max-width: 220px;
    }
    .searchBox {
        right: 0;
        width: 280px;
        height: 44px;
    }
    .searchBox form {
        padding: 10px;
    }
    .searchBox input[type='text'] {
        font-size: 14px;
    }
    .menu-toggle {
        display: flex;
    }
    nav ul {
        gap: 0;
    }
    nav ul>li {
        height: auto;
        line-height: 60px;
    }
    nav ul li>a::after {
        content: none;
    }
    .navBox nav ul li a {
        color: #333;
    }
    .navBox nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 0 20px;
        padding-top: 60px;
        overflow-y: auto;
    }
    .navBox.active nav {
        right: 0;
    }
    .navBox nav ul {
        flex-direction: column;
        width: 100%;
    }
    .navBox nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
        position: initial;
    }
    .navBox nav ul li a {
        display: block;
    }
    .navBox nav ul li dl {
        position: static;
        width: 100%;
        height: 0;
        transform: none;
        overflow: hidden;
    }
    nav ul li:hover dl {
        transform: none;
        height: auto;
        transition: 0.3s
    }
    .navBox nav ul li.active>a {
        color: var(--primary-color);
        font-weight: bold;
    }
    .navBox nav ul li.has-submenu.active dl {
        display: block;
        height: auto;
        transition: 0.3s;
    }
    .navBox nav ul li dl dd {
        padding-left: 20px;
    }
    nav ul li dl::before {
        content: none;
    }
    .toolBox {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
    /* 菜单打开时的汉堡按钮样式 */
    .navBox.active .menu-toggle span {
        background: #333;
    }
    .navBox.active .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .navBox.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .navBox.active .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .banner-swiper .swiper-slide {
        width: 100%;
    }
    .banner-section {
        height: 280px;
    }
    .bannerCen {
        margin-top: -280px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    .swiper-slide-next::after,
    .swiper-slide-prev::after {
        content: none;
    }
    .news-box,
    .notice-box {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .academic-item,
    .publication-item {
        width: calc(50% - 14px);
    }
    .nav-list {
        gap: 10px;
    }
    .nav-list li,
    .nav-list li:first-child {
        border: none;
    }
    .news-img {
        width: 30%;
    }
    .news-info {
        width: 70%;
    }
    .news-img i {
        height: 136px;
    }
    .news-info p {
        display: none;
    }
    .sectionBg-title {
        justify-content: flex-start;
    }
    .pubLi {
        padding: 0;
        height: auto;
        margin-bottom: 26px;
    }
    .pubLi a {
        font-size: 16px;
        padding: 18px 0;
        flex: auto;
    }
    .contact {
        margin-left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-list {
        flex-wrap: wrap;
    }
    .nav-list li {
        flex: none;
        margin: 0;
    }
    .nav-list li {
        width: calc(50% - 5px);
    }
    .academic-item,
    .publication-item {
        width: 100%;
    }
    .publication-item:nth-child(4)+.publication-item {
        display: none
    }
    .pubLi {
        display: none;
    }
    .punbContItem:first-child {
        display: block!important;
    }
    .foot {
        height: auto;
    }
    .foot .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .contact {
        margin-left: 0;
    }
}

@media screen and (max-width: 576px) {
    .logo {
        max-width: 160px;
    }
    .toolBox {
        right: 60px;
    }
}