        /* 相关链接样式 */
        .footer_bottom {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px 0;
            border-top: 1px solid #dee2e6;
            position: relative;
            overflow: hidden;}
        
        .footer_bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
                linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;}
        
        .footer_bottom .w1200 {
            position: relative;
            z-index: 1;}
        
        .footer_bottom p {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 0;
            font-size: 1rem;
            color: #495057;}
        
        .footer_bottom p i {
            width: 4px;
            height: 20px;
            background: linear-gradient(135deg, #2a4c89 0%, #4a6fa5 100%);
            border-radius: 2px;
            margin-right: 15px;
            flex-shrink: 0;}
        
        .footer_bottom p span {
            display: inline-block;}
        
        .footer_bottom p span a {
            display: inline-block;
            padding: 6px 12px;
            background: #ffffff;
            color: #2a4c89;
            text-decoration: none;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);}
        
        .footer_bottom p span a:hover {
            background: #2a4c89;
            color: #ffffff;
            border-color: #2a4c89;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(42, 76, 137, 0.2);}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .footer_bottom p {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;}
            
            .footer_bottom p span a {
                width: 100%;
                text-align: center;}
        }
        
        @media (max-width: 480px) {
            .footer_bottom {
                padding: 20px 0;}
            
            .footer_bottom p {
                font-size: 0.9rem;}
        }
        
        /* 导航栏字体加粗样式 */
        /* PC端导航栏字体加粗 */
        #nav li a h3 {
            font-weight: 900 !important;}
        
        /* PC端导航栏下拉框字体加粗 */
        #nav .sub .box a {
            font-weight: 900 !important;}
        
        /* 移动端导航栏字体加粗 */
        #m_nav .m_nav_list li.title .a h3 {
            font-weight: 900 !important;}
        
        /* 移动端导航栏下拉框字体加粗 */
        #m_nav .m_nav_list li.title .list a {
            font-weight: 900 !important;}
        
        /* 确保所有导航相关文字都加粗 */
        .header_box nav a h3,
        .m_header_box nav a h3,
        .m_nav_list a h3,
        .m_nav_list .list a {
            font-weight: 900 !important;}
        
        /* 新的Tab样式 */
        .tab-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 6px;
            border: 1px solid #e9ecef;}
        
        /* 整体容器边框样式 - 与专题策划保持一致 */
        .container02 .left {
            border: 1px solid #d5d5d5;
            border-radius: 10px;
            padding: 20px;
            background: #ffffff;
            position: relative;
            overflow: hidden;}
        
        .tab-btn {
            padding: 12px 24px;
            margin-right: 15px;
            background: #ffffff;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            color: #495057;
            font-weight: 500;
            line-height: 1.2;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            min-width: 100px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}
        
        .tab-btn.active {
            background: #1c5ab7;
            color: #ffffff;
            border-color: #1c5ab7;
            box-shadow: 0 4px 12px rgba(28, 90, 183, 0.3);
            font-weight: bold;}
        
        .tab-btn:hover {
            background: #f8f9fa;
            color: #1c5ab7;
            border-color: #1c5ab7;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(28, 90, 183, 0.2);}
        
        .tab-btn:active {
            transform: none;}
        
        .more-btn {
            padding: 8px 16px;
            background: #1c5ab7;
            color: #ffffff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 12px;
            transition: all 0.3s ease;
            border: 2px solid #1c5ab7;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(28, 90, 183, 0.2);}
        
        .more-btn:hover {
            background: #0d47a1;
            border-color: #0d47a1;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(28, 90, 183, 0.3);
            color: #ffffff;}
        
        .tab-content {
            position: relative;
            margin-top: 15px;}
        
        .tab-panel {
            display: none;
            animation: fadeInUp 0.5s ease-out;}
        
        .tab-panel.active {
            display: block;}
        
        .tab-flex-row {
            display: flex;
            gap: 20px;
            width: 100%;}
        
        .carousel-box {
            width: 35%;}
        
        .carousel-box .owl-carousel {
            height: 300px;
            overflow: hidden;}
        
        .carousel-box .owl-carousel .item {
            height: 300px;}
        
        .carousel-box .owl-carousel .item img {
            width: 100%;
            height: 300px;
            object-fit: cover;}
        
        .list-box {
            width: 65%;}
        
        .list-box .list_box3 {
            width: 100%;}
        
        .list-box .list_box3 li {
            width: 100%;
            margin-bottom: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            line-height: 1.6;}
        
        .list-box .list_box3 li:last-child {
            border-bottom: none;}
        
        .list-box .list_box3 li a {
            display: block;
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;}
        
        .list-box .list_box3 li a:hover {
            color: #1c5ab7;}
        
        .list-box .list_box3 .datetime {
            color: #1c5ab7;
            font-size: 20px;
            margin-right: 10px;
            font-weight: bold;}
        
        /* 通知公告面板样式 */
        .notice-panel .tab-flex-row {
            flex-direction: column;}
        
        .notice-panel .list-box {
            width: 100%;}
        
        /* 通知公告列表样式 */
        .notice-panel .list_box3 {
            text-align: left;
            padding-left: 0;}
        
        .notice-panel .list_box3 li {
            text-align: left;
            padding-left: 0;
            margin-left: 0;}
        
        .notice-panel .list_box3 li a {
            text-align: left;
            display: block;
            width: 100%;}
        
        .notice-panel .con {
            text-align: left;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 15px;}
        
        .notice-panel .time {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 8px 12px;
            min-width: 70px;
            min-height: 60px;
            flex-shrink: 0;
            text-align: center;}
        
        .notice-panel .time .day {
            color: #1c5ab7;
            font-size: 26px;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 2px;}
        
        .notice-panel .time .month {
            color: #666;
            font-size: 20px;
            font-weight: 500;
            line-height: 1;}
        
        .notice-panel .title {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;}
        
        /* 通知公告列表悬停效果 */
        .notice-panel .list_box3 li:hover {
            background: #f8f9fa;
            border-radius: 6px;
            transition: all 0.3s ease;}
        
        .notice-panel .list_box3 li:hover .time {
            background: #1c5ab7;
            border-color: #1c5ab7;}
        
        .notice-panel .list_box3 li:hover .time .day {
            color: white;}
        
        .notice-panel .list_box3 li:hover .time .month {
            color: rgba(255, 255, 255, 0.9);}
        
        .notice-panel .list_box3 li:hover .title {
            color: #1c5ab7;}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .tab-header {
                flex-direction: row;
                gap: 10px;
                align-items: center;
                justify-content: flex-start;}
            
            .tab-btn {
                margin-right: 10px;
                margin-bottom: 0;
                justify-content: center;
                padding: 10px 16px;
                min-width: 80px;
                font-size: 13px;}
            
            .tab-btn:last-child {
                margin-bottom: 0;}
            
            .more-btn {
                display: none;}
            
            .tab-flex-row {
                flex-direction: column;
                gap: 15px;}
            
            .carousel-box,
            .list-box {
                width: 100% !important;}
            
            .carousel-box .owl-carousel {
                height: 200px;}
            
            .carousel-box .owl-carousel .item {
                height: 200px;}
            
            .carousel-box .owl-carousel .item img {
                height: 200px;}
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);}
            to {
                opacity: 1;
                transform: translateY(0);}
        }
        

        
        /* 确保移动端导航栏有相对定位 */
        #m_nav {
            position: relative;}
        
        /* 移动端导航栏显示/隐藏控制 */
        #m_nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #1c5ab7 0%, #2a4c89 100%);
            z-index: 1000;
            overflow-y: auto;
            transition: all 0.3s ease;}
        
        #m_nav.active {
            display: block;}
        
        /* 移动端导航栏内容样式 */
        #m_nav .m_nav_list {
            padding: 16px;
            margin: 0;}
        
        #m_nav .m_nav_list li {
            margin-bottom: 8px;}
        
        #m_nav .m_nav_list li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            padding: 10px 0;
            display: block;
            border-bottom: none;}
        
        #m_nav .m_nav_list li a:hover {
            color: #f0f8ff;
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 4px;
            margin: 0 -4px;}
        
        /* 移动端搜索框样式 */
        #m_nav .tc_search {
            padding: 16px;
            border-top: none;
            background: transparent;
            margin: 16px;}
        
        /* 防止body滚动 */
        body.nav-open {
            overflow: hidden;}
        
        /* 移动端头部按钮样式 */
        #nav_btn_box {
            position: relative;
            z-index: 1002;}
        
        #mbtn {
            cursor: pointer;
            padding: 10px;}
        
        .navbtn {
            display: block;
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 5px 0;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);}
        
        /* 按钮悬停效果 */
        #mbtn:hover .navbtn {
            background: #f0f8ff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);}
        
        /* 移动端导航栏关闭按钮样式 */
        .nav-close-item {
            border-top: none;
            margin-top: 8px;
            padding-top: 8px;}
        
        .nav-close-btn {
            display: flex !important;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            border: none;
            padding: 12px 16px;
            text-decoration: none;
            color: #ffffff;
            opacity: 0.8;
            transition: opacity 0.2s ease;}
        
        .nav-close-btn:hover {
            opacity: 1;}
        
        .close-icon {
            font-size: 20px;
            font-weight: normal;
            line-height: 1;}
        
        .close-text {
            font-size: 14px;
            font-weight: normal;}

        /* 修正小屏幕下头部导航栏与屏幕顶部的空白距离 */
        @media (max-width: 768px) {
            /* 移除body的padding-top - 使用更强的优先级 */
            body {
                padding-top: 0 !important;
                margin-top: 0 !important;}
            
            /* 确保html元素也没有顶部边距 */
            html {
                padding-top: 0 !important;
                margin-top: 0 !important;}
            
            /* 确保头部导航栏紧贴屏幕顶部 */
            .header_box {
                margin-top: 0;
                padding-top: 0;}
            
            .header_box_li {
                margin-top: 0;
                padding-top: 0;}
            
            /* 修正固定导航栏的定位 */
            #nav.fixed {
                top: 0;
                margin-top: 0;
                padding-top: 0;}
            
            /* 小屏幕下完全禁用固定导航栏 */
            #nav.fixed {
                position: static !important;
                top: auto !important;
                margin-top: 0 !important;
                padding-top: 0 !important;}
            
            /* 确保移动端头部也紧贴顶部 */
            .m_header_box {
                margin-top: 0;
                padding-top: 0;}
            
            /* 修正移动端导航栏 */
            #m_nav {
                margin-top: 0;
                padding-top: 0;}
            
            /* 移除可能存在的顶部边距 */
            .index03-scope {
                margin-top: 0;
                padding-top: 0;}
            
            .index_miso {
                margin-top: 0;
                padding-top: 0;}
        }
        
        /* 超小屏幕的额外修正 */
        @media (max-width: 480px) {
            body {
                padding-top: 0 !important;
                margin-top: 0 !important;}
            
            html {
                padding-top: 0 !important;
                margin-top: 0 !important;}
            
            .header_box,
            .header_box_li,
            .m_header_box,
            #m_nav {
                margin-top: 0 !important;
                padding-top: 0 !important;}
            
            /* 确保所有可能的顶部边距都被移除 */
            .index03-scope,
            .index_miso,
            .header_box,
            .header_box_li {
                margin-top: 0 !important;
                padding-top: 0 !important;}
        }

