* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 头部样式 */
header {
    background: rgba(255, 255, 255, 0.1) url('images/top-bg3.png') no-repeat center top;
    background-size: cover;
    background-blend-mode: overlay;
    color: #333;
    /* padding: 15px 0; */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 700px;
}

.header-top{
    font-size: 14px;
    color: #fff;
    background-color: #156dbd;
    /* padding: 3px 0; */
    height: 45px;
    line-height: 45px;
    .header-top-content{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        width: 100%;
        flex-direction: row;
    }
    .header-top-time{
         width: 230px;
    }
    .header-top-tq{
        color: #fff;
        width: 100%;
        padding-top: 3px;
    }
    .header-top-tq a{
        color: #156dbd; 
    }
}

#tianqi-iframe{
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 16px;
}

/* 头部内容样式 */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    flex-direction: column;
    padding-top: 30px;
    .logo {
        margin-top: 50px;
        display: flex;
        align-items: center;
        img {
                max-height: 150px;
                width: auto;
            }
    }
    .logo-title {
        margin-top: 5px;
        display: flex;
        align-items: center;
        img {
            max-height: 65px;
            width: auto;
        }
    }
}

/* 头部标语样式 */
.header-slogan {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    
}

.slogan-item {
    font-size: 26px;
    font-weight: bold;
    color: #0464ca;
    padding: 8px 15px;
    /* border-right: 1px solid #e0e0e0; */
    text-align: center;
    white-space: nowrap;
}

.slogan-item:last-child {
    border-right: none;
}
 
/* 搜索框样式 */
.header-search {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.search-box {
    display: flex;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     /* align-items: center;
    border: 1px solid #ddd;
    padding: 5px 15px; */
}

.search-box input {
    border: none;
    outline: none;
    padding: 15px;
    font-size: 20px;
    width: 500px;
    border-radius: 25px;
}

.search-box button {
    background-color: #0464ca;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;

}

.search-box button:hover {
    background-color: #b01a07;
}

/* 人员查询按钮样式 */
.personnel-btn {
    background-color: #0464ca;
    color: white;
    border: none;
    border-radius:  25px;
    padding: 13px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.personnel-btn:hover {
    background-color: #b01a07;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 导航菜单样式 */
nav {
    background-color: #0464ca;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 导航滚动效果 */
nav.scrolled {
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    padding: 10px 0;
    background-color: rgba(46, 107, 151, 0.98);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    padding: 0 20px;
}

.nav-menu a {
    display: block;
    padding: 18px 15px;
    color: white;
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    /* border-right: 1px solid rgba(255,255,255,0.2); */
    position: relative;
    overflow: hidden;
}

/* .nav-menu li:first-child a {
    border-left: 1px solid rgba(255,255,255,0.2);
} */

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
}


/* 导航项悬停效果 */
.nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* 导航项下划线动画 */
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b01a07 0%, #ff4757 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* 导航项缩放效果 */
.nav-menu a:active {
    transform: scale(0.98) translateY(-2px);
}


/* 党在我心中，青山绿水行*/
.zt-box { 
    margin: 20px 0;
    
    width: 100%;
    
}
.zt-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    border-bottom: 5px solid #cb1c1d;
}

.zt-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 30px;
    text-align: center;
    white-space: nowrap;
     background-color: #0464ca;
     border-radius: 12px;

}

.zt-box-content {
    width: 100%;
    margin-left: 20px;
    text-align: center;
}

.zt-box-content h1 {
    color: #cb1c1d;  
    align-items: center;
    font-size: 50px;
}



/* 焦点图区域 */
.focus-section {
    padding: 15px 0;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    width: 100%;
    position: relative;
}

.focus-container {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1.5fr;
    gap: 20px;
    /* background-color: white;
    border: 1px solid #e0e0e0;  
    border-radius: 5px; */
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    width: 100%;
    max-width: 100%;
}

/* 左侧推荐图文 */
.focus-left {
    position: relative;
}

.focus-left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.focus-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.focus-pagination {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #b01a07;
    border-radius: 5px;
    width: 30px;
    height: 10px;
}

/* 右侧滚动通知公告 */
.focus-right {
    background-color: #f8f9fa;
    padding: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid #145eb3;
    border-radius: 12px;   
}

.focus-right h3 {
    color: #dc3545;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #dc3545;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.focus-right h3 span {
    color: #666;
    font-size: 12px;
    font-weight: normal;
}

.announcement-list {
    list-style: none;
    /* height: 300px; */
    overflow-y: auto;
    padding-right: 10px;
}

.announcement-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.announcement-list li:last-child {
    border-bottom: none;
}

.announcement-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-list a:hover {
    color: #0464ca;
}

/* 滚动条样式 */
.announcement-list::-webkit-scrollbar {
    width: 6px;
}

.announcement-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.announcement-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.announcement-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 图片轮播容器 */
.slider-container {
    position: relative;
    width: 100%;
    height: 490px;
    overflow: hidden;
    border-radius: 12px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-item {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 公告滚动样式 */
.scroll-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.scroll-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scroll-up 30s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 鼠标悬停暂停滚动 */
.scroll-container:hover .scroll-wrapper {
    animation-play-state: paused;
}

/* 红色横幅标语 */
.red-banner { 
    color: white;
    text-align: center; 
    margin: 20px 0; 
    overflow: hidden;
}

.red-banner .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    background-color: #0464ca;
    color: white;
    padding: 15px 0;
    border-radius: 12px;
    background-image: url('images/lsqs.png');
    background-size: cover;
    background-position: center;
    height: 100px;
}

.red-banner2 { 
    color: white;
    text-align: center; 
    margin: 20px 0; 
    overflow: hidden;
}

.red-banner2 .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    background-color: #0464ca;
    color: white;
    padding: 15px 0;
    border-radius: 12px;
    background-image: url('images/dzwxz.png');
    background-size: cover;
    background-position: center;
    height: 100px;
}

.banner-slogan {
    font-size: 22px;
    font-weight: bold;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-slogan:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* 响应式红色横幅 */
@media (max-width: 768px) {
    .red-banner .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-slogan {
        font-size: 18px;
        padding: 8px 20px;
    }
}

/* 主要内容样式 */
main {
    /* background: rgba(255, 255, 255, 0.7) url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center top;
    background-size: cover;
    background-blend-mode: overlay; */
    padding: 20px 0;
}

/* 新闻网格布局 */
.news-grid {
    display: grid;
    grid-template-columns: 4fr 1.2fr;
    gap: 25px;
    margin-bottom: 20px;
}

/* 左侧主要新闻区域 */
.main-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* 新闻组样式 */
.news-group {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.news-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* 分类标题样式 */
.group-title {
    color: #b01a07;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid #b01a07;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* .group-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1501426026826-31c667bdf23d?ixlib=rb-4.0.3&auto=format&fit=crop&w=100&q=60') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
} */

/* .group-title::after {
    content: '📌';
    margin-left: 15px;
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
} */

.news-group-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* 新闻板块 */
.news-section {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #145eb3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-section h3 {
    color: #0464ca;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0464ca;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-section h3::before {
    content: '▶';
    color: #b01a07;
    margin-right: 8px;
    font-size: 14px;
}

/* 更多按钮样式 */
h3 span {
    font-size: 14px;
    font-weight: normal;
}

h3 span a {
    color: #666;
    text-decoration: none;
    font-weight: normal;
}

/* 新闻列表 */
.news-list {
    list-style: none;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-list a:hover {
    color: #dc3545;
}

.news-list .date {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

/* 图文新闻 */
.news-with-image {
    /* display: flex; */
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.news-with-image:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 3px;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.news-content h4 a {
    color: #333;
    text-decoration: none;
}

.news-content h4 a:hover {
    color: #dc3545;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* 右侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 小卡片新闻 */
.small-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.small-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.small-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.small-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 8px;
}

.small-card p {
    font-size: 13px;
    color: #333;
    margin: 0;
}


/* 快捷入口 */
.quick-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.quick-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    color: #333;
    font-weight: bold;
}

.quick-card:hover {
    background-color: #0464ca;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-card img {
    width: 80%;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 16px; 
    margin: 0;
}


/* 底部网格区域 */
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* 智库专家滚动区域 */
.experts-section {
    background-color: rgba(255, 255, 255, 0.9);
    /* border: 1px solid #e0e0e0;
    border-radius: 5px; */
    padding: 20px;
    margin: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.experts-section h3 {
    color: #0464ca;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0464ca;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experts-container {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    height: 230px;
    background-color: white;
    border-radius: 12px;
    padding: 15px 0;
}

.experts-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 推荐内容滚动区域 */
.recommended-section {
    /* background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px; */
    padding: 20px;
    margin: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.recommended-section h3 {
    color: #0464ca;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0464ca;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recommended-container {
    border: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    height: 200px;
    background-color: white;
    border-radius: 12px;
    padding: 15px 0;
}

.recommended-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.recommended-item {
    display: inline-block;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin: 0 30px;
    width: 300px;
    height: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.recommended-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recommended-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 10px;
}

.recommended-item h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}

/* 鼠标悬停暂停滚动 */
.recommended-container:hover .recommended-scroll {
    animation-play-state: paused;
}

.expert-item {
    display: inline-block;
    text-align: center;
    margin: 0 50px;
    width: 160px;
    border: 1px solid #145eb3;
    border-radius: 12px;
    padding: 20px;
}

.expert-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #29a682;
}

.expert-item p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* 艺术作品展示 */
.art-section {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.art-section h3 {
    color: #0464ca;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0464ca;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.art-item {
    text-align: center;
}

.art-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 8px;
}

.art-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* 上级单位板块 */
.superior-unit {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.superior-unit h3 {
    color: #0464ca;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #0464ca;
}

.unit-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.unit-item {
    text-align: center;
    padding: 15px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 150px;
}

.unit-item p {
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* 友情链接样式 */
.friend-links {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.friend-links h3 {
    color: #0464ca;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.link-item {
    background-color: white;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.link-item:hover {
    background-color: #0066cc;
    border-color: #0066cc;
}

.link-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.link-item:hover a {
    color: white;
}

/* 页脚样式 */
footer {
    background-color: #0464ca;
    color: white;
    padding: 20px 0;
    text-align: center;
    /* border-top: 5px solid #29a682; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p, .footer-section li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #555;
    font-size: 13px;
    opacity: 0.8;
}


/* 响应式页脚 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a:hover {
        transform: translateY(-3px);
        translateX(0);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .main-news {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .main-news {
        grid-template-columns: 1fr;
    }
    
    .bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 响应式头部标语 */
    .header-slogan {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .slogan-item {
        font-size: 14px;
        padding: 5px 10px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .slogan-item:last-child {
        border-bottom: none;
    }
    
    /* 响应式头部内容 */
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-search {
        margin-top: 15px;
        text-align: center;
        flex-direction: column;
    }
    
    /* 响应式导航 */
    .nav-menu a {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .focus-image {
        height: 250px;
    }
    
    .red-banner {
        font-size: 16px;
    }
    
    .bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .small-cards {
        grid-template-columns: 1fr;
    }
}