* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    /* 去掉默认下划线 */
    color: inherit;
    /* 继承父元素的文本颜色（或指定具体颜色，如 #333） */
}

body {
    /* font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif; */
    position: relative;
    overflow-x: hidden;
    background-color: #f3f1f1;
}

.m-1280 {
    max-width: 1280px;
    margin: 0 auto;
}

/* 顶部标题区域 */
.header {
    position: relative;
}

.header-main {
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-title {
    width: 68%;
    margin-left: 12%;
    z-index: 2;
}

.header-cehua {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.header-cehua .header-badge {
    width: 240px;
}



/* 主内容区域 */
.main-content {
    /* background-color: #fff; */
    padding: 30px 0 50px;
}

/* 上方区域：轮播+列表 */
.top-section {
    height: 420px;
    display: flex;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* background: radial-gradient( 0% 0% at 0% 0%, #FFFFFF 0%, #FBFCF0 100%), #FDFAF5; */
    background: linear-gradient(to bottom, #FBFCF0, #FFFFFF);
}

.hero-swiper-wrapper {
    width: 55%;
}

.hero-swiper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-swiper .swiper-slide {
    position: relative;
}

.hero-swiper img {
    width: 100%;
    display: block;
}

.swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4));
    color: #fff;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
    display: flex;

}
.swiper-caption a{
    width: 80%;
     display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-pagination {
    bottom: 15px !important;
    right: 14px !important;
    left: auto !important;
    width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 5px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* 右侧新闻列表 */
.news-list {
    width: 45%;
    padding: 30px;
}

.news-item {
    padding: 14px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-icon {
    font-size: 19px;
    flex-shrink: 0;
}

.news-item a {
    color: #333;
    font-size: 19px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item a:hover {
    color: #c41e3a;
}

/* 活动集锦标题横幅 */
.section-title-banner {
    /* margin: 30px 0 20px; */
}

.section-title-banner img {
    width: 100%;
    display: block;
}

/* 活动集锦网格 */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    margin-bottom: 40px;
    grid-auto-rows: 1fr;
}

.activity-card {
    padding: 20px 15px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-bottom: 1px dashed #ff8c3a;
    position: relative;
    min-height: 100%;
}

.activity-icon {
    color: #c41e3a;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    flex-shrink: 0;
}

.activity-text {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
}

/* 下方区域：红色故事+先进典型 */
.bottom-section {
    margin-top: 100px;
    background: #C90C01;
    height: 410px;
    margin-bottom: 209px;
}


.bottom-section-inner {
    position: relative;
}

.story-column-left {
    width: 39%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 40px 0 0 0;
}

.story-column-right {
    width: 58%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 0 0 0;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    margin-bottom: 0;
}

.column-header h2 {
    font-size: 26px;
    color: #fff;
    font-weight: bold;
}

.more-link {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.more-link:hover {
    opacity: 0.8;
}

/* 红色故事列表 */
.story-list {
    background: #fff;
    padding: 25px 30px;
    border-bottom: 4px solid #C90C01;
    overflow: visible;
    margin-left: 100px;
    height: 500px;
    border-radius: 0 56px 0 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.story-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0 10px 60px;
    margin: 0;
    min-height: 95px;
}

.story-item:last-child {
    border-bottom: none;
}

.story-item img {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 90px;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.story-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* 先进典型网格 */
.typical-grid {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 25px 30px;
    height: 500px;
    border-radius: 56px 0 0 0;
    border-bottom: 4px solid #C90C01;
}

.typical-card {
    text-align: center;
}

.typical-card img {
    width: 100%;
    max-height: 120px;
    aspect-ratio: 1;
    object-fit:contain;
    margin-bottom: 10px;
}

.typical-card p {
    font-size: 17px;
    line-height: 1.5;
    color: #333;
}

/* 群众特稿区域 */
.bottom-tegao {
    position: relative;
    margin-top: 50px;
}
.qztgdj{
    width: 196px;
    height:118px;
    /* background-color: red; */
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.qztgdj a{
    display: block;
    width: 100%;
    height: 100%;
}
.bottom-tegao>img {
    width: 100%;
    display: block;
}

.qztg {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.qztg>img {
    position: relative;
    z-index: 1;
}

.qztg-content {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    gap: 40px;
    padding: 0 70px;
}

.qztg-column {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.qztg-item {
    display: flex;
    align-items: flex-start;
     margin-bottom: 18px;
}

.qztg-dot {
    color: #000;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

.qztg-item a {
    color: #333;
    font-size: 19px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qztg-item a:hover {
    color: #c41e3a;
}