        /* 二级页面主体内容 */
        .subpage-content {
            display: flex;
            gap: 40px;
            padding: 40px 0;
            align-items: flex-start;
            width: 100%;
            box-sizing: border-box;
            min-height: 64vh;
        }

        /* 左侧二级导航 */
        .subpage-left {
            width: 260px;
            flex-shrink: 0;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .subpage-nav-header {
            background: url(left-nav-bg01.png) no-repeat center center;
            background-size: cover;
            padding: 14px 28px;
            color: #fff;
        }

        .subpage-nav-header h3 {
            font-size: 32px;
            font-weight: 800;
        }

        .subpage-nav-list {
            background: #fff;
            z-index: 999;
        }

        .subpage-nav-item {
            position: relative;
        }

        .subpage-nav-item > a {
            display: block;
            padding: 20px;
            color: #022233;
            background: #F4F7F9;
            border-left: 8px solid transparent;
            transition: all 0.3s;
            font-weight: 700;
        }

        .subpage-nav-item > a:hover {
            background: #FFE9D6;
            color: #EC6E00;
            border-left-color: #EC6E00;
        }

        .subpage-nav-item.active > a {
            background: #FFE9D6;
            color: #EC6E00;
            border-left-color: #EC6E00;
            position: relative;
        }

        .subpage-nav-item.active > a::after {
            content: '';
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: #EC6E00 url(left-nav-icon01.png) no-repeat center center;
            background-size: contain;
            border: 5px solid #EC6E00;
        }

        /* 左侧导航子菜单（获奖列表页面） */
        .subpage-nav-item > a {
            position: relative;
            padding-right: 30px;
        }

        .subnav-child {
            display: none;
            background: #fff;
        }

        .subpage-nav-item.active .subnav-child {
            display: block;
        }

        .subnav-child li {
            padding-left: 40px;
        }

        .subnav-child li a {
            display: block;
            padding: 12px 20px;
            font-weight: 800;
        }

        .subnav-child li a:hover {
            color: #EC6E00;
        }

        .subnav-child li a.active {
            color: #EC6E00;
        }

        /* 右侧主体内容 */
        .subpage-right {
            flex: 1;
            min-width: 0;
            position: relative;
        }

        /* 内容区块 */
        .article-section {
            background: #fff;
            border-radius: 8px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
            padding: 20px 0;
        }

        .channel-title {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #C6C6C6;
            position: relative;
        }

        .channel-title-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .channel-title-left::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            border-bottom: 1px dashed #EC6E00;
            max-width: 150px;
        }

        .channel-title-left img {
            width: 213x;
            height: 44px;
        }

        .channel-title h2 {
            font-size: 22px;
            font-weight: 800;
        }

        /* 路径导航 */
        .route-nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .route-nav img {
            width: 16px;
            height: 16px;
        }

        .route-nav span {
            color: #666;
            font-size: 16px;
        }

        .route-nav a {
            font-size: 16px;
        }

        .route-nav a:hover {
            color: #EC6E00;
        }

        /* 文章内容 */
        .article-content {
            color: #444444;
            line-height: 1.8;
        }

        .article-content .article-title {
            font-size: 26px;
            margin: 25px 0 15px;
            font-weight: 800;
            text-align: center;
        }

        .article-content p {
            margin-bottom: 15px;
            /* text-indent: 2em; */
        }

        .article-content img {
            max-width: 800px;
            height: auto;
            margin: auto;
            display: block;
        }

        /* 现任领导页面特有样式 */
        .leaders-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 20px;
        }

        .leader-card {
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .leader-card img {
            width: 180px;
            height: 240px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .leader-info {
            display: flex;
            flex-direction: column;
            padding-bottom: 40px;
        }

        .leader-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            border-bottom: 1px solid #979797;
            padding-right: 20px;
        }

        .leader-title {
            font-size: 18px;
        }

        /* 历任领导页面特有样式 */
        .former-leaders-section {
            padding: 20px;
        }

        .leader-group {
            margin-bottom: 40px;
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .leader-group-title {
            font-size: 18px;
            font-weight: 700;
            color: #022233;
            padding-bottom: 10px;
            border-bottom: 1px solid #979797;
            width: 80px;
            flex-shrink: 0;
        }

        .former-leaders-grid {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            flex: 1;
        }

        .former-leader-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .former-leader-card img {
            width: 180px;
            height: 240px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .former-leader-name {
            font-size: 16px;
        }

        /* 机构设置页面特有样式 */
        .dept-section {
            padding: 20px 0;
            font-size: 18px;
            font-weight: 800;
        }
        .dept-section.no-child {
            padding: 0;
        }

        .dept-item {
            margin-bottom: 27px;
        }

        .dept-item-title {
            color: #022233;
            padding: 12px 0 12px 47px;
            background: linear-gradient( 270deg, #F4F7F9 0%, #FFF6EE 100%);
            margin-bottom: 27px;
            position: relative;
            font-size: 22px;
        }

        .dept-item-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        }

        .dept-sub-list {
            list-style: none;
            padding-left: 47px;
        }
        .dept-section.no-child .dept-sub-list {
            padding-left: 13px;
        }

        .dept-sub-item {
            padding: 8px 0;
            position: relative;
            padding-left: 24px;
            font-size: 16px;
        }

        .dept-sub-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: url(list-icon01.png) no-repeat center center;
            background-size: contain;
        }

        /* 院士名人页面特有样式 */
        .academician-section {
            padding: 20px 0;
        }

        .academician-card {
            display: flex;
            gap: 30px;
            background: linear-gradient( 180deg, #FFF6EE 0%, #F4F7F9 100%);
            margin-bottom: 20px;
        }

        .academician-img {
            flex-shrink: 0;
        }

        .academician-img img {
            width: 180px;
            height: 240px;
            object-fit: cover;
        }

        .academician-content {
            flex: 1;
            padding: 30px 30px 30px 0;
        }

        .academician-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            padding-left: 27px;
        }

        .academician-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        }

        .academician-desc {
            font-size: 16px;
            line-height: 1.8;
            text-indent: 2em;
        }

        /* 获奖列表页面特有样式 */
        .search-form-section {
            padding: 20px 0;
            background: #fff;
        }

        .search-form {
            display: flex;
        }

        .search-fields-wrapper {
            display: flex;
            align-items: center;
            width: 100%;
            position: relative;
            flex-wrap: wrap;
            row-gap: 30px;
        }

        .search-fields {
            display: flex;
            gap: 22px 90px;
            flex: 1;
            flex-wrap: wrap;
        }

        .search-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-item label {
            font-size: 18px;
            color: #444;
            white-space: nowrap;
            font-weight: 800;
        }

        .search-item input {
            flex: 1;
            height: 33px;
            padding: 0 10px;
            border: 1px solid #CECECE;
            border-radius: 2px;
            font-size: 14px;
            max-width: 280px;
        }

        .search-item input::placeholder {
            color: #999;
        }
        .search-item input:focus {
            outline: none;
        }

        .search-divider {
            width: 1px;
            height: 87px;
            background: #e0e0e0;
            margin: 0 30px;
            flex-shrink: 0;
        }

        .search-btn-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            padding: 10px 24px;
            background: #EC6E00;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            height: 44px;
            flex-shrink: 0;
            width: 240px;
            font-size: 22px;
            font-weight: 800;
            border-radius: 4px;
            letter-spacing: 8px;
        }

        .search-btn-submit img {
            width: 20px;
            height: 20px;
        }

        .search-btn-submit:hover {
            background: #d45a00;
        }

        .table-wrapper {
            padding: 20px 0;
            overflow-x: auto;
        }

        .award-table {
            width: 100%;
            min-width: 680px;
            border-collapse: collapse;
            border-top: 3px solid #EC6E00;
            background: #fff;
        }

        .award-table thead, .award-table tbody {
            vertical-align: top;
        }

        .award-table th {
            padding: 20px;
            text-align: left;
            font-weight: 800;
            border: 1px solid #CECECE;
            border-bottom: 1px solid #CECECE;
            white-space: nowrap;
        }

        .award-table td {
            padding: 20px;
            border: 1px solid #CECECE;
        }

        .award-table tbody tr:hover {
            background: #FFF6EE;
        }

        .award-table th:nth-child(3),
        .award-table td:nth-child(3) {
            width: 290px;
        }
        .zl-table th:nth-child(3),
        .zl-table td:nth-child(3) {
            width: auto;
        }

        .award-table th:nth-child(4),
        .award-table td:nth-child(4) {
            width: 149px;
        }

        .pagination {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
        }

        .pagination .page-numbers {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .pagination .page-numbers .unactive,.pagination .page-numbers .active {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }
        .pagination .page-numbers .active{
            color: #EC6E00;
        }

        .pagination .page-numbers a:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background: #ccc;
        }

        .pagination .page-numbers a:hover {
            color: #EC6E00;
        }

        .pagination .page-numbers a.active {
            color: #EC6E00;
        }

        .pagination .prev-page,
        .pagination .next-page {
            display: flex;
            /* align-items: center; */
            justify-content: center;
            width: 20px;
            height: 20px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: color 0.3s;
            color: #fff;
            background: #EC6E00;
            border-radius: 50%;
            line-height: 1;
            padding-left: 2px;
        }
        .pagination .prev-page{
            padding-left: 0;
            padding-right: 2px;
        }

        .pagination .prev-page:hover,
        .pagination .next-page:hover {
            background: #d45a00;
        }

        /* 人员列表 */
        .people-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px 88px;
            padding: 20px 0;
        }

        .people-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .people-card:hover {
            transform: translateY(-5px);
        }

        .people-card img {
            width: 100%;
            max-width: 180px;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .people-card span {
            font-size: 14px;
            color: #333;
            text-align: center;
        }

        /* 招生分类区域 */
        .recruitment-section {
            display: flex;
            gap: 40px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }

        .recruitment-col {
            flex: 1;
            min-width: 300px;
        }

        .recruitment-col h3,.recruitment-info h3 {
            padding: 12px 0 12px 27px;
            background: linear-gradient(270deg, #F4F7F9 0%, #FFF6EE 100%);
            margin-bottom: 27px;
            position: relative;
            font-size: 18px;
            font-weight: normal;
            font-weight: 800;
        }

        .recruitment-col h3::before,.recruitment-info h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        }

        .recruitment-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .recruitment-list li {
            padding: 10px 0;
            padding-left: 26px;
            position: relative;
        }

        .recruitment-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: url('list-icon01.png') no-repeat center center;
            background-size: contain;
        }

        .recruitment-list li a {
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            font-weight: 800;
        }

        .recruitment-list li a:hover {
            color: #EC6E00;
        }

        /* 招生信息列表 */
        .recruitment-info {
            padding: 20px 0;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            padding: 12px 0;
            padding-left: 20px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* border-bottom: 1px dashed #eee; */
        }

        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 2px;
            background: #EC6E00;
        }

        .info-list li a {
            flex: 1;
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-right: 20px;
        }

        .info-list li a:hover {
            color: #EC6E00;
        }

        .info-list li .date {
            font-size: 14px;
            color: #999;
            white-space: nowrap;
        }

        /* 导师分栏列表 */
        .teacher-section {
            padding: 20px 0;
        }

        .teacher-item {
            margin-bottom: 20px;
        }

        .teacher-item-title {
            padding: 12px 0 12px 27px;
            background: linear-gradient(270deg, #F4F7F9 0%, #FFF6EE 100%);
            position: relative;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
        }

        .teacher-item-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        }

        .teacher-item-title .toggle-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
            margin-right: 10px;
        }

        .teacher-item-content {
            padding: 20px 0;
        }

        .teacher-table-wrapper {
            overflow-x: auto;
        }

        .teacher-table {
            width: 100%;
            min-width: 680px;
            border-collapse: collapse;
        }

        .teacher-table th,
        .teacher-table td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #D5D5D5;
        }

        .teacher-table th {
            background: #EC6E00;
            font-weight: 800;
            color: #fff;
            white-space: nowrap;
        }

        .teacher-table tbody tr:hover {
            background: #FAFAFA;
        }

        /* 导师部门信息 */
        .teacher-department {
            padding: 12px 0 12px 27px;
            background: linear-gradient(270deg, #F4F7F9 0%, #FFF6EE 100%);
            position: relative;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .teacher-department::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        }

        /* 人员基本信息 */
        .person-detail {
            margin-bottom: 20px;
        }

        .person-info {
            display: flex;
            gap: 30px;
            padding: 30px;
            background: url('ry-details-bg.png') no-repeat center center;
            background-size: cover;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .person-photo {
            width: 180px;
            aspect-ratio: 3/4;
            object-fit: cover;
            flex-shrink: 0;
        }

        .person-basic {
            flex: 1;
        }

        .person-basic h3 {
            font-size: 30px;
            font-weight: 700;
            display: inline-block;
            position: relative;
            padding-top: 10px;
            margin-bottom: 10px;
        }
        .person-basic h3::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 110%;
            height: 2px;
            background: #EC6E00;
        }

        .person-basic p {
            line-height: 2;
            margin: 0;
        }

        .person-basic a {
            text-decoration: none;
        }
        .person-basic a:hover {
            color: #EC6E00;
        }

        .person-recruitment {
            flex-shrink: 0;
            flex: 0.6;
        }

        .person-recruitment h4 {
            font-size: 26px;
            font-weight: 600;
            color: #EC6E00;
            margin-bottom: 10px;
        }

        .person-recruitment p {
            margin: 0 0 8px 0;
        }

        /* Tab切换区域 */
        .tab-section {
            padding: 20px 0;
        }

        .tab-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        .tab-btn {
            padding: 7px 29px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            background: url('icon-tab-default.png') no-repeat center center;
            background-size: cover;
            font-size: 18px;
        }

        .tab-btn.active {
            background: url('icon-tab-active.png') no-repeat center center;
            background-size: cover;
            color: #fff;
        }

        .person-tab-content {
            min-height: 500px;
            padding: 15px 0;
            overflow: visible;
        }

        .tab-section .person-tab-content .tab-pane {
            display: none;
            width: 100%;
        }

        .tab-section .person-tab-content .tab-pane.active {
            display: block !important;
            opacity: 1;
            visibility: visible;
        }

        /* 详细信息项 */
        .detail-item {
            margin-bottom: 25px;
        }

        .detail-item h4 {
            font-weight: 600;
            padding: 8px 15px 8px 45px;
            position: relative;
            margin-bottom: 15px;
            background: linear-gradient( 270deg, #FFFFFF 0%, #EFEFEF 100%);
            border-radius: 20px 0 0 20px;
        }

        .detail-item h4::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: url('list-icon02.png') no-repeat center center;
            background-size: contain;
        }

        .detail-item p {
            line-height: 2;
            padding-left: 25px;
        }

        /* 加载更多按钮 */
        .load-more-btn-wrapper {
            display: none;
            padding: 20px;
            text-align: center;
        }

        .load-more-btn {
            padding: 12px 30px;
            background: #EC6E00;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .load-more-btn:hover {
            background: #d45a00;
        }

        /* 期刊详情页面样式 */

        .journal-detail {
            display: flex;
            gap: 30px;
        }

        .journal-content {
            flex: 1;
        }

        .journal-content p {
            text-align: justify;
            margin-bottom: 30px;
        }

        .journal-info {
            margin-top: 20px;
            padding-top: 20px;
            /* border-top: 1px solid #eee; */
        }

        .journal-info p {
            margin-bottom: 10px;
        }

        .journal-cover {
            flex-shrink: 0;
            width: 180px;
        }

        .journal-cover img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* 文字列表页面样式 */
        /* .news-title {
            padding: 12px 0 12px 27px;
            background: linear-gradient(270deg, #F4F7F9 0%, #FFF6EE 100%);
            position: relative;
            margin-bottom: 20px;
            font-weight: 800;
            font-size: 22px;
            color: #022233;
        }

        .news-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 13px;
            height: 22px;
            background: #EC6E00;
        } */

        .subpage-news-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .subpage-news-list li {
            position: relative;
            padding: 15px 0 15px 20px;
            /* border-bottom: 1px dashed #eee; */
            transition: transform 0.3s ease;
        }

        .subpage-news-list li:last-child {
            border-bottom: none;
        }

        .subpage-news-list li:hover {
            transform: translateY(-3px);
        }

        .subpage-news-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 1px;
            background: #EC6E00;
        }

        .subpage-news-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: inherit;
            text-decoration: none;
            width: 100%;
        }

        .subpage-news-list li a .subpage-news-title {
            flex: 1;
            margin-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: color 0.3s;
        }

        .subpage-news-list li:hover .subpage-news-title {
            color: #EC6E00;
        }

        .subpage-news-date {
            flex-shrink: 0;
            color: #999;
            font-size: 14px;
        }

        /* 图文列表页面样式 */
        .image-news-list {
            margin-top: 20px;
        }

        .image-news-item {
            display: flex;
            gap: 25px;
            padding: 20px 0;
            border-bottom: 1px dashed #eee;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-news-item:last-child {
            border-bottom: none;
        }

        .image-news-item:hover {
            transform: translateY(-5px);
        }

        .image-news-item:hover .news-content h4 {
            color: #EC6E00;
        }

        .image-news-item .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .image-news-item .news-content h4 {
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 12px 0;
            line-height: 1.4;
        }

        .image-news-item .news-content p {
            line-height: 1.8;
            margin: 0 0 20px 0;
            text-align: justify;
        }

        .image-news-item .news-content .news-date {
            margin-left: 0;
            font-size: 16px;
            color: #999;
        }

        .image-news-item .news-image {
            flex-shrink: 0;
            width: 333px;
        }

        .image-news-item .news-image img {
            width: 100%;
            aspect-ratio: 333/190;
            object-fit: cover;
        }

        /* 文字细览页面样式 */
        .article-detail {
            padding-top: 20px;
        }

        .article-detail h1 {
            font-size: 26px;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 20px;
            text-align: center;
        }

        .article-info {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #eee;
        }

        .article-info .article-source,
        .article-info .article-date {
            font-size: 16px;
            margin: 0 20px;
            font-weight: 700;
        }

        .article-content {
            line-height: 1.8;
        }
        .article-content .trs_editor_view table{
            margin: auto;
        }

        .article-content p {
            margin-bottom: 16px;
            text-align: justify;
        }

        .article-content p img {
            max-width: 80%;
            /* width: 800px; */
            height: auto;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 20px 0;
            display: block;
            margin: auto;
        }

        .article-attachments {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed #eee;
        }

        .article-attachments h4 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .article-attachments ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .article-attachments li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px 0;
        }

        .article-attachments li img {
            width: 16px;
            height: 16px;
        }

        .article-attachments li a {
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-attachments li a:hover {
            color: #EC6E00;
        }

        .article-nav {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed #eee;
        }

        .article-nav .nav-prev,
        .article-nav .nav-next {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
        }

        .article-nav .nav-prev img,
        .article-nav .nav-next img {
            width: 16px;
            height: 16px;
        }

        .article-nav .nav-prev a,
        .article-nav .nav-next a {
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-nav .nav-prev a:hover,
        .article-nav .nav-next a:hover {
            color: #EC6E00;
        }

        /* 小屏悬浮按钮 */
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            right: -20px;
            top: 0;
            transform: translateY(-50%);
            width: 33px;
            height: 36px;
            background: #EC6E00;
            border: none;
            border-radius: 4px 0px 0px 4px;
            cursor: pointer;
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .mobile-nav-toggle span {
            width: 16px;
            height: 2px;
            background: #fff;
            display: block;
        }

        .mobile-subnav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
        }

        .mobile-subnav-sidebar {
            position: fixed;
            left: -280px;
            top: 0;
            width: 280px;
            height: 100%;
            background: #fff;
            z-index: 1002;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-subnav-sidebar.open {
            left: 0;
        }

        .subnav-sidebar-close {
            position: absolute;
            right: 15px;
            top: 15px;
            width: 35px;
            height: 35px;
            background: rgba(0,0,0,0.2);
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        /* 响应式设计 */
        @media (max-width: 1560px) {
            .subpage-content {
                gap: 20px;
            }
            .people-list{
                gap: 40px 60px;
            }
        }

        @media (max-width: 1270px) {
            .subpage-left {
                /* width: 200px; */
            }

            .leaders-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            
            .award-table th:nth-child(3),
            .award-table td:nth-child(3),
            .award-table th:nth-child(4),
            .award-table td:nth-child(4) {
                width: auto;
            }
            .search-fields{
                gap: 22px 20px;
            }
            .people-list{
                gap: 40px 40px;
            }
            .person-recruitment{
                flex: 1;
            }

        }

        @media (max-width: 1024px) {
            .subpage-content {
                /* flex-direction: column; */
                padding: 20px 0;
            }

            .channel-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .route-nav {
                order: 2;
            }

            .channel-title-left {
                order: 1;
            }

            .subpage-left {
                display: none;
            }

            .mobile-nav-toggle {
                display: flex;
            }

            .mobile-subnav-overlay.show {
                display: block;
            }

            .subpage-nav-item.active::after {
                display: none;
            }

            .article-content img, .article-content p img {
                max-width: 100%;
            }

            .article-section {
                /* padding: 20px; */
            }

            .channel-title h2 {
                font-size: 20px;
            }

            .article-content h3 {
                font-size: 18px;
            }

            .article-content {
                font-size: 16px;
            }

            .leaders-grid {
                grid-template-columns: 1fr;
            }

            .leader-card img {
                width: 120px;
                height: 160px;
            }

            .leader-info {
                padding-top: 30px;
            }

            .former-leader-card img {
                width: 120px;
                height: 160px;
            }

            .leader-group {
                flex-direction: column;
                gap: 15px;
            }

            .leader-group-title {
                width: auto;
                display: inline-block;
            }

            .academician-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px 0;
            }
            .academician-content {
                padding: 0 20px;
            }
            .academician-title{
                display: inline-block;
            }
            .academician-desc {
                text-align: left;
            }

            .academician-img img {
                width: 150px;
                height: 200px;
            }

            .academician-desc {
                text-indent: 0;
            }
            .search-divider{
                display: none;
            }
            .search-fields-wrapper{
                gap: 20px;
            }
            .people-list{
                gap: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .person-photo{
                flex: 0 0 50%;
            }
            .pagination .page-numbers {
                display: none;
            }

            .load-more-btn-wrapper {
                display: block;
                margin: auto;
            }
            .people-list{
                grid-template-columns: repeat(3, 1fr);
            }
            .person-basic{
                min-width: 100%;
            }
            .tab-nav{
                flex-wrap: wrap;
            }
            .journal-detail{
                flex-direction: column;
            }
            .image-news-item{
                flex-direction: column;
            }
            .subpage-news-list li a{
                flex-direction: column;
                align-items: baseline;
            }
            .subpage-news-list li a .subpage-news-title{
                white-space: initial;
            }
            .subpage-news-list li::before{
                top: 30px;
            }
        }

        @media (max-width: 480px) {
            .route-nav {
                flex-wrap: wrap;
            }
            
            .people-list{
                grid-template-columns: repeat(2, 1fr);
            }
        }