/* Tab 样式 - 适用于 dv-spo-saishi_item */
.dv-spo-saishi_item {
    display: flex;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
    padding: 0;
}

.dv-spo-saishi_item a {
    padding: 15px 25px;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    border: none;
    background: none;
}

.dv-spo-saishi_item a:hover {
    color: #1a5cff;
}

.dv-spo-saishi_item a.on {
    color: #1a5cff;
    font-weight: bold;
}

.dv-spo-saishi_item a.on::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1a5cff;
}

/* Tab 内容区域 */
.dv-spo-tab-content {
    display: none;
    background: #fff;
    min-height: 400px;
}

.dv-spo-tab-content.active {
    display: block;
}

/* 日期选择器样式 */
.dv-spo-date-selector {
    background: #f5f5f5;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
}

.dv-spo-date-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.dv-spo-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    min-width: 50px;
    flex-shrink: 0;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
}

.dv-spo-date-item:hover {
    border-color: #1a5cff;
    color: #1a5cff;
}

.dv-spo-date-item.active {
    background: #1a5cff;
    color: #fff;
    border-color: #1a5cff;
}

.dv-spo-date-week {
    font-size: 13px;
    margin-bottom: 3px;
    white-space: nowrap;
}

.dv-spo-date-day {
    font-size: 11px;
    white-space: nowrap;
}

/* 比赛列表样式 */
.dv-spo-match-list {
    padding: 20px;
}

.dv-spo-match-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.dv-spo-match-item:hover {
    background: #f8f9fa;
}

.dv-spo-match-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 160px;
    flex-shrink: 0;
}

.dv-spo-match-status {
    padding: 5px 12px;
    background: #999;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

.dv-spo-match-status.live {
    background: #ff4d4f;
}

.dv-spo-match-status.finished {
    background: #52c41a;
}

.dv-spo-match-time {
    font-size: 14px;
    color: #666;
}

.dv-spo-match-league {
    font-size: 12px;
    color: #999;
}

/* 图二样式 - 紧凑的球队对阵 */
.dv-spo-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 15px;
}

/* 主队 - 右侧对齐 */
.dv-spo-match-teams .dv-spo-team:first-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-direction: row-reverse;
}

/* 客队 - 左侧对齐 */
.dv-spo-match-teams .dv-spo-team:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.dv-spo-team-name {
    font-size: 14px;
    color: #333;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dv-spo-team-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.dv-spo-team-score {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    min-width: 20px;
    text-align: center;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
}

.dv-spo-match-vs {
    font-size: 14px;
    color: #999;
    font-weight: bold;
    padding: 0 5px;
}

.dv-spo-match-links {
    width: 260px;
    padding-left: 20px;
}

.dv-spo-links-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dv-spo-links-title::before {
    content: '🏆';
    font-size: 14px;
}

.dv-spo-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dv-spo-links-list a {
    padding: 4px 0;
    font-size: 13px;
    color: #1a5cff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.dv-spo-links-list a:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    margin-left: 8px;
}

.dv-spo-links-list a:hover {
    color: #ff6b00;
}

.dv-spo-links-more {
    margin-top: 8px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dv-spo-links-more:hover {
    color: #1a5cff;
}

.dv-spo-links-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* 赛程和排行榜占位样式 */
.dv-spo-schedule-list,
.dv-spo-rank-list {
    padding: 0;
    text-align: center;
    color: #999;
}

/* 排行榜样式 */
.tai-Ch-rankingt {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.tai-Ch-rankingt:last-child {
    border-bottom: none;
}

/* 表头样式 */
.tai-Ch-rankingt:first-child {
    background: #f8f8f8;
    font-weight: bold;
    color: #666;
    padding: 15px;
}

/* 表格列宽 */
.tai-Ch-rankingt > div {
    flex: 1;
    text-align: center;
}

.tai-Ch-rankingt > div:nth-child(1) {
    flex: 0.6;
}

.tai-Ch-rankingt > div:nth-child(2) {
    flex: 2.5;
    text-align: left;
    padding-left: 10px;
}

/* 排名数字样式 */
.tai-Ch-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

/* 球队logo和名称 */
.tai-Ch-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tai-Ch-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tai-Ch-team {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* 斑马纹背景 */
.tai-Ch-bgg:nth-child(even) {
    background: #fafafa;
}

/* 鼠标悬停效果 */
.tai-Ch-rankingt:not(:first-child):hover {
    background: #f0f7ff;
}
