/* =========================================================
   定宽居中卡片容器（确保与上方区域宽度完全一致）
   ========================================================= */
.emp-idx-card {
    width: 1200px;                  /* 设置固定宽度（可根据您页面的真实宽度调整为 1180px 或 1200px） */
    max-width: 95%;                 /* 防止小屏幕溢出 */
    margin: 20px auto;              /* 居中对齐 */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    box-sizing: border-box;
}

/* 热门赛程标题栏 */
.emp-idx-sch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.emp-idx-sch-title {
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
    position: relative;
    padding-left: 12px;
}
.emp-idx-sch-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
    background-color: #008b8b;
    border-radius: 2px;
}
.emp-idx-sch-date {
    font-size: 13px;
    color: #008b8b;
    font-weight: 500;
}

/* 列表边框与内部行 */
.emp-idx-sch-list {
    border: 1px solid #d1e7e4;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}
.emp-idx-sch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #edf5f4;
    transition: background-color 0.2s ease;
}
.emp-idx-sch-row:last-child {
    border-bottom: none;
}
.emp-idx-sch-row:hover {
    background-color: #f4fbf9;
}

/* 对阵及比分细节 */
.emp-idx-match-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 130px;
}
.emp-idx-match-time { font-weight: bold; color: #0f172a; font-size: 14px; }
.emp-idx-match-league { font-size: 13px; color: #64748b; }

.emp-idx-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 15px;
}
.emp-idx-team {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
}
.emp-idx-team.home { justify-content: flex-end; text-align: right; }
.emp-idx-team.away { justify-content: flex-start; text-align: left; }
.emp-idx-team-name { font-size: 14px; font-weight: 600; color: #334155; }

.emp-idx-match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 80px;
    font-weight: bold;
    font-size: 15px;
}
.emp-idx-score-num { color: #008b8b; }
.emp-idx-score-vs { font-size: 12px; color: #94a3b8; }

/* 右侧录像按钮与热门标 */
.emp-idx-match-action {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 90px;
    justify-content: flex-end;
}
.emp-idx-btn-live {
    background-color: #008b8b;
    color: #ffffff !important;
    padding: 5px 18px;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.emp-idx-btn-live:hover {
    background-color: #007373;
    box-shadow: 0 2px 6px rgba(0, 139, 139, 0.3);
}
.emp-idx-hot-badge {
    position: absolute;
    top: -8px;
    right: -6px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 8px;
    transform: scale(0.85);
}