/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 移动端搜索栏 */
.mobile-search {
    display: none;
    padding: 10px;
    background-color: #882829;
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 1200px) {
    .mobile-search {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.search-container {
    flex: 1;
    display: flex;
    background: #fff;
    border-radius: 5px;
    padding: 6px 10px;
    align-items: center;
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.search-icons {
    display: flex;
    align-items: center;
}

.verify-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.search-icon {
    width: 16px;
    height: 16px;
}

.toolbox-btn {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toolbox-btn img {
    width: 24px;
    height: 24px;
}

/* 头部样式 */
header {
    background: #882829;
    /* padding: 20px 0 0; */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 20px 40px;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.logo img {
    /* height: 50px; */
    width: 456px;
    height: 70px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    font-weight: normal;
}

.nav-toggle {
    display: none;
}

/* 主要内容区域 */
main {
    max-width: 100%;
    /* margin: 30px auto; */
    padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

/* 内容区域 */
.content {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #882829;
}

/* 文章元数据 */
.article-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    margin-right: 15px;
}

.article-content {
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.article-nav p {
    max-width: 45%;
}

/* 页脚 */
footer {
    background: #882829;
    padding: 40px 0;
    color: white;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    width: 456px;
    height: 70px;
}

.footer-info {
    text-align: left;
}

.footer-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-icon {
    width: 14px;
    height: 18px;
    margin-right: 10px;
    background-color: transparent;
    flex-shrink: 0;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: left;
}

/* 响应式设计 - 所有尺寸 */
/* 超大屏幕 (1920px以上) */
@media screen and (min-width: 1921px) {
    main {
        max-width: 100%;
        padding: 0px;
        background-image: url('../newimages/pc1m2x.png');
    }
    
    .header-container, .main-nav ul, .banner, .news-section, .notice-section, .bottom-sections, .quick-links, .footer-content {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-headersection-header11{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/zhxw2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
}

/* 大屏幕 (1920px到1401px) */
@media screen and (min-width: 1401px) and (max-width: 1920px) {
    main {
        max-width: 100%;
        padding: 0px;
        background-image: url('../newimages/pc1m2x.png');
    }
    
    .header-container, .main-nav ul, .banner, .news-section, .notice-section, .bottom-sections, .quick-links, .footer-content {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner {
        height: 500px;
    }
    
    .banner-text h2 {
        font-size: 48px;
    }
    
    .news-featured {
        height: 380px;
    }
    
    .news-item {
        /* margin-bottom: 15px; */
    }
    
    .news-date .day {
        font-family: Arial;
        font-weight: 400;
        font-size: 34px;
        color: #882829;
      
    }
    .section-headersection-header{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/zhxw2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    .section-headersection-header11{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/zhxw2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    .section-headersection-header2{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/pcsch2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    
}

/* 中等屏幕 (1400px到1201px) */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    main {
        max-width: 100%;
        padding: 0 15px;
        background-image: url('../newimages/pc1m2x.png');
    }
    
    .header-container, .banner, .news-section, .notice-section, .bottom-sections, .quick-links, .footer-content {
        max-width: 100%;
        width: 100%;
    }
    
    .banner {
        height: 450px;
    }
    
    .banner-text h2 {
        font-size: 42px;
    }
    
    .news-featured {
        height: 350px;
    }
    
    .news-item {
        margin-bottom: 12px;
    }
    
    .section-headersection-header{
        height: 31px;
        width: 31px;
        margin-right: 10px;
        background: url('../newimages/PCfirstM2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    
    .quick-links img {
        width: 35px;
        height: 35px;
    }
 
}

/* PC端样式 */
@media screen and (min-width: 1201px) {
    .mobile-search, .mobile-content, .mobile-menu {
        display: none;
    }
    
    /* 确保PC内容在PC视图下显示 */
    header, .main-nav, .banner, main .news-section, main .notice-section, .bottom-sections, main .quick-links, footer {
        display: block;
    }
    .section-headersection-header11{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/zhxw2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    .section-headersection-header22{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/notice2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    .section-headersection-header2{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/pcsch2x.png') no-repeat center center;
        background-size: cover; /* 让图片覆盖整个容器 */
    }
    .section-headersection-header23{
        height: 31px;
        width: 31px;
        margin-right: 10px; 
        background: url('../newimages/mediaus2x.png') no-repeat center center;
        background-size:contain; /* 让图片覆盖整个容器 */
    }
    .news-info{
   
        margin-top: 10px;
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        text-align: justify;
        padding-right: 5px;
        line-height: 27px;
        /* 2行省略 */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;

    }
}

/* 移动端 (1200px以下) */
@media screen and (max-width: 1200px) {
    /* 隐藏PC端内容 */
    header, .main-nav, .banner, main .news-section, main .notice-section, .bottom-sections, main .quick-links, footer {
        display: none !important;
    }
    
    /* 显示移动端内容 */
    .mobile-search, .mobile-content {
        display: block !important;
    }
    
    body {
        background: #f5f5f5;
        padding-top: 60px;
    }
    
    main {
        padding: 0;
        margin: 0;
        max-width: none;
    }
    
    /* 确保所有页面在移动端下都显示移动内容 */
    .content, .breadcrumb, .article-content, .article-meta, .article-nav {
        display: none !important;
    }
}

/* 小屏幕移动端 (768px以下) */
@media screen and (max-width: 768px) {
    .mobile-banner {
        display: block;
    }
    
    .section-title h2 {
        font-size: 18px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .news-title {
        font-size: 14px;
    }
    
    .mobile-content .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-content .link-item img {
        width: 35px;
        height: 35px;
    }
    
    .news-featured {
        height: 350px;
    }
    
    .news-overlay h4 {
        font-size: 16px;
    }
    
    .mobile-content .link-text {
        font-size: 12px;
    }
    
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .link-item img {
        width: 35px;
        height: 35px;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
    
    .notice-day {
        font-size: 20px;
    }
    
    .notice-title h4 {
        font-size: 14px;
    }
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-right: 15px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 横幅区域 - 轮播图 */
.banner {
    width: 100%;
    max-width: 1920px; /* 设置最大宽度为1920px */
    height: 760px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    padding: 50px 30px 30px;
    color: white;
    z-index: 1;
}

.banner-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.banner .swiper-pagination {
    bottom: 20px;
}

.banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 24px;
}

.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* 章节标题 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
}

.section-title img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}



.more {
    /* color: #999;
    font-size: 14px;
    display: flex;
    align-items: center; */
    background: url('../newimages/pcmore2x.png') no-repeat center center;
    background-size: contain; /* 确保整个图片可见 */
    width: 80px;
    height: 28px;
}
.more2{
    background: url('../newimages/pcwhitemore.png') no-repeat center center;
    background-size: contain; /* 确保整个图片可见 */
    width: 80px;
    height: 28px;
}

.more:hover {
    color: #882829;
}

/* 综合新闻 */
.news-section {
    margin-bottom: 30px;
   
    padding: 70px 0px 20px;
    border-radius: 5px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 新闻容器 */
.news-container {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 特色新闻 */
.news-featured {
    max-width: 780px;
    width: 100%;
    height: 552px;
    position: relative;
    overflow: hidden;
    /* border-radius: 5px; */
    margin-right: 80px;
}

.news-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured .swiper,
.news-featured .swiper-wrapper,
.news-featured .swiper-slide {
    height: 100%;
    width: 100%;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 20px;
    /* display: flex; */
    /* align-items: flex-end; */
}

.news-overlay h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.news-featured .swiper-pagination {
    bottom: 20px;
    width: 10%;
    left: 86%;
}

.news-featured .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.news-featured .swiper-pagination-bullet-active {
    background: #fff;
}

/* 新闻列表 */
.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    min-width: 300px;
}

/* 新闻项 */
.news-item {
    width: 541px;
    display: flex;
    /* margin-bottom: 10px; */
    padding-bottom: 14px;
    padding-top: 13px;
    padding-left: 13px;
    padding-right: 10px;
    /* border-bottom: 1px solid #eee; */
}
.news-item:hover {
    background-color: #882829;
    color: #fff;
}
.news-item:hover .news-date .day{
    color: #fff !important;
}
.news-item:hover .news-date .date{
    color: #fff !important;
}
.news-item:hover .news-info{
    color: #fff !important;
}

/* 新闻日期 */
.news-date {
    margin-right: 15px;
    text-align: center;
}

.news-date .day {
    font-family: Arial;
font-weight: 400;
font-size: 34px;

    color: #882829;

}

.news-date .date {
    font-size: 12px;
    color: #882829;
    margin-top: -5px;
}

.news-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* 通知公告 */
.notice-section {
    margin-top: 40px;
    /* background-color: #fff; */
    border-radius: 0;
    padding: 15px 0;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h3 {
    color: #882829;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.notice-card {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 160px;
}

.notice-card:hover {
    /* background-color: #882829; */
    background-image: url(../newimages/hoverimg.png);
    color: #fff;
}
.notice-card:hover .notice-day{
    color: #fff !important;
}


.notice-card:hover .notice-title h4,
.notice-card:hover .notice-month {
    color: #fff;
}

.notice-card:hover .notice-tag {
    background-color: #882829;
    color: #fff;
    border: 1px solid #fff;
}

.notice-highlight {
    background-color: #882829;
    color: #fff;
}

.notice-highlight .notice-title h4,
.notice-highlight .notice-month {
    color: #fff;
}

.notice-date {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    padding: 0 10px;
}

.notice-day {
    font-family: Arial;
    font-weight: 400;
    font-size: 38px;
    color: #882829;
    /* color: inherit; */
    margin-right: 5px;
}


.notice-month {
    font-family: Arial;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    transition: color 0.3s ease;
}

.notice-tag {
    position: absolute;
    top: 25px;
    right: 35px;
    border: 1px solid #882829;
    /* background-color: #f0f0f0; */
    color: #882829;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.notice-highlight .notice-tag {
    background-color: #fff;
    color: #882829;
}

.notice-title {
    /* margin-top: 20px; */
    padding: 0 20px;
    text-align: justify;
}

.notice-title h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .notice-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
    
    .notice-day {
        font-size: 20px;
    }
    
    .notice-title h4 {
        font-size: 14px;
    }
}

/* 底部区域 */
.bottom-sections {
    background-color: #882829;
    padding: 30px 0;
    overflow: hidden;
}

.bottom-sections .container {
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; */
}

.gallery-section {
    float: left;
    width: 48%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 20px 15px 0px;
}

.social-section {
    float: right;
    width: 52%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 0px;
}

.bottom-sections .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: none;
}

.bottom-sections .section-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.bottom-sections .section-header h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.social-section .section-header h3:before {
    background-image: url('../newimages/social-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.bottom-sections .more {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    background-image: url('../newimages/more-white.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
}

.bottom-sections .more:hover {
    opacity: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    height: 400px;
    position: relative;
}

.social-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
    border: none;
    box-shadow: none;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 15px 10px 8px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.social-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.social-item-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.social-item-bottom-container {
    /* grid-column: 2 / 3;
    grid-row: 2 / 3; */
    position: relative;
    display: flex;
    gap: 10px;
}

.social-item-bottom-left,
.social-item-bottom-right {
    width: calc(50% - 5px);
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 15px;
    height: 498px;
}

.gallery-item, .social-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}


.gallery-item {
    height: 100%;
}

.gallery-item img {
  
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  
 
}
.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
 
 
}

.gallery-item:hover img, .social-item:hover img {
    transform: scale(1.05);
}

.gallery-caption, .social-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.gallery-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 15px 15px;
    display: flex;
}

.social-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 15px 10px 8px;
    display: flex;
}

/* 快速链接 */
.quick-links {
    margin-top: 40px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.quick-links-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    transition: transform 0.3s;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    color: #a80000;
}

.quick-link-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.quick-link-item span {
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .quick-link-item img {
        width: 30px;
        height: 30px;
    }
    
    .quick-link-item span {
        font-size: 12px;
    }
}

/* 移动端内容样式 */
.mobile-content {
    display: none;
    width: 100%;
    background-color: #f5f5f5;
}

@media screen and (max-width: 1200px) {
    .mobile-content {
        display: block;
    }
}

/* 移动端轮播图 */
.mobile-banner {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mobile-banner-swiper {
    width: 100%;
    height: 100%;
}

.mobile-banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.mobile-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-banner .swiper-pagination {
    bottom: 10px;
}

.mobile-banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 3px;
}

.mobile-banner .swiper-pagination-bullet-active {
    background: #fff;
}

.mobile-banner .swiper-button-next,
.mobile-banner .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.mobile-banner .swiper-button-next:after,
.mobile-banner .swiper-button-prev:after {
    font-size: 14px;
}

/* 移动端区块通用样式 */
.mobile-section {
    margin: 0;
    padding: 15px;
    /* background-color: #fff; */
    margin-bottom: 10px;
}

.mobile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
.mobile-section-header3 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 15px; */
    padding-top: 20px;
}

.mobile-section-title {
    display: flex;
    align-items: center;
}

.mobile-section-title img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mobile-section-title h2 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.mobile-more-link {
    display: flex;
    align-items: center;
}

.mobile-more-link img {
    /* width: 18px; */
    height: 18px;
}

/* 移动端综合新闻 */
.mobile-featured-news {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.mobile-featured-news img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.mobile-featured-title {
    padding: 10px 0;
}

.mobile-featured-title h3 {
    margin: 5px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.4;
}

.mobile-featured-title p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.tag {
    display: inline-block;
    padding: 2px 5px;
    background-color: #882829;
    color: white;
    font-size: 12px;
    border-radius: 3px;
}

.mobile-news-list {
    width: 100%;
}

.mobile-news-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.mobile-news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-width: 50px;
}

.mobile-day {
    font-size: 22px;
    font-weight: bold;
    color: #882829;
}

.mobile-month {
    font-size: 12px;
    color: #999;
}

.mobile-news-info {
    flex: 1;
    padding-top: 4px;
}

.mobile-news-tag {
    display: inline-block;
    padding: 2px 5px;
    background-color: #882829;
    color: white;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.mobile-news-title {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* 移动端通知公告 */
.mobile-notice-list {
    width: 100%;
}

.mobile-notice-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-notice-content {
    position: relative;
}

.mobile-notice-title {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
}

.mobile-notice-date {
    font-size: 12px;
    color: #999;
    margin-right: 10px;
}

.mobile-notice-tag {
    display: inline-block;
    padding: 1px 5px;
    background-color: #882829;
    color: white;
    font-size: 12px;
    border-radius: 3px;
}

/* 移动端学院简介 */
.mobile-college-intro {
    width: 100%;
}

.mobile-college-intro img {
    width: 100%;
    height: 100%;
  
    margin-bottom: 10px;
}

.mobile-college-intro p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 10px 0;
}

/* 移动端社交媒体 */
.mobile-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-social-item {
    position: relative;
}

.mobile-social-item img {
    width: 100%;
    /* height: auto; */
    /* border-radius: 5px; */
}

/* 移动端常用链接 */
.mobile-quick-links {
    /* background-color: white; */
    padding: 20px 25px;
    margin-bottom: 10px;
}

.mobile-links-wrapper {
    padding: 20px 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.mobile-link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: black;
}

.mobile-link-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    margin-right: 0;
}

.mobile-link-item span {
    font-size: 12px;
    text-align: center;
}

/* 移动端页脚 */
.mobile-footer {
    background-color: #882829;
    color: white;
    padding: 15px;
    margin-top: -15px;
}

.mobile-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-footer-left {
    text-align: center;
}

.mobile-footer-logo {
    width: 180px;
    height: auto;
}

.mobile-footer-info {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.mobile-footer-info p {
    margin: 5px 0;
}

/* 小于768px的额外调整 */
@media screen and (max-width: 768px) {
    .mobile-footer-logo {
        margin-top: 10px;
        width: 270px;
    }
    
    .mobile-footer-info {
        font-size: 11px;
    }
}

/* 媒体查询 - 隐藏PC端内容，显示移动端内容 */
@media screen and (max-width: 1200px) {
    header, .main-nav, .banner, main .news-section, 
    main .notice-section, .bottom-sections, 
    main .quick-links, footer, .link1, .bannersize {
        display: none;
    }
}

@media screen and (min-width: 1201px) {
    .mobile-search, .mobile-content, .mobile-menu, .mobile-header {
        display: none;
    }
}

/* 较小屏幕的移动端调整 */
@media screen and (max-width: 400px) {
    .mobile-links-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-day {
        font-size: 18px;
    }
    
    .mobile-news-title {
        font-size: 13px;
    }
}

/* 常用链接 */
.common-links {
    background-color: #882829;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
    margin-top: 0;
    box-shadow: none;
}

.common-links-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 109px;
    padding: 0;
    background-color: white;
}

.common-link-item {
    display: flex;

    align-items: center;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    padding: 0 20px;

    height: 100%;
    transition: color 0.3s;
    position: relative;
}

.common-link-item.active {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    background-color: transparent;
    border: none;
    padding: 0 25px;
}

.common-link-item.active:after {
    display: none;
}

.common-link-item:first-child:before {
    display: none;
}

.common-link-item:hover {
    color: #882829;
    opacity: 0.9;
    background-color: transparent;
}

.common-link-item img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

@media screen and (max-width: 1200px) {
    .common-links {
        display: none;
    }
    
}

@media screen and (max-width: 1024px) {
    .bottom-sections {
        padding: 20px 0;
    }
    
    .gallery-section, .social-section {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        gap: 15px;
    }
    
    .social-item {
        height: 200px;
    }
    
    .social-item-large {
        grid-column: 1;
        grid-row: 1;
        height: 250px;
    }
    
    .social-item-top {
        grid-column: 1;
        grid-row: 2;
    }
    
    .social-item-bottom-container {
        grid-column: 1;
        grid-row: 3;
        flex-direction: column;
        height: auto;
    }
    
    .social-item-bottom-left,
    .social-item-bottom-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .social-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
    
    /* 左侧大盒子 */
    .social-item:nth-child(1) {
        height: 498px;
        width: 280px;
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    
    /* 右上盒子 */
    .social-item:nth-child(2) {
        height: 329px;
        width: 448px;
        grid-column: 2;
        grid-row: 1;
    }
    
    /* 右下区域 - 包含第3和第4个盒子 */
    .social-grid > :nth-child(3),
    .social-grid > :nth-child(4) {
        height: 160px;
        width: 220px;
        grid-row: 2;
        grid-column: 2;
    }
    
    /* 右下第一个小盒子 - 左侧 */
    .social-grid > :nth-child(3) {
        justify-self: start;
    }
    
    /* 右下第二个小盒子 - 右侧 */
    .social-grid > :nth-child(4) {
        justify-self: end;
    }

    .social-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1199px) {
    .pc-content {
        display: none;
    }
    
    .mobile-content {
        display: block;
        background-color: #f5f5f5;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    /* 移动端顶部导航 */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 15px;
        background-color: #882829; /* 更改为红色背景 */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .mobile-logo img {
        height: 35px; /* 调整logo高度 */
        filter: brightness(0) invert(1); /* 将logo变为白色 */
    }
    
    .mobile-nav-icons {
        display: flex;
        gap: 15px;
    }
    
    .mobile-nav-icons img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1); /* 将图标变为白色 */
    }
    
    /* 移动端轮播图 */
    .mobile-banner {
        width: 100%;
        height: auto;
        margin-bottom: 0; /* 减少底部间距 */
    }
    
    /* 移动端内容区块通用样式 */
    .mobile-section {
        /* background-color: #fff; */
        margin-bottom: 10px; /* 减少间距 */
        padding: 10px 15px; /* 调整内边距 */
    }
    
    .mobile-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee; /* 添加底部边框 */
        padding-bottom: 8px;
    }
    
    .mobile-section-title {
        display: flex;
        align-items: center;
    }
    
    .mobile-section-title h2 {
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: 18px;
        color: #333333;
    }
    
    /* 移动端综合新闻 */
    .mobile-news-list {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
    }
    
    .mobile-news-item {
        display: flex;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        /* align-items: center; */
    }
    
    .mobile-news-date {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        margin-right: 10px;
    }
    
    .mobile-day {
        font-size: 18px;
        font-weight: bold;
        color: #882829; /* 更改为红色 */
    }
    
    .mobile-month {
        font-size: 12px;
        color: #882829;
    }
    
    .mobile-news-title {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 移除移动搜索框相关样式 */
    .mobile-search {
        display: none !important;
    }
    
    /* 移动端新闻轮播图 */
    .mobile-news-featured {
        width: 100%;
        height: 220px;
        position: relative;
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    
    .mobile-news-featured .swiper,
    .mobile-news-featured .swiper-wrapper,
    .mobile-news-featured .swiper-slide {
        height: 100%;
        width: 100%;
    }
    
    .mobile-news-featured img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-news-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: #fff;
        padding: 15px;
        display: flex;
        align-items: flex-end;
    }
    
    .mobile-news-overlay h4 {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        line-height: 1.4;
        display: -webkit-box;
                                    -webkit-line-clamp: 1;
                                    -webkit-box-orient: vertical;
                                    overflow: hidden;
                                    text-overflow: ellipsis;

    }
    
    .mobile-news-featured .swiper-pagination {
        bottom: 5px;
    }
    
    .mobile-news-featured .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
    
    .mobile-news-featured .swiper-pagination-bullet-active {
        background: #fff;
    }
    
    /* 移动端通知公告 */
    .mobile-notice-list {
        margin-top: 15px;
    }
    
    .mobile-notice-item {
        background-color: #fff;
        /* border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        padding: 12px 15px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-notice-date {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    
    .mobile-notice-day {
        color: #882829;
        font-size: 23px;
        font-weight: bold;
        margin-right: 5px;
        font-family: Arial;
    }
    
    .mobile-notice-month {
        color: #000000;
        font-size: 12px;
        font-family: Arial;
font-weight: 400;
margin-top: 10px;

    }
    
    .mobile-notice-content {
        width: 100%;
        position: relative;
    }
    
    .mobile-notice-title {
        font-size: 15px;
        color: #333;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .mobile-notice-tag {
        position: absolute;
        top: -33px;
        right: 0;
        background-color: #fff;
        color: #882829;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        border: 1px solid #882829;
    }

    /* 移动端社交媒体 */
    .mobile-social-section {
        background-color: #882829;
        padding: 15px;
        margin: 0;
        width: 100%;
    }

    .mobile-social-section .mobile-section-header {
        border-bottom: none;
        padding-bottom: 15px;
    }

    .mobile-social-section .mobile-section-title h2 {
        color: #fff;
        font-weight: bold;
        /* margin-left: 10px; */
    }

    .mobile-social-container {
        display: flex;
        gap: 5px;
        width: 100%;
        height: 230px;
        position: relative;
    }

    /* 第一个盒子 - 左侧大盒子 */
    .mobile-social-container .mobile-social-item:nth-child(1) {
        width: 38%;
        height: 100%;
    }

    /* 第二个盒子 - 右上盒子 */
    .mobile-social-container .mobile-social-item:nth-child(2) {
        width: 61%;
        height: 150px;
        position: absolute;
        right: 0;
        top: 0;
    }

    /* 右下两个盒子的共同样式 */
    .mobile-social-container .mobile-social-item:nth-child(3),
    .mobile-social-container .mobile-social-item:nth-child(4) {
        height: 75px;
        width: calc(30.5% - 2.5px);
        position: absolute;
        bottom: 0;
    }

    /* 第三个盒子 - 右下左盒子 */
    .mobile-social-container .mobile-social-item:nth-child(3) {
        right: 30.5%;
    }

    /* 第四个盒子 - 右下右盒子 */
    .mobile-social-container .mobile-social-item:nth-child(4) {
        right: 0;
    }

    /* 图片铺满盒子 */
    .mobile-social-item {
        overflow: hidden;
        position: relative;
    }

    .mobile-social-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* 确保PC版本在大屏幕上显示 */
@media screen and (min-width: 1200px) {
    .mobile-content {
        display: none;
    }
    
    .pc-content {
        display: block;
    }
}

/* 移动端导航菜单 */
.mobile-nav {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    padding: 8px 0;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mobile-nav .nav-item {
    text-align: center;
}

.mobile-nav .nav-item a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 5px 10px;
}

.mobile-nav .nav-item a.active {
    color: #882829;
    font-weight: bold;
    position: relative;
}

.mobile-nav .nav-item a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #882829;
}

/* 移动端下拉菜单 */
.mobile-dropdown-menu {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-dropdown-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #882829;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.menu-close img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-bottom: 1px solid #eee;
}

.menu-list li a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.menu-list li a.active {
    color: #882829;
    font-weight: bold;
}

.menu-list .has-submenu > a:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.menu-list .has-submenu.open > a:after {
    transform: translateY(-50%) rotate(-135deg);
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
}

.has-submenu.open .submenu {
    display: block;
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    padding: 12px 20px 12px 30px;
    font-size: 14px;
}

/* 菜单遮罩层 */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

.menu-close .close-icon {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 20px;
}

.icon-text {
    font-size: 24px;
    color: #fff;
    line-height: 1;
}
.mobile-search-icon{
    background: url('../newimages/wapheadsearch2x.png') no-repeat center center;
    background-size: contain; /* 让图片覆盖整个容器 */
    width: 23px;
}   
/* 
.mobile-search-icon .icon-text {
    font-size: 20px;
} */

/* 搜索弹出框 */
.search-popup {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.search-popup.active {
    left: 0;
}

.search-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #882829;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.search-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.search-close .close-icon {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 20px;
}

.search-popup-content {
    padding: 20px 15px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.search-button {
    background-color: #882829;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #6a1f20;
}

/* 移动端学院简介 */
@media screen and (max-width: 1199px) {
    .mobile-college-section {
        background-color: #882829;
        padding: 15px;
        margin-bottom: -1px;
        width: 100%;
    }

    .mobile-college-section .mobile-section-header {
        border-bottom: none;
        padding-bottom: 15px;
    }

    .mobile-college-section .mobile-section-title h2 {
        color: #fff;
        font-weight: bold;
        /* margin-left: 10px; */
    }

    .mobile-college-intro {
        width: 100%;
        position: relative;
        height: 262px;
    }

    .mobile-college-intro img {
        width: 100%;
        height: 100%;
       
        margin-bottom: 0;
    }

    .mobile-college-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        /* background-color: rgba(0, 0, 0, 0.5); */
        background: linear-gradient(0deg, #000000 0%, rgba(0,0,0,0) 100%);
        color: #fff;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        border-radius: 0 0 5px 5px;
    }

    .college-icon {
        margin-right: 10px;
        font-size: 16px;
    }

    .college-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* 移动端社交媒体 */
.mobile-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-social-item {
    position: relative;
}

.mobile-social-item img {
    width: 100%;
    /* height: auto; */
    /* border-radius: 5px; */
}

/* 移动端常用链接 */
.mobile-quick-links {
    /* background-color: white; */
    padding: 20px 25px;
    margin-bottom: 10px;
}

.mobile-links-wrapper {
    padding: 5px 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.mobile-link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: black;
}

.mobile-link-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    margin-right: 0;
}

.mobile-link-item span {
    font-size: 12px;
    text-align: center;
}

/* 移动端页脚 */
.mobile-footer {
    background-color: #882829;
    color: white;
    padding: 15px;
    margin-top: -15px;
}

.mobile-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-footer-left {
    text-align: center;
}

.mobile-footer-logo {
    width: 180px;
    height: auto;
}

.mobile-footer-info {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.mobile-footer-info p {
    margin: 5px 0;
}

/* 小于768px的额外调整 */
@media screen and (max-width: 768px) {
    .mobile-footer-logo {
        margin-top: 10px;
        width: 270px;
    }
    
    .mobile-footer-info {
        font-size: 11px;
    }
} 