/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* 头部导航 */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 1.1;
    max-width: 440px;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

/* PC端导航 */
.nav-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #005AB5;
}

/* 首页头部形象图片区 */
.index-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-banner h1 {
    font-size: 35px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 90%;
}

/* 导航栏图标 */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

/* 导航栏右侧容器 */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #019cf5;
    transition: color 0.3s;
    width: 20px;
    height: 20px;
}

.nav-icon:hover {
    color: #f72c2c;
}

/* Email图标 - 信封样式 */
.nav-icon-email {
    position: relative;
    width: 22px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.nav-icon-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 2px;
    box-sizing: border-box;
}

.nav-icon-email::after {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: 18px;
    height: 8px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 6px solid currentColor;
    box-sizing: border-box;
}

/* 搜索放大镜图标 */
.nav-icon-search {
    position: relative;
}

.nav-icon-search::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.nav-icon-search::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    bottom: 2px;
    right: 0;
}

/* 搜索容器 */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box {
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    width: 350px;
    overflow: hidden;
    transition: width 0.3s ease, padding 0.3s ease;
    box-shadow: 0 2px 10px rgba(51, 4, 219, 0.1);
}

.search-box.active {
    width: 300px;
    padding: 5px 10px;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    border: none;
    outline: none;
    width: 300px;
    font-size: 14px;
    padding: 5px;
    height: 35px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #666;
    position: relative;
    flex-shrink: 0;
}

.search-btn::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-btn::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    bottom: 2px;
    right: 0;
}

.search-btn:hover {
    color: #667eea;
}

/* 主导航 */
.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    width: 100%;
}

.main-nav li {
    position: relative;
}

.main-nav li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav li > a:hover {
    color: #667eea;
}

.main-nav li > a.active {
    color: #C4F3FF;
    font-weight: 700;
}

/* Email图标导航项对齐 */

.nav-email-item {
    margin-top: 13px;
    margin-left:20px;
}

.nav-email-item > a {
    display: block;
    padding: 15px 20px;
    line-height: 1.2;
}

/* Contact Us 右侧对齐 - PC端 */
.nav-contact-right {
    margin-left: auto;
}

/* 下拉菜单 */
.has-submenu {
    display: flex;
    align-items: center;
}

.has-submenu > a {
    padding-right: 5px !important;
}

.submenu-toggle {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    border-bottom: 0;
    transition: transform 0.3s;
    transform-origin: center center;
}

.submenu-toggle.active::after,
.has-submenu:hover .submenu-toggle::after {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 10px 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #555;
    font-size: 16px;
    transition: all 0.3s;
}

.submenu a:hover {
    background: #f5f5f5;
    color: #667eea;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Banner轮播区域 */
.banner {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
    transition: box-shadow 0.4s ease;
}

.banner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.6s ease, visibility 0s linear 0.5s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transition-delay: 0s;    
}

/* Banner悬停特效 */
.banner:hover .banner-slide.active {
    transform: scale(1.05);
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.banner:hover .banner-news {
    background: rgba(0, 0, 0, 0.85);
    transition: background 0.3s ease;
}

.banner:hover .banner-news-title {
    color: #FF9900;
    transition: color 0.3s ease;
}

.banner:hover .banner-news-title::before {
    border-left-color: #FF9900;
    transition: border-left-color 0.3s ease;
}

.banner:hover .banner-news-date {
    color: #FF9900;
    transition: color 0.3s ease;
}

/* Banner新闻区 */
.banner-news {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.banner-news-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
    position: relative;
    padding-left: 20px;
}

.banner-news-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.banner-news-date {
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

/* 轮播指示器 */
.banner-indicators {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 15;
    pointer-events: auto;
}

.indicator {
    width: 30px;
    height: 30px;
    background: #CCCCCC;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    pointer-events: auto;
    border: none;
}

.indicator.active {
    background: #FF9900;
}

.indicator:hover {
    background: #FFAA33;
    transform: scale(1.1);
    transition: background 0.3s, transform 0.2s ease;
}

.indicator.active:hover {
    background: #FF8800;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    pointer-events: auto;
}

.banner-arrow:hover {
    background: rgba(255, 153, 0, 0.9);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    transition: background 0.3s, transform 0.2s ease, box-shadow 0.3s ease;
}

.banner-arrow-left {
    left: 20px;
}

.banner-arrow-right {
    right: 20px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .banner {
        width: 100%;
    }

    .banner-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .index-banner {
        height: 100px;
        margin-top: 100px;
    }    
}



/* ========================================
   新闻资讯区
   ======================================== */
   
.news-indexlist {
    margin: 0 auto;
}


.news-section {
    padding: 60px 0;
    background: #fff;
}

.news-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.title-center {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
}

.title-center::before,
.title-center::after {
    content: '';
    width: 45%;
    height: 1px;
    background-color: #B0DFFF;
}

.news-wrapper {
    display: flex;
    gap: 40px;
}

.news-left {
    flex: 1;
}

.news-right {
    width: 50%;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0047ab;
}

.news-header h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0047ab;
}

.more-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.more-link:hover {
    color: #0047ab;
}





/* 通知列表 */
.notification-list {
    list-style: none;
}

.notification-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px dotted #ddd;
    transition: all 0.3s ease;
    border-radius: 4px;
    /* 进场动画初始状态 */
    opacity: 0;
    transform: translateY(20px);
    animation: notification-fade-in-up 0.6s ease forwards;
}

/* 进场动画关键帧 */
@keyframes notification-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 依次延迟进场动画 */
.notification-list li:nth-child(1) { animation-delay: 0.1s; }
.notification-list li:nth-child(2) { animation-delay: 0.2s; }
.notification-list li:nth-child(3) { animation-delay: 0.3s; }
.notification-list li:nth-child(4) { animation-delay: 0.4s; }
.notification-list li:nth-child(5) { animation-delay: 0.5s; }

.notification-list li:hover {
    background-color: #f8fbff;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.15);
    border-left: 3px solid #0047ab;
}

.notification-list li:hover .notification-title {
    color: #0047ab;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.notification-date {
    width: 50px;
    height: 55px;
    background: #0047ab;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.notification-date .day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.notification-date .month {
    font-size: 11px;
    margin-top: 2px;
}

.notification-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

.notification-title:hover {
    color: #0047ab;
}

.notification-list li:hover .notification-date {
    background: #e6f0ff;
    color: #0047ab;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.3);
    transition: all 0.3s ease;
}

/* ========================================
   科研成果区
   ======================================== */
.research-section {
    padding: 60px 0;
    background: #FFF;
}

.research-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.research-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.research-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.research-slider {
    flex: 1;
    overflow: hidden;
    padding: 20px 0;
}

.research-track {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* 走马灯动画效果 */
.marquee-track {
    animation: marquee-scroll 30s linear infinite;
}

.research-slider-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 走马灯容器可拖拽 */
.research-slider {
    cursor: grab;
}

.research-slider:active {
    cursor: grabbing;
}

.research-item {
    flex: 0 0 calc(25% - 22.5px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.research-item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.research-item:hover {
    box-shadow: 0 12px 40px rgba(0, 71, 171, 0.25);
    transform: translateY(-10px) scale(1.02);
    border-color: #0047ab;
    z-index: 10;
}

.research-item:hover .research-item-title {
    color: #0047ab;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.research-item:hover .research-subtitle {
    background: linear-gradient(135deg, #87ceeb 0%, #b3e0f7 100%);
    transition: background 0.4s ease;
}

.research-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.research-item:hover::before {
    left: 100%;
}

.research-item {
    position: relative;
    overflow: hidden;
}

.research-image {
    padding: 20px;
    order: 3;
}

.research-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.research-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    padding: 12px 10px;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
    height: 60px;
}

.research-subtitle {
    background: #b3e0f7;
    padding: 12px 15px;
    font-size: 14px;
    height: 100px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.research-arrow {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.research-arrow:hover {
    background: #0047ab;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.4);
}

/* ========================================
   合作伙伴区
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: #fff;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.partners-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #0047ab;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(30px);
    animation: partnerFadeIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}

/* 依次延迟显示动画 */
.partner-item[data-delay="0"] { animation-delay: 0s; }
.partner-item[data-delay="1"] { animation-delay: 0.1s; }
.partner-item[data-delay="2"] { animation-delay: 0.2s; }
.partner-item[data-delay="3"] { animation-delay: 0.3s; }
.partner-item[data-delay="4"] { animation-delay: 0.4s; }
.partner-item[data-delay="5"] { animation-delay: 0.5s; }
.partner-item[data-delay="6"] { animation-delay: 0.6s; }
.partner-item[data-delay="7"] { animation-delay: 0.7s; }
.partner-item[data-delay="8"] { animation-delay: 0.8s; }

@keyframes partnerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.2);
    border: 1px solid #0047ab;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.partner-item:hover::before {
    left: 100%;
}

.partner-item:hover .partner-name {
    color: #0047ab;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.08);
    transition: transform 0.4s ease;
}

.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-name {
    transition: all 0.3s ease;
}

.partner-name {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ========================================
   友情链接区
   ======================================== */
.links-section {
    padding: 60px 0;
    background: url('images/links_bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 71, 171, 0.7);
}

.links-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.links-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.links-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.links-row a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.links-row a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #ffeb3b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.links-row a:hover {
    color: #0047ab;
    background: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.links-row a:hover::after {
    transform: scaleX(0);
}

.links-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================================
   页脚
   ======================================== */
.footer {
    padding: 30px 0;
    background: url('images/links_bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 1, 54, 0.3);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffeb3b;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.footer-copyright {
    color: #fff;
    font-size: 16px;
}

/* ========================================
   响应式样式
   ======================================== */

/* 1440px及以下 */
@media (max-width: 1440px) {
    .main-nav li > a {
        font-size: 16px;
    }

    .search-box {
        width: 250px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 16px;
        max-width: 380px;
    }

    .nav-icon-email {
        width: 18px;
        height: 14px;
    }

    .nav-icon-email::before {
        width: 18px;
        height: 14px;
    }

    .nav-icon-email::after {
        width: 14px;
        height: 6px;
        left: 2px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 5px solid currentColor;
    }
}

/* 1360px及以下 */
@media (max-width: 1360px) {
    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 14px;
        max-width: 340px;
    }

    .search-input {
        height: 28px;
    }
}

/* 1280px及以下 */
@media (max-width: 1280px) {
    .main-nav li > a {
        font-size: 12px;
    }
}

/* 1200px及以下 */
@media (max-width: 1200px) {
    /* 新闻资讯区响应式 */
    .news-wrapper {
        flex-direction: column;
    }

    .news-right {
        width: 100%;
    }

    /* 科研成果区响应式 */
    .research-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    /* 合作伙伴区响应式 */
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}



/* 768px及以下 - 移动端 */
@media (max-width: 768px) {
    /* 头部导航响应式 */
    .nav-container {
        padding: 0 15px;
    }

    /* Contact Us 移动端取消右对齐 */
    .nav-contact-right {
        margin-left: 0;
    }

    /* 导航横幅移动端样式重置 */
    .nav-banner {
        height: auto;
        background-color: transparent;
    }

    /* 走马灯加速 - 移动端10秒 */
    .marquee-track {
        animation: marquee-scroll 10s linear infinite;
    }

    .logo img {
        height: 35px;
    }

  

    .main-nav li > a {
        font-size: 16px;
    }

    .submenu a {
        font-size: 16px;
    }    

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: 0;
    }

    /* 移动端隐藏email图标 */
    .nav-email-item {
        display: none;
    }


    .search-container {
        position: relative;
    }

    .search-box {
        position: fixed;
        right: 55px;
        z-index: 1001;
        width: 0;
        padding: 0;
    }

    .search-box.active {
        width: 250px;
        padding: 5px 10px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        height: calc(100vh - 100px);
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
        z-index: 999;
        width: 100%;
    }

    .main-nav li > a.active {
        color: #0b018d;
        font-weight: 700;
    }    

    .main-nav li > a {
        color: #000000;
    }

    .submenu-toggle::after {

    border-top: 4px solid #2e2c2c;


}

    .nav-wrapper.active {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .main-nav {
        flex-direction: column;
        padding: 10px 0;
    }

    .main-nav li {
        display: block;
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav li > a {
        padding: 15px 20px;
    }

    /* 移动端菜单中隐藏email图标 */
    .main-nav .nav-email-item {
        display: none;
    }

    .has-submenu {
        flex-wrap: wrap;
        position: relative;
    }

    .has-submenu > a {
        width: 100%;
        padding-right: 50px !important;
    }

    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 0;
        height: 51px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #eee;
        padding: 0;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        width: 100%;
        background: #f9f9f9;
        padding: 0;
    }

    .submenu.active {
        max-height: 800px;
    }

    .submenu a {
        padding-left: 40px;
        border-bottom: 1px solid #eee;
    }

    .submenu a:last-child {
        border-bottom: none;
    }

    /* 新闻资讯区响应式 */
    .news-container {
        padding: 0 20px;
    }

    .title-center {
        font-size: 24px;
    }

    /* 科研成果区响应式 */
    .research-title {
        font-size: 24px;
    }

    .research-container {
        padding: 0 20px;
    }

    .research-item {
        flex: 0 0 100%;
    }

    .research-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* 合作伙伴区响应式 */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .partners-container {
        padding: 0 20px;
    }

    .partners-title {
        font-size: 24px;
    }

    .partner-logo {
        height: 100px;
    }

    /* 页脚响应式 */
    .footer-container {
        padding: 0 20px;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* 友情链接区响应式 */
    .links-container {
        padding: 0 20px;
    }

    .links-title {
        font-size: 24px;
    }

    .links-row a {
        font-size: 12px;
    }
}

/* 640px及以下 */
@media (max-width: 640px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 11px;
        max-width: 95%;
    }
}

/* 480px及以下 */
@media (max-width: 480px) {
    /* 页脚响应式 */
    .footer-nav {
        display: none;
    }

    /* 走马灯加速 - 移动端10秒 */
    .marquee-track {
        animation: marquee-scroll 10s linear infinite;
    }

    /* 合作伙伴区响应式 */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-item {
        padding: 15px 10px;
    }

    .partner-name {
        font-size: 12px;
    }

    /* 友情链接区响应式 */
    .links-row {
        flex-direction: column;
        gap: 10px;
    }

    .links-row a {
        width: 100%;
        text-align: center;
    }

    .links-separator {
        display: none;
    }
}
