
        /* 基础布局优化 */
        .blogs.left-box {
            padding: 0 10px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 直播列表容器美化 */
        .liveview {
            margin-bottom: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: none;
            background: #fff;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .liveview:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        /* 标题栏美化 */
        .liveview .panel-title {
            /* background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%); */
            padding: 15px 20px;
            border-bottom: 1px solid #f0f2f5;
            position: relative;
        }
        .liveview .panel-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #0778b8;
            border-radius: 0 4px 4px 0;
        }
        .liveview .panel-title h2 {
            font-size: 17px;
            margin: 0;
            color: #2d3748;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .liveview .panel-title h2::after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #0778b8;
            margin-left: 10px;
        }

        /* 列表内容区域 */
        .liveview .panel-body {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .liveview .panel-body li {
            padding: 14px 20px;
            border-bottom: 1px solid #f7f8fa;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
            position: relative;
        }
        .liveview .panel-body li:last-child {
            border-bottom: none;
        }
        /* 悬停效果 */
        .liveview .panel-body li:hover {
            background: #f8fafc;
            padding-left: 22px;
        }
        .liveview .panel-body li div {
            display: flex;
            align-items: center;
            width: 100%;
            flex-wrap: wrap;
        }

        /* 时间样式增强 */
        .liveview time {
            display: inline-block;
            width: 70px;
            font-size: 14px;
            color: #4a5568;
            font-weight: 600;
            text-align: center;
            margin-right: 15px;
            background: #f0f2f5;
            padding: 4px 8px;
            border-radius: 6px;
        }

        /* 赛事名称样式 */
        .liveview li div a:first-of-type {
            font-size: 12px;
            color: #718096;
            margin-right: 15px;
            white-space: nowrap;
            padding: 2px 8px;
            background: #f5f6f7;
            border-radius: 4px;
        }

        /* 对阵信息容器 */
        .match-info {
            display: flex;
            align-items: center;
            flex: 1;
            margin: 0 15px;
        }

        /* 队伍图标美化 */
        .team-logo {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 8px;
            border: 2px solid #f0f2f5;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
        }
        .liveview li:hover .team-logo {
            transform: scale(1.1);
        }

        /* 空图标占位优化 */
        .team-logo-placeholder {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5f6f7 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #adb5bd;
            font-size: 11px;
            margin: 0 8px;
            border: 2px solid #f0f2f5;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* 队伍名称样式 */
        .team-name {
            font-size: 15px;
            color: #2d3748;
            white-space: nowrap;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .liveview li:hover .team-name {
            color: #0778b8;
        }

        /* VS样式美化 */
        .vs-text {
            margin: 0 12px;
            font-size: 13px;
            color: #94a3b8;
            font-weight: 700;
            padding: 2px 8px;
            background: #f0f2f5;
            border-radius: 4px;
            letter-spacing: 1px;
        }

        /* 直播状态样式增强 */
        .live-status {
            padding-left: 20px !important;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            position: relative;
        }
        /* 直播中状态特殊样式 */
        .live-status[style*="red"] {
            display: flex;
            align-items: center;
        }
        .live-status[style*="red"]::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: red;
            margin-right: 6px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* 热门文字标签样式 */
        .popular-tag {
            margin-left: 10px;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            background: #ff7a45;
            border-radius: 4px;
            white-space: nowrap;
            animation: shake 2s infinite ease-in-out;
        }
        @keyframes shake {
            0%, 100% { transform: rotate(0); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }

        /* ======================== 移动端样式（重点美化） ======================== */
        @media (max-width: 768px) {
            /* 基础容器适配 - 优化边距和宽度 */
            .blogs.left-box {
                padding: 0 8px;
                margin: 0;
                width: 100%;
            }

            /* 列表容器 - 提升视觉质感 */
            .liveview {
                margin: 8px 0;
                border-radius: 10px;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
                transition: none; /* 移除动画避免卡顿 */
            }
            .liveview:hover {
                transform: none;
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
            }

            /* 标题栏 - 精简且突出 */
            .liveview .panel-title {
                padding: 12px 16px;
                background: #fff;
                border-bottom: 1px solid #f5f5f5;
            }
            .liveview .panel-title h2 {
                font-size: 16px;
                color: #333;
            }
            .liveview .panel-title h2::after {
                width: 7px;
                height: 7px;
                margin-left: 8px;
            }

            /* 列表项 - 优化触控和排版 */
            .liveview .panel-body li {
                padding: 14px 16px;
                border-bottom: 1px solid #f8f8f8;
                min-height: 70px; /* 增大触控区域 */
                align-items: center;
            }
            .liveview .panel-body li:hover {
                background: #fafafa;
                padding-left: 16px; /* 移除偏移避免跳动 */
            }
            .liveview .panel-body li div {
                flex-wrap: nowrap; /* 禁止换行 */
                overflow: hidden; /* 防止内容溢出 */
                align-items: center;
            }

            /* 时间 - 更醒目且紧凑 */
            .liveview time {
                width: 60px;
                font-size: 14px;
                margin-right: 10px;
                padding: 5px 8px;
                border-radius: 6px;
                background: #f0f7ff;
                color: #0778b8;
                font-weight: 600;
                flex-shrink: 0; /* 防止被压缩 */
            }

            /* 赛事名称 - 移动端隐藏，优先展示核心内容 */
            .liveview li div a:first-of-type {
                display: none;
            }

            /* 对阵信息 - 核心优化，提升观看度 */
            .match-info {
                margin: 0;
                flex: 1;
                justify-content: center; /* 居中展示 */
                padding: 0 5px;
            }

            /* 队伍图标 - 优化尺寸和视觉 */
            .team-logo, .team-logo-placeholder {
                width: 30px;
                height: 30px;
                margin: 0 6px;
                border: 1px solid #e8e8e8;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
            }
            .liveview li:hover .team-logo {
                transform: none; /* 移除缩放避免卡顿 */
            }

            /* 队伍名称 - 防溢出+加粗+醒目 */
            .team-name {
                font-size: 15px;
                font-weight: 600;
                color: #222;
                max-width: 80px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .liveview li:hover .team-name {
                color: #0778b8;
            }

            /* VS - 更醒目 */
            .vs-text {
                margin: 0 8px;
                font-size: 13px;
                padding: 2px 8px;
                background: #f5f5f5;
                color: #666;
                border-radius: 4px;
                font-weight: 700;
            }

            /* 直播状态 - 突出显示 */
            .live-status {
                padding-left: 10px !important;
                font-size: 14px;
                flex-shrink: 0;
                min-width: 70px;
                text-align: right;
            }
            .live-status[style*="red"]::before {
                width: 7px;
                height: 7px;
                margin-right: 5px;
            }

            /* 热门标签 - 更醒目且适配 */
            .popular-tag {
                margin-left: 8px;
                padding: 2px 6px;
                font-size: 10px;
                background: #ff673c;
                border-radius: 3px;
                animation: none; /* 移除动画节省性能 */
            }

            /* 适配刘海屏/底部安全区 */
            @supports (bottom: env(safe-area-inset-bottom)) {
                .blogs.left-box {
                    padding-bottom: env(safe-area-inset-bottom);
                    padding-left: env(safe-area-inset-left);
                    padding-right: env(safe-area-inset-right);
                }
            }
        }
