 .container {
            max-width: 1000px;
            margin: 0 auto;
			margin-top: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow:0px 0px 10px #999;
            overflow: hidden;
        }
        
        header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .main-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        
        /* 左侧图片区域 */
        .image-section {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
            border-right: 1px solid #eaeaea;
        }
        
        .image-slider {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background-color: #d32f2f; /* 红色主题 */
            transform: scale(1.2);
        }
        
        .timer-bar {
            height: 4px;
            background-color: #e0e0e0;
            margin-top: 20px;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .timer-progress {
            height: 100%;
            width: 0%;
            background-color: #d32f2f; /* 红色主题 */
            transition: width 5s linear;
        }
        
        /* 右侧标题区域 - 修改为红色主题 */
        .titles-section {
            flex: 1;
            min-width: 300px;
            padding-left: 30px;
            display: flex;
            flex-direction: column;
            height: 464px; /* 与左侧图片区域总高度相同 */
        }
        
        .section-title-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .section-title {
			text-align:left;
            font-size: 1.5rem;
            color: #d32f2f; /* 红色主题 */
            margin: 0;
        }
        
        /* 简单的"更多"文字链接 */
        .more-text {
            color: #666;
            font-size: 0.95rem;
            text-decoration: none;
        }
        
        .more-text:hover {
            color: #d32f2f;
            text-decoration: underline;
        }
        
        .titles-list {
            text-align:left;
			list-style: none;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* 平均分配五个标题的空间 */
        }
        
        .title-item {
            padding: 12px 20px; /* 减少内边距，降低高度 */
            background-color: #f9f9f9;
            border-radius: 8px;
            border-left: 4px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1; /* 每个标题项平均分配高度 */
            margin-bottom: 8px; /* 减少间距 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 70px; /* 设置最小高度 */
            text-decoration: none; /* 移除下划线 */
            color: inherit; /* 继承父元素颜色 */
        }
        
        /* 最后一个标题项不需要底部边距 */
        .title-item:last-child {
            margin-bottom: 0;
        }
        
        .title-item:hover {
            background-color: #f0f0f0;
            transform: translateX(5px);
        }
        
        .title-item.active {
            background-color: #ffebee; /* 红色主题背景 */
            border-left-color: #b71c1c; /* 暗红色边框 */
            font-weight: 700; /* 加粗 */
            color: #d32f2f; /* 红色文字 */
            box-shadow: 0 5px 10px rgba(211, 47, 47, 0.1);
        }
        
        .title-item h3 {
            font-size: 1.2rem; /* 稍微减小字体大小 */
            margin-bottom: 6px;
            line-height: 1.3;
        }
        
        .title-item p {
            color: #666;
            line-height: 1.4;
            font-size: 0.9rem; /* 稍微减小字体大小 */
        }
        
        .news-link {
            display: inline-block;
            margin-top: 8px;
            color: #d32f2f;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .news-link:hover {
            color: #b71c1c;
            text-decoration: underline;
        }
        
        .news-link i {
            margin-right: 5px;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
        }
        
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .image-section, .titles-section {
                padding: 0;
                border: none;
                margin-bottom: 30px;
                height: auto; /* 移动端取消固定高度 */
            }
            
            .image-section {
                border-bottom: 1px solid #eaeaea;
                padding-bottom: 30px;
            }
            
            .titles-section {
                padding-top: 0;
            }
            
            .titles-list {
                flex-direction: column;
            }
            
            .title-item {
                min-height: 60px;
                margin-bottom: 10px;
            }
        }