 /* 全局样式：国潮基调（暖米色背景+书法字体） */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", "Ma Shan Zheng", cursive, sans-serif;
			text-decoration: unset;
			color: unset;
        }
        .xf_box { 
            color: #333;
			background-image: url('../img/bg1.png');
			background-repeat: no-repeat;
			background-size: 100% 100%;
        }
        .container {
            width: 1200px;
			min-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			padding-bottom: 100px;
        }

        /* 1. Banner区域：国潮主视觉 */
        .banner {
            width: 100%;
            height: 800px;
            background: url('../img/banner.png') no-repeat center center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .banner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; 
        }
        .banner-content {
            position: relative;
            z-index: 2;
        }
        .banner-title {
            font-size: 60px;
            font-weight: normal;
            line-height: 1.2;
            margin-bottom: 10px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        .banner-subtitle {
            font-size: 24px;
            margin-bottom: 20px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }
        .banner-decor {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            background: url('https://picsum.photos/80/80?random=101') no-repeat center;
            background-size: contain;
        }

        /* 通用板块标题：国潮祥云装饰 */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            position: relative;
            font-size: 32px;
            color: #d22; /* 国潮红色标题 */
        }
		.sections-title{
			text-align: center;
			margin: 60px 0 40px;
			position: relative;
			font-size: 32px;
			color: #d22; /* 国潮红色标题 */
		}
        .section-title::before, .section-title::after {
            content: "";
            position: absolute;
            top: 30%;
            transform: translateY(-50%);
            width: 168px;
                height: 45px;
            background: url('../img/img1.png') no-repeat center;
            background-size: contain;
        }
        .section-title::before {
            left:129px;
			transform: translateY(-50%);
			background: url('../img/img2.png') no-repeat center;
			background-size: contain;
        }
        .section-title::after {
            right: 128px;
            transform: translateY(-50%) ; /* 镜像祥云 */
        }

        /* 2. 活动介绍板块 */
        .activity-intro {
            display: flex;
            gap: 30px;
            margin-bottom: 80px;
			background: #fff;
			padding: 20px;
        }
        .activity-img {
            width: 350px;
            height: 220px; 
            border-radius: 2px;
            overflow: hidden;
        }
        .activity-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .activity-text {
            flex: 1;
            line-height: 1.8;
            font-size: 18px;
            color: #444;
            padding-top: 10px;
			text-indent: 35px;
        }

        /* 3. 领导致辞板块：轮播样式（核心新增/修改） */
        .leader-speech {
            margin-bottom: 80px; 
            border-radius: 10px;
            background: #fff;
            position: relative;
            /* 新增：轮播容器基础样式 */
            overflow: hidden;
			background: url('../img/bg2.png') no-repeat center;
			background-size: cover;
        }
     
        /* 轮播内容容器 */
        .speech-carousel {
            display: flex;
            transition: transform 0.5s ease; /* 轮播过渡动画 */
            width: 100%;
        }
        /* 轮播单页内容 */
        .speech-item {
            flex: 0 0 100%; /* 每一页占满容器宽度 */
            display: flex;
            gap: 30px;
        }
        .leader-photo {
		   width: 518px;
		   height: 314px;
            border-radius: 2px;
            overflow: hidden;
			margin: 0 auto;
        }
        .speech-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .speech-text {
            flex: 1;
            line-height: 1.8;
            font-size: 18px;
            color: #444;
            text-indent: 2em;
			padding:20px 30px;
        }
        /* 轮播切换按钮 */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 250, 240, 0.8);
            border: 2px solid #f8c566;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            font-size: 20px;
            color: #d22;
        }
        .prev-btn {
            left: 10px;
        }
        .next-btn {
            right: 10px;
        }
        /* 轮播指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #eee;
            border: 1px solid #f8c566;
            cursor: pointer;
        }
        .indicator-dot.active {
            background: #d22; /* 激活态红色 */
        }

        /* 4. 媒体聚焦板块 */
        .media-focus {
            margin-bottom: 80px;
        }
        .media-wrap {
            display: flex;
            gap: 30px;
			background: #fff;
			padding: 20px;
			position: relative;
        }
        .media-video {
            width: 400px;
            height: 250px; 
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .media-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .play-btn::after {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #d22;
        }
        .media-list {
            flex: 1;
            list-style: none;
        }
        .media-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #f8c566;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
       /* .media-list li:last-child {
            border-bottom: none;
        } */
        .media-date {
            color: #999;
            font-size: 14px;
			min-width: 100px;
			    text-align: right;
        }
		.ts_s{
			width: 650px;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
			display: inline-block;
		}
		.media-section{
			position: relative;
			padding-bottom: 100px;
		}
        .more-btn {
			position: absolute;
            display: block;
            margin: 20px auto 0;
            padding: 8px 20px; 
            color: #333;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
			right: 21px;
			bottom: 110px;
			background: transparent;
        }