* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
	text-decoration: none;	
	}
body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    background-color: #e8f0f7;
}

.container {
    width: 100%;
    min-width: 1000px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 顶部链接 */
.top-links {
    background-color: #e8f0f7;
    text-align:right;
    padding: 8px 50px;
    font-size: 14px;
    height: 36px;
    line-height: 20px;
    overflow: hidden;
    color: #1a5c8c;
}

.top-links a {
    color: #666;
    text-decoration: none;
    margin: 0 8px;
}

.top-links a:hover {
    color: #1a5c8c;
}

/* 头部 */
.header {
    background-color: #1a5c8c;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    margin-right: 35px;
}

.logo-icon {
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a5c8c;
    font-size: 11px;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
    min-width: 65px;
    min-height: 65px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    line-height: 1.5;
}

.project-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 600px;
}

.project-subtitle {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 600px;
}

/* 水平导航 */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    height: 58px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.main-nav li {
    flex: 1;
    text-align: center;
}

.main-nav a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1a5c8c;
    border-bottom-color: #1a5c8c;
}

/* 汉堡菜单按钮 */
.menu-toggle {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #1a5c8c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    z-index: 9999;
    pointer-events: auto;
}

.menu-toggle:focus {
    outline: none;
}

/* 内容区域 */
.content-wrapper {
    flex: 1;
    max-width: 1100px;
    margin: 20px auto;
    width: calc(100% - 40px);
    background-color: #fff;
    padding: 20px;
    min-height: 600px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 面包屑 */
.breadcrumb {
    padding: 10px 0 15px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #1a5c8c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 内页布局 */
.page-layout {
    display: flex;
    gap: 20px;
}

/* 左侧子菜单 */
.sub-menu {
    width: 220px;
    flex-shrink: 0;
}

.sub-menu-title {
    background-color: #1a5c8c;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.sub-menu-list {
    list-style: none;
}

.sub-menu-list li {
    border-bottom: 1px solid #eee;
}

.sub-menu-list a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sub-menu-list a:hover {
    background-color: #f5f9ff;
    color: #1a5c8c;
}

.sub-menu-list a.active {
    background-color: #e8f0f7;
    color: #1a5c8c;
    border-left-color: #1a5c8c;
    font-weight: bold;
}

/* 右侧内容 */
.page-content {
    flex: 1;
    padding: 0 20px;
}

.page-content-title {
    font-size: 20px;
    color: #1a5c8c;
    border-bottom: 2px solid #1a5c8c;
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: inline-block;
}

.page-content h3 {
    font-size: 18px;
    color: #1a5c8c;
    margin: 20px 0 10px 0;
}

.page-content h4 {
    font-size: 16px;
    color: #333;
    margin: 15px 0 8px 0;
}

.page-content p {
    margin-bottom: 15px;
    text-indent: 2em;
    text-align: justify;
}

.page-content .info-card {
    background-color: #f5f9ff;
    margin: 20px 0;
    border-left: 4px solid #1a5c8c;
    padding: 20px;
}
.page-content .info-card2 {
    padding: 10px;
}
/* ====== 首页样式 ====== */

/* 首页横幅区 */
.home-hero {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(180deg, #e8f0f7 0%, #f5f9ff 100%);
    position: relative;
}

.home-hero-left {
    flex: 1;
    padding-top: 5px;
}

.home-hero-left h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.home-hero-left p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.home-hero-left .btn-more {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #1a5c8c;
    color: #1a5c8c;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.home-hero-left .btn-more:hover {
    background-color: #1a5c8c;
    color: #fff;
}

.home-hero-right {
    flex: 1;
    max-width: 450px;
}

.home-hero-right .img-placeholder {
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.home-hero-right .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 风采展示 */
.section-title {
    text-align: center;
    font-size: 18px;
    color: #1a5c8c;
    margin: 30px 0 20px;
    padding-bottom: 10px;
}

.section-title::before {
    content: "\1f4c4";
    margin-right: 5px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.showcase-item {
    text-align: center;
}

.showcase-item .placeholder-img {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #ddd 0%, #eee 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
}

.showcase-item .placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.showcase-item span {
    font-size: 12px;
    color: #666;
}


.showcase-item a {
	text-decoration: none;

}



/* 双栏区块 */
.dual-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.section-block {
    position: relative;
}

.section-block-header {
    position: relative;
    height: 80px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

.section-block-header .block-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.section-block-header .arrow-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.section-block-header .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,92,140,0.8) 0%, rgba(26,92,140,0.6) 100%);
}

.section-block-body {
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    padding: 15px 20px;
}

.section-block-body ul {
    list-style: none;
}

.section-block-body li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.section-block-body li::before {
    content: ">";
    color: #1a5c8c;
    margin-right: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

.section-block-body li .year {
    color: #1a5c8c;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
    font-size: 12px;
}

.section-block-body li:last-child {
    border-bottom: none;
}

.section-block-body li span:first-child {
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
    display: block;
}

.section-block-body li span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-block-body li a {
    color: #333;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}

.section-block-body li a:hover {
    color: #1a5c8c;
}

.section-block-body li .date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

/* 底部 */
.footer {
    background-color: #1a5c8c;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    margin-top: auto;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.page-content a {
    color: #1a5c8c;
    text-decoration: none;
   /* border-bottom: 1px dashed #1a5c8c;
    padding-bottom: 1px;*/
    transition: all 0.3s;
	
}

.page-content a:hover {
    color: #2d8ac7;
    border-bottom-color: #2d8ac7;
    border-bottom-style: solid;
}

.page-content a:visited {
    color: #6a4c93;
}

.page-content a:active {
    color: #c41e3a;
}

/* 表格样式 */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
	font-size:14px;
}

.page-content table th,
.page-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.page-content table th {
    background-color: #1a5c8c;
    color: #fff;
}

.page-content table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 通用图片占位符 */
.img-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    border: 1px dashed #ccc;
}

/* 申报书表格样式 */
.declaration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.declaration-table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    vertical-align: top;
}

.declaration-table tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.declaration-table tr:nth-child(even) {
    background-color: #fff;
}

.declaration-table td:first-child {
    background-color: #e8f0f7;
    font-weight: bold;
    color: #1a5c8c;
    width: 160px;
    text-align: center;
}

/* 模块区域 */
.module-section {
    margin: 25px 0;
}

.module-section h3 {
    font-size: 16px;
    color: #1a5c8c;
    padding: 10px 15px;
    background-color: #e8f0f7;
    border-left: 4px solid #1a5c8c;
    margin-bottom: 10px;
}

.module-content {
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.module-content p {
    margin-bottom: 12px;
    text-indent: 2em;
    line-height: 1.8;
}

.module-content ul {
    margin-left: 20px;
    padding-left: 0;
}

.module-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ====== 响应式适配 ====== */

/* 移动端适配（小于768px） */
@media (max-width: 768px) {
    /* 基础样式 */
    body {
        font-size: 15px;
    }
    
    .container {
        min-width: auto;
        width: 100%;
    }
    
    /* 顶部链接 */
    .top-links {
        padding: 8px 15px;
        text-align: center;
    }
    
    .top-links a {
        margin: 0 5px;
        font-size: 13px;
    }
    
    /* 头部 */
    .header {
        padding: 15px 10px;
        height: auto;
        flex-direction: column;
        text-align: center;
        overflow: hidden;
    }
    
    .header-left {
        flex-direction: column;
    }
    
    .logo-area {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .logo-text {
        font-size: 11px;
    }
    
    .project-title {
        font-size: 16px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    /* 水平导航 */
    .main-nav {
        height: auto;
        min-height: 58px;
        padding: 0;
        overflow: visible;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 0;
        margin: 0;
        z-index: 99;
    }
    
    .main-nav ul.open {
        display: flex;
    }
    
    .main-nav li {
        flex: none;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        border-bottom: none;
        border-left-color: #1a5c8c;
        background-color: #e8f0f7;
    }
    
    /* 内容区域 */
    .content-wrapper {
        width: 100%;
        margin: 10px 0;
        padding: 15px;
        min-height: auto;
        box-shadow: none;
    }
    
    /* 面包屑 */
    .breadcrumb {
        padding: 8px 0 12px 0;
        font-size: 14px;
    }
    
    /* 内页布局 */
    .page-layout {
        flex-direction: column;
        gap: 15px;
    }
    
    /* 左侧子菜单 */
    .sub-menu {
        width: 100%;
        order: 2;
    }
    
    .sub-menu-title {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .sub-menu-list a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* 右侧内容 */
    .page-content {
        flex: 1;
        padding: 0;
        order: 1;
    }
    
    .page-content-title {
        font-size: 18px;
        padding-bottom: 8px;
        margin-bottom: 20px;
    }
    
    .page-content h3 {
        font-size: 16px;
        margin: 15px 0 8px 0;
    }
    
    .page-content p {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 2px;
    }
    
    /* 首页样式 */
    .home-hero {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .home-hero-left {
        padding-top: 0;
    }
    
    .home-hero-left h2 {
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.5;
        font-weight: bold;
    }
    
    .home-hero-left p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .home-hero-right {
        max-width: 100%;
        width: 100%;
    }
    
    .video-placeholder {
        height: 220px !important;
        border-radius: 6px;
    }
    
    .video-placeholder video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* 风采展示 */
    .section-title {
        font-size: 16px;
        margin: 18px 0 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #1a5c8c;
        display: inline-block;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .showcase-item .placeholder-img {
        height: 110px;
        border-radius: 6px;
    }
    
    .showcase-item span {
        font-size: 12px;
        display: block;
        padding: 5px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 双栏区块 */
    .dual-section {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .section-block-header {
        height: 55px;
        padding: 0 15px;
        border-radius: 6px 6px 0 0;
    }
    
    .section-block-header .block-title {
        font-size: 16px;
        z-index: 1;
        position: relative;
    }
    
    .section-block-body {
        padding: 10px 15px;
        border-radius: 0 0 6px 6px;
    }
    
    .section-block-body li {
        padding: 7px 0;
        font-size: 14px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .section-block-body li span:first-child {
        white-space: normal;
        margin-right: 0;
        margin-bottom: 3px;
        line-height: 1.6;
    }
    
    .section-block-body li .date {
        font-size: 12px;
        width: 100%;
        text-align: right;
        color: #666;
    }
    
    /* 表格样式 */
    .page-content table {
        overflow-x: auto;
        display: block;
    }
    
    .page-content table th,
    .page-content table td {
        padding: 8px 6px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* 申报书表格样式 */
    .declaration-table td {
        padding: 8px 6px;
        font-size: 13px;
    }
    
    .declaration-table td:first-child {
        width: 100px;
        font-size: 12px;
        padding: 8px 4px;
    }
    
    /* 模块区域 */
    .module-section {
        margin: 20px 0;
    }
    
    .module-section h3 {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    .module-content {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .module-content p {
        font-size: 14px;
    }
    
    .module-content li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    /* 底部 */
    .footer {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* 按钮样式 */
    .btn-more {
        padding: 10px 25px !important;
        font-size: 14px !important;
        border-radius: 4px;
        display: inline-block;
        text-align: center;
        min-width: 120px;
    }
    
    /* 图片响应式 */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }
    
    /* 视频响应式 */
    video {
        max-width: 100%;
        height: auto;
    }
    
    /* 禁用横向滚动 */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* 表单元素响应式 */
    input, textarea, select, button {
        max-width: 100%;
    }
    
    /* 信息卡片响应式 */
    .info-card {
        padding: 12px 15px !important;
        margin: 15px 0 !important;
    }
    
    /* 申报书表格响应式优化 */
    .declaration-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .declaration-table td:first-child {
        width: 110px;
        font-size: 12px;
        padding: 6px 4px;
    }
    
    .declaration-table td {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    /* 模块区域响应式优化 */
    .module-section {
        margin: 15px 0;
    }
    
    .module-section h3 {
        font-size: 15px;
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .module-content {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .module-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .module-content li {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.6;
    }
}

/* 平板适配（768px-1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        min-width: auto;
    }
    
    .content-wrapper {
        max-width: 100%;
        width: calc(100% - 20px);
    }
    
    .home-hero {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-hero-right {
        max-width: 100%;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dual-section {
        grid-template-columns: 1fr;
    }
    
    .page-layout {
        flex-direction: column;
    }
    
    .sub-menu {
        width: 100%;
    }
}
