/* list.css  - 列表页专用样式 */
        /* 头部样式调整 */ 
        .list-header-banner { 
            position: relative; 
        } 
 
        .list-logo { 
            position: absolute; 
            top: 35%; 
            transform: translateY(-50%); 
            left: calc((100% - 1400px) / 2); 
            z-index: 1; 
        } 
 
        .list-navbar { 
            display: flex;
			justify-content: space-between;
			align-items: center;
			margin: 0 auto;
			max-width: 1400px;
        } 
 
        .list-nav-menu { 
            display: flex; 
            list-style: none; 
            margin: 0; 
            padding: 0; 
        } 
 
        .list-nav-menu li { 
            margin-left: 20px; 
        } 
 
        .list-search-box { 
            margin-left: 20px; 
        } 
/* 新闻列表样式 */ 
        .list-news-list { 
            margin: 20px 0 40px; 
                      border-bottom: 1px solid #eee;
        } 
 
        .list-news-item { 
            padding: 15px 0; 
            border-top: 1px solid #eee; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        } 
 
        .list-news-item a { 
            color: #333; 
            text-decoration: none; 
            font-size: 16px; 
            transition: color 0.3s; 
            flex-grow: 1; 
        } 
 
        .list-news-item a:hover { 
            color: #1a5276; 
			transform: scale(1.01); /* 放大1% */
        } 
        .list-news-item time { 
            color: #888; 
            font-size: 14px; 
            min-width: 100px; 
            text-align: right; 
        } 
 
.list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
	margin-bottom: 50px;
}
 
.list-header-banner {
    position: relative;
    margin-bottom: 30px;
}
 
.list-banner-bg {
    height: 300px;
    background-size: cover;
    background-position: center;
}
 
.list-navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
	border-radius: 21px 20px 0px 0px;
}
 
.list-logo {
    font-size: 2.8rem;
    font-family: 微软雅黑;
    font-weight: bolder;
    color: #1a5276;
}
 
.list-nav-menu {
    display: flex;
    list-style: none;
}
 
.list-nav-menu li+li {
    margin-left: 20px;
}
 
.list-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    transition: color .3s;
}
 
.list-nav-menu a:hover {
    color: #e74c3c;
}
 
.list-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-right: 10px;
}
 
.list-search-box input {
    padding: 2px 15px;
    border: 1px solid #1a5276;
    border-radius: 10px;
    width: 150px;
    transition: width .3s;
}
 
.list-search-box input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(26, 82, 118, .3);
    width: 200px;
}
 
.list-search-box button {
    background: transparent;
    border: none;
    color: #1a5276;
    font-size: 1.2rem;
    cursor: pointer;
}
        /* 面包屑导航 */ 
        .breadcrumb { 
            padding: 15px 0; 
            font-size: 14px; 
            color: #666; 
        } 
 
        .breadcrumb a { 
            color: #1a5276; 
            text-decoration: none; 
            transition: color 0.3s; 
        } 
 
        .breadcrumb a:hover { 
            color: #154360; 
            text-decoration: underline; 
        } 
 
        .breadcrumb-separator { 
            margin: 0 8px; 
            color: #999; 
        } 
		
/* ========== 页脚 ========== */
footer {
    background: #bd1a2d;
    color: #fff;
    padding: 50px 0 20px;
}
.container{
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 15px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    width: 32%;
    margin-bottom: 30px;
}

.footer-column h3 {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: .8rem;
}
 