.footer_image_class{padding:60px 0 74px;background-color: #7c3030;}
.footer_image_class .t{color:#fff;}
.footer_image_class img{margin-top: 70px;max-width: 301px;max-height: 60px;}


   /* 主体容器 - 1400px宽度+自适应 */
        .container {}

        /* 左侧区域 - 修复消失问题 */
        .left-section {
            flex: 1;
            min-width: 300px; /* 小屏最小宽度 */
            
            background-color: #c91623;
            color: #fff;}

        /* 左侧底部文本 */
        .left-footer {
            
            font-size: 16px;}

        /* 右侧区域 - 按要求改样式 */
        .right-section {
            flex: 1;
            min-width: 300px;
            
            background-color: #fef7ee;}

        /* 文本列表 - 核心样式调整 */
        .text-list {
            list-style: none;}

        .text-list li {
           
            padding: 20px;
            font-size: 18px;
            color: #8c070c; /* 字体颜色 */
            border-bottom: 1px solid #fff; /* 白色下划线 */
            /* 悬浮动画过渡 */
            transition: all 0.3s ease;
            cursor: pointer;}

        /* 鼠标悬浮效果 */
        .text-list li:hover {
            background-color: #b64d3a; /* 悬浮背景色 */
            color: #fff;}

        /* 高亮标题 - 仅加粗，简化样式 */
        .text-list li:nth-child(2) {
            font-weight: bold;}

        /* 查看更多按钮 - 简化版 */
        .more-btn {
            margin-top: 30px;
            text-align: center;
            color: #8c070c;
            cursor: pointer;}

        .more-btn span {
            display: inline-flex;
            align-items: center;}

        .more-btn .circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #c91623;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;}

        /* 响应式适配 - 极简版 */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;}
            .left-footer {
                margin-top: 150px;}
            .text-list li {
                font-size: 16px;}
        }
