/* 简约清新风格核心样式 */
.panel.liveview {
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.panel.liveview:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* 日期标题样式 */
.panel-title {
    background: #f9f9f9;
    padding: 12px 18px;
    border-bottom: 1px solid #e8e8e8;
}

.panel-title h2 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.panel-title h2:before {
    content: "";
    width: 3px;
    height: 16px;
    background: #4285f4;
    margin-right: 10px;
    border-radius: 1px;
}

.today-mark {
    background: #4285f4;
    color: #fff;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 500;
}

/* 列表内容样式 */
.panel-body {
    margin: 0;
    padding: 0;
    list-style: none;
}

.panel-body li {
    border-bottom: 1px dashed #f0f0f0;
}

.panel-body li:last-child {
    border-bottom: none;
}

/* 匹配项容器 */
.match-item {
    padding: 12px 18px;
    transition: background-color 0.2s;
}

.match-item:hover {
    background-color: #fafafa;
}

/* 第一行：时间、联赛、状态 */
.match-meta {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

/* 第二行：标题、观看按钮 */
.match-content {
    display: flex;
    align-items: center;
}

/* 文字样式 */
time {
    min-width: 55px;
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #eee;
}

.panel-body a {
    text-decoration: none;
    transition: color 0.2s;
}

.league-name {
    font-size: 13px;
    color: #666;
    padding: 0 5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.sport-icon {
    margin-right: 5px;
    font-size: 13px;
}

.match-title {
    font-size: 14px;
    color: #333;
    flex: 1;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-title:hover {
    color: #4285f4;
}

.hot-tag {
    color: #f57c00;
    font-size: 12px;
    margin-left: 6px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
}

.type.recommend {
    background: #4285f4;
    color: #fff !important;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 500;
    margin-left: 10px;
}

.type.recommend:hover {
    background: #3367d6;
}

.match-status {
    font-size: 13px;
    font-weight: 500;
    margin-left: auto;
    white-space: nowrap;
}

.status-live {
    color: #ea4335 !important;
}

.status-upcoming {
    color: #4285f4 !important;
}

.status-ended {
    color: #9e9e9e !important;
}

/* 直播中标识 */
.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ea4335;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* 直播中高亮 */
.live-highlight {
    background-color: #fff8f8;
}

/* 响应式调整 - 移动端布局 */
@media (max-width: 768px) {
    .match-item {
        padding: 10px 15px;
    }
    
    .match-meta {
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
    
    time {
        min-width: 50px;
        margin-right: 8px;
        padding-right: 8px;
    }
    
    .match-status {
        margin-left: 0;
        margin-left: 10px;
    }
    
    .match-content {
        flex-wrap: wrap;
    }
    
    .type.recommend {
        margin-left: 10px;
        padding: 3px 8px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* 确保小屏幕下标题不会过长 */
    .match-title {
        max-width: calc(100% - 70px);
        font-size: 13px;
    }
}

/* 桌面端布局优化 */
@media (min-width: 769px) {
    .match-item {
        display: flex;
        align-items: center;
    }
    
    .match-meta {
        width: auto;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .match-content {
        flex: 1;
    }
}