@charset "UTF-8";

@font-face {
    font-family: "ALi";
    src: url("../font/AlimamaShuHeiTi-Bold.ttf");
}

.container-build {
    width: 100%;
    height: 100%;
}

/* 头部 */
.header {
    width: 100%;
    height: 800px;
    position: relative;
}

.header.xygkbg {
    background: url(../images/header-bg-xygk.png) center center no-repeat;
    background-size: cover;
}

.header.djszbg {
    background: url(../images/header-bg-djsz.png) center center no-repeat;
    background-size: cover;
}

.header.jxkybg {
    background: url(../images/header-bg-jxky.png) center center no-repeat;
    background-size: cover;
}

.header.szdwbg {
    background: url(../images/header-bg-szdw.png) center center no-repeat;
    background-size: cover;
}

.header.cgzsbg {
    background: url(../images/header-bg-cgzs.png) center center no-repeat;
    background-size: cover;
}

.header.xshdbg {
    background: url(../images/header-bg-xshd.png) center center no-repeat;
    background-size: cover;
}

.header.jsfcbg {
    background: url(../images/header-bg-jsfc.png) center center no-repeat;
    background-size: cover;
}

.header.xydtbg {
    background: url(../images/header-bg-xydt.png) center center no-repeat;
    background-size: cover;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 147px;
    background: linear-gradient(180deg, #18589F 0%, rgba(115, 115, 115, 0) 100%);
    z-index: 1;
}

.header.home {
    height: 970px;
    background: transparent;
    position: relative;
}

.search {
    position: absolute;
    right: -16px;
    top: -2px;
    width: 154.09px;
    height: 120px;
    background: url(../images/search-bg.png) center center no-repeat;
    background-size: cover;
    z-index: 99;
}

.search img {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 60%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 100;
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/search-background.png) center center no-repeat;
    background-size: cover;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-container {
    width: 80%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.search-input {
    width: 100%;
    padding: 24.5px 20px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    outline: none;
}

.search-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    max-width: 130px;
    height: 100%;
    max-height: 73px;
    background: url(../images/search-pbg.png) center center no-repeat;
    background-size: cover;
    color: white;
    border: none;
    cursor: pointer;
}

.search-submit i {
    font-size: 36px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.search-close-bottom {
    display: block;
    margin: 30px auto 0;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-close-bottom:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 禁止滚动时的样式 */
.body-no-scroll {
    overflow: hidden;
    height: 100%;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 48, 144, 0.52) 0%, rgba(255, 255, 255, 0) 100%);
}

.header.home::before {
    display: none;
}

.header header {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1600px;
    margin: 0 auto;
    padding-top: 36px;

}

.logo {
    width: 266px;
    height: 74px;
}

.logo img {
    width: 100%;
}

.header-nav {
    width: calc(100% - 266px - 254px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-item {
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* 初始状态（隐藏下划线） */
.nav-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    /* 初始宽度为 0 */
    height: 4px;
    border-radius: 439px;
    background: #FF8400;
    transition: width 0.3s ease-in-out;
    /* 只过渡宽度 */
}

/* 悬停时显示下划线 */
.nav-item:hover::after {
    width: 40px;
    /* 悬停时宽度变为 40px */
}

/* 激活状态（显示下划线） */
.nav-item.active::after {
    width: 40px;
    /* 激活时宽度变为 40px */
}

/* 子菜单 */

/* 子菜单样式 */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 160%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 120%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 5px;
}

.has-five .submenu {
    position: absolute;
    top: 160%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 150%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 5px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}

.has-submenu .submenu a {
    display: block;
    padding: 7px 10px;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    color: #333;
    border-radius: 5px;
    transition: all 0.2s;
    margin-top: 5px;
    margin-bottom: 5px;
}

.submenu a:hover {
    background-color: #FF8400;
    color: #fff;
}

.header-banner {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: aqua; */
}

.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1800px) {
    .header-nav {
        width: calc(100% - 400px);
        display: flex;
        align-items: center;
        margin-right: 100px;
        justify-content: space-around;
    }
}

.home-page {
    width: 170px !important;
    height: 48px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    left: 80% !important;
    bottom: 42px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .swiper-pagination-bullet-active {
    width: 35% !important;
    height: 4px !important;
    border-radius: 10px !important;
}

.home-page .swiper-pagination-bullet {
    width: 35% !important;
    height: 4px !important;
    border-radius: 10px !important;
}

.header-nav a {
    font-size: 22px;
    color: #fff;
}

.header-name {
    width: 1600px;
    margin: 0 auto;
    font-family: Microsoft YaHei;
    font-size: 100px;
    font-weight: bold;
    color: #fff;
    position: relative;
    margin-top: 241px;
    z-index: 80;
    letter-spacing: 0.1em;
}

.current-location {
    font-family: Microsoft YaHei;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 99;
    width: 1600px;
    margin: 0 auto;
    margin-top: 216px;
}

/* 主体 */
.main {
    width: 100%;
}

.dynamics {
    width: 100%;
    height: 1010px;
    background: url(../images/dy-bg.png) bottom center no-repeat;
    background-size: contain;
    position: relative;
}

.dynamics::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 588.7px;
    height: 571.92px;
    background: url(../images/dy-side-bg.png) center center no-repeat;
    background-size: contain;
    z-index: -1;
}

.dynamics::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 588.7px;
    height: 571.92px;
    background: url(../images/dy-side2.png) center center no-repeat;
    background-size: contain;
    z-index: -1;
}

.dy-layout {
    width: 1600px;
    height: 100%;
    margin: 0px auto;
    padding-top: 74px;
    padding-bottom: 124px;
}

.main-title {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.main-title .title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-title .title h2 {
    font-family: ALi;
    font-size: 50px;
    font-weight: bold;
    color: #333;
}

.main-title .title .en-title {
    display: flex;
    align-items: center;
    color: #9E9E9E;
    font-family: Microsoft YaHei;
    font-size: 16px;
    position: relative;
}

.main-title .title .en-title::before {
    content: '';
    background-color: #9E9E9E;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 9;
    margin-left: 7px;
    margin-right: 9px;
}

.orange {
    color: #FF8400;
}

.main-title .more {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.main-title .more:hover {
    transform: translateX(10px);
}

.main-title .more img {
    width: 40px;
    height: 42px;
}

.main-title .more .more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 38px;
    background: url(../images/more-btn.png) no-repeat center center;
    background-size: contain;
    margin-right: 6px;
    padding-left: 10px;
    color: #0F499E;
}

.student-title .more .more-btn {
    color: #fff;
    background: url(../images/more-btnw.png) no-repeat center center;
    width: 108px;
    height: 38px;
    background-size: contain;
}

.main-title .more .more-btn i {
    padding-left: 5px;
}

.student-prev {
    transform: scaleX(-1);
}

.dynamics-contant {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 81px;
}

.dy-left-banner {
    width: 800px;
    height: 670px;
    background-color: antiquewhite;
    border-radius: 60px 0px 60px 0px;
    overflow: hidden;
}

.dy-news-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 80;
    background: rgba(255, 163, 64, 0.5);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    padding: 25px 40px;
    border-radius: 0px 0px 0px 40px;
}

.dy-day {
    font-family: Microsoft YaHei;
    font-size: 40px;
    color: #fff;
}

.dy-month {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}

.dy-swiper {
    position: relative;
}

.dy-swiper .swiper-slide:hover .dy-news-layout img{
    transform: scale(1.1);
    z-index: -1;
}

.dy-news-text {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 80px;
    line-height: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 31px;
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.dy-news-layout {
    width: 100%;
    height: 100%;
    position: relative;
}

.dy-page .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #fff;
    opacity: 1;
}

.dy-page .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: #FF8400;
}

.dy-page {
    left: 80% !important;
    bottom: 30px !important;
    width: auto !important;
    display: flex;
    align-items: center;
}

.dy-left-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

.dy-right-newList {
    width: 748px;
    height: 670px;
}

.dy-news-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dy-news-item {
    width: 100%;
    height: 113px;
    margin-bottom: 26px;
    padding: 20px 40px;
    background: linear-gradient(180deg, #25304900 0%, #ffffff00 100%);
    transition: all 0.3s ease-in-out;
}

.dy-news-item:hover {
    width: 100%;
    height: 113px;
    margin-bottom: 26px;
    background: linear-gradient(180deg, #1142B8 0%, #1B51D1 100%);
}

.dy-news-item:hover.dy-news-item * {
    color: #fff;
}

.dy-news-item:last-child {
    margin-bottom: 0px;
}

.news-timebox {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.news-date {
    font-family: Microsoft YaHei;
    font-size: 30px;
    font-weight: bold;
    color: #FF8400;
}

.news-year {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.news-year i {
    font-family: Microsoft YaHei;
    font-size: 20px;
    font-weight: normal;
    color: #666;
}

.news-content {
    display: inline-block;
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    width: 100%;
    max-width: 660px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.student-active {
    width: 100%;
    height: auto;
    background: url(../images/sa-bg.png) top center no-repeat;
    background-size: contain;
    box-sizing: border-box;
}

.sa-layout {
    width: 1600px;
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 147px;
}

.student-title .title h2 {
    color: #fff;
}

.student-title .title .en-title::before {
    content: '';
    background-color: #ffffff;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 99;
    margin-left: 7px;
    margin-right: 9px;
}

.student-title .title .en-title {
    color: #fff;
}

.student-contant {
    margin-top: 62px;
    width: 100%;
    height: 579px;
    /* background-color: #FF8400; */
}

.student-contant .swiper-slide {
    background: #fff;
}


.st-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 18px;
    height: 100%;
    width: 100%;
}

.st-layout img {
    width: 100%;
    height: 276px;
}

.st-content {
    width: 100%;
    padding: 38px 18px 0px;
}

.st-time {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.st-date {
    font-family: Microsoft YaHei;
    font-size: 30px;
    font-weight: bold;
    color: #FF8400;
}

.st-year {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.st-year i {
    font-family: Microsoft YaHei;
    font-size: 20px;
    font-weight: normal;
    color: #666;
}

.st-title {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 15px 0px 20px;
}

.st-abs {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #666;
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    text-overflow: ellipsis;
    max-height: 45px;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.continue {
    width: 44px;
    height: 44px;
    background: #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-top: 22px;
}

.continue i {
    color: #A8A8A8;
}


.student-contant .swiper-slide:hover {
    box-shadow: 0px 4px 10px 0px rgba(27, 80, 209, 0.2);
}


.student-contant .swiper-slide:hover .st-title {
    color: #FF8400;
}

.student-contant .swiper-slide:hover .continue {
    background-color: #FF8400;
}

.student-contant .swiper-slide:hover .continue i {
    color: #fff;
}

.student-ctrl {
    position: relative;
    width: 200px;
    margin: 0 auto;
    display: flex;
    margin-top: 47px;
}

.student-ctrl i {
    color: #083090;
    position: relative;
}

.student-ctrl i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    padding: 2px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #083090;
}

.student-ctrl .swiper-button-prev,
.student-ctrl .swiper-button-next {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-page {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.student-page .swiper-pagination-bullet {
    margin: 0 5px !important;
    width: 10px;
    height: 10px;
    background: rgba(8, 48, 144, 0.3);
}

.student-page .swiper-pagination-bullet-active {
    background: #083090;
}


.djsz,
.szdw {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
}

.szdw {
    background: url(../images/szdw-bg.png) bottom center no-repeat;
    background-size: cover;
}

.szdw.info {
    background: none;
}

.szdw.info .szdw-layout {
    padding-top: 171px;
}

.szdw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/szdw-top.png) bottom center no-repeat;
    background-size: cover;
    z-index: -1;
}

.djsz::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 965px;
    height: 184px;
    background: url(../images/dj-left.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.djsz::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 353px;
    height: 276px;
    background: url(../images/dj-right.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.djsz-layout {
    width: 1600px;
    margin: 0 auto;
    padding-top: 52px;
    padding-bottom: 120px;
}

.djsz-contant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 41px;
}

.djsz-list-item {
    width: calc(100% / 2 - 24px);
    height: 257px;
    padding: 15px 13px;
    background-color: #fff;
    margin-bottom: 48px;
}

.djsz-list-item:hover {
    box-shadow: 0px 4px 10px 0px rgba(27, 80, 209, 0.2);
}

.djsz-list-item:hover .djsz-main-title {
    color: #FF8400;
}

.djsz-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 25px - 304px);
}

.djsz-item-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.djsz-item-layout img {
    width: 100%;
    max-width: 304px;
    height: 100%;
    margin-right: 25px;
}

.djsz-main-title {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 15px 0px 20px;
    min-width: 220px;
}

.djsz-abs {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    color: #666;
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    text-overflow: ellipsis;
    max-height: 45px;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-width: 220px;
}

.szdw-layout {
    width: 1600px;
    margin: 0 auto;
    padding-top: 104px;
    padding-bottom: 273px;
}

.szdw-contant {
    padding-top: 64px;
    /* background-color: #FF8400; */
    height: 370px;

}

.cal-layout {
    width: 227px;
    height: 227px;
    aspect-ratio: 1/1;
    /* 宽高比1:1，确保永远是正圆 */
    border-radius: 50%;
    /* border: 1px dashed #0F499E; */
    position: relative;
    /* background: #333; */
}

.cal-layout::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    /* 宽高比1:1，确保永远是正圆 */
    border-radius: 50%;
    border: 1px dashed #0F499E;
    animation: rotate 120s linear infinite;
    position: relative;
}

.cal-layout img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 93%;
    height: 93%;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 50%;
    box-shadow: 0px 4px 19px 0px rgba(13, 59, 168, 0.3);
}

.szdw-contant .swiper-slide-active .cal-layout {
    transform: scale(1.2);
}

.szdw-contant .swiper-slide-active .cal-layout img {
    border: 5px solid #d0dcef;
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* .szdw-contant .slide-name {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    opacity: 0;
    transition: opacity 0.3s;
} */

.szdw-contant .swiper-slide-active .slide-name {
    opacity: 1;
}

.szdw-contant .active-slide-indicator {
    width: 300px;
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

#currentSlide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Microsoft YaHei;
    font-size: 18px;
    width: 310px;
    height: 77px;
    border-radius: 40px;
    background: linear-gradient(270deg, #083090 0%, #1142B8 100%);
}

.szdw-prev,
.szdw-next {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F499E;
}

.szdw-prev i,
.szdw-next i {
    font-size: 26px;
}

.button-prev-sx {
    left: -80px !important;
    transform: scale(-1);
    background-image: none !important;
}

.button-next-sx {
    right: -80px !important;
    background-image: none !important;
}

.active-slide-indicator .szdw-prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    background: url(../images/teacher-r.png) no-repeat center center;
    background-size: cover;
}

.active-slide-indicator .szdw-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    background: url(../images/teacher-r.png) no-repeat center center;
    background-size: cover;
}

.main-bottom {
    width: 100%;
    height: 173px;
}

.main-bottom img {
    width: 100%;
}

.footer {
    height: 358px;
    background: linear-gradient(270deg, #083090 0%, #1142B8 100%);
}

.footer-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1600px;
    height: 100%;
    padding: 55px 0px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    padding-right: 70px;
}

.footer-left * {
    margin-bottom: 20px;
    color: #fff;
}

.footer-left *:last-child {
    /* margin-bottom: 0px; */
}

.footer-left img {
    width: 266px;
    margin-bottom: 26px;
}

.footer-right {
    display: flex;
    width: calc(100% - 336px - 160px);
}

.footer-nav {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-nav * {
    color: #fff;
}

.fa-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: Microsoft YaHei;
    font-size: 22px;
    font-weight: bold;
}

.fa-nav a {
    font-family: Microsoft YaHei;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 26px;
}

.fa-nav a:hover ,.fa-nav:hover{
    color: #8baeff;
}

.child-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.child-nav a {
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
}

.menu-mobile {
    display: none;
}

@media screen and (max-width:1600px) {

    .dy-layout,
    .sa-layout,
    .djsz-layout,
    .szdw-layout,
    .footer-layout {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .header-name,
    .current-location {
        width: calc(100% - 50px);
    }

    .header header {
        width: calc(100% - 20px);
        margin: 0 auto;
    }
}

@media screen and (max-width:1400px) {

    .header.home {
        height: 770px;
        background: transparent;
        position: relative;
    }

    .dy-left-banner,
    .dy-right-newList {
        width: 50%;
    }

    .header-nav {
        width: calc(100% - 500px);
        display: flex;
        align-items: center;
        margin-right: 150px;
        justify-content: space-around;
    }
}


@media screen and (max-width:1300px) {

    .header.home {
        height: 670px;
        background: transparent;
        position: relative;
    }

    .footer-left {
        padding-right: 20px;
        /* border: none; */
    }

    .footer-right {
        display: flex;
        width: calc(100% - 370px);
    }

    .header-nav {
        display: none;
    }

    .search {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .menu-mobile i {
        font-size: 30px;
        cursor: pointer;
        color: #fff;
    }
}

@media screen and (max-width:1100px) {

    .djsz-list-item {
        margin-bottom: 20px;
    }

    .header.home {
        height: 570px;
        background: transparent;
        position: relative;
    }

    .dy-left-banner,
    .dy-right-newList {
        width: 50%;
    }

    .djsz-contant {
        flex-direction: column;
    }

    .djsz-list-item {
        width: 100%;
        height: auto;
    }

    .footer {
        height: auto;
    }

    .footer-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .footer-left {
        width: 100%;
        padding-right: 20px;
        border: none;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-right {
        display: flex;
        width: calc(100%);
    }
}

@media screen and (max-width:1000px) {
    .djsz-layout {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sa-layout {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .szdw-layout {
        padding-top: 30px;
        padding-bottom: 273px;
    }

    .header.home {
        height: 470px;
        background: transparent;
        position: relative;
    }

    .dynamics {
        height: auto;
    }

    .dynamics-contant {
        flex-direction: column;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .dy-left-banner {
        width: 100%;
        margin-bottom: 20px;
    }

    .dy-left-banner {
        height: 450px;
        border-radius: 0px;
    }

    .dy-right-newList {
        width: 100%;
    }

    .dy-layout {

        padding-top: 30px;
        padding-bottom: 30px;
    }

    .djsz::before {
        display: none;
    }

    .home-page {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media screen and (max-width:980px) {
    .footer-left {
        flex-wrap: wrap;
    }

    .footer-right {}
}

@media screen and (max-width:800px) {
    .main-bottom {
        width: 100%;
        height: auto;
    }

    .dynamics::before {
        content: '';
        position: absolute;
        left: 0px;
        top: 0px;
        width: 388.7px;
        height: 371.92px;
        background: url(../images/dy-side-bg.png) center center no-repeat;
        background-size: contain;
        z-index: -1;
    }

    .dynamics::after {
        content: '';
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 388.7px;
        height: 371.92px;
        background: url(../images/dy-side2.png) center center no-repeat;
        background-size: contain;
        z-index: -1;
    }

    .st-layout img {
        width: 100%;
        height: 238px;
    }

    .footer-right {
        display: none;
    }

    .fa-nav a {
        font-size: 18px;
        margin: 0;
    }

    .footer-nav {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .fa-nav {
        width: 100%;
        font-size: 18px;
        flex-direction: row;
    }

    .dy-page {
        left: 70% !important;
        bottom: 30px !important;
        width: auto !important;
        display: flex;
        align-items: center;
    }

    .child-nav {
        width: calc(100% - 100px);
        flex-direction: row;
    }

    .child-nav a {
        font-family: Microsoft YaHei;
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 0px;
    }
}

@media screen and (max-width:800px) {
    .header header {
        padding-top: 10px;
    }

    .logo {
        width: 35%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 190px;
    }

    .search-container {
        width: 90%;
        max-width: 600px;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 10px;
        overflow: hidden;
        transform: translate(-50%, -50%);
    }

    .st-layout img {
        width: 100%;
        height: auto;
    }

    .main-title .title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

@media screen and (max-width:700px) {
    .home-page {
        height: 15px;
    }

    .header.home {
        height: 370px;
        background: transparent;
        position: relative;
    }

    .dy-left-banner {
        height: 275px;
        border-radius: 0px;
    }

    .dy-news-time {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0;
        top: 0;
        background: rgba(255, 163, 64, 0.5);
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
        padding: 10px 20px;
        border-radius: 0px 0px 0px 40px;
    }

    .st-layout img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .student-ctrl {
        width: 100%;
    }

    .main-title .title h2 {
        font-size: 26px;
        white-space: nowrap;
    }

    .news-date {
        font-family: Microsoft YaHei;
        font-size: 20px;
        font-weight: bold;
        color: #FF8400;
    }

    .st-date {
        font-family: Microsoft YaHei;
        font-size: 20px;
        white-space: nowrap;
        font-weight: bold;
        color: #FF8400;
    }

    .djsz-abs,
    .djsz-main-title {
        min-width: 110px;
    }
}

@media screen and (max-width:650px) {
    .footer-left {
        flex-direction: column;
    }
}

@media screen and (max-width:600px) {
    .header.home {
        height: 270px;
        background: transparent;
        position: relative;
    }

    .djsz-item-layout img {
        max-width: 200px;
        height: auto;
    }

    .djsz-item-layout {
        justify-content: start;
    }

    .student-active {
        width: 100%;
        height: auto;
        background: url(../images/sa-bg.png) top center no-repeat;
        background-size: 700px;
        box-sizing: border-box;
    }
}

@media screen and (max-width:530px) {

    .szdw-prev,
    .szdw-next {
        display: none;
    }

}

/* 手机菜单 */
/* 手机端菜单样式 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background-color: #083090;
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-logo img {
    height: 50px;
}

.mobile-search img {
    height: 35px;
    cursor: pointer;
}

.mobile-close .iconfont {
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.mobile-menu-content {
    padding: 15px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
}

.mobile-nav-item.has-submenu {
    padding: 0;
}

.submenu-header {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.submenu-header a:hover {
    color: #1142B8;
}

.mobile-nav-item:hover {
    color: #1142B8;
}

.submenu-header * {
    color: #333;
}

.submenu-header .iconfont {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.mobile-submenu a:hover {
    color: #1142B8;
}

/* 子菜单展开状态 */
.mobile-nav-item.active .mobile-submenu {
    max-height: 500px;
}

.mobile-nav-item.active .submenu-header .iconfont {
    transform: rotate(90deg);
}