/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 五大联赛图标区域 */
.leagues-header {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.league-icon {
    margin-bottom: 10px;
}

.league-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.team-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-logo {
    font-size: 18px;
    margin-right: 5px;
}

.team-logos .team-name {
    font-size: 14px;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 当前位置导航 */
.dangq {
    margin-bottom: 20px;
    font-size: 14px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dangq ul {
    list-style: none;
}

.dangq li {
    display: inline;
}

.dangq a {
    color: #0066cc;
    text-decoration: none;
}

.dangq a:hover {
    text-decoration: underline;
}

/* 内容包装器 */
.content-wrapper {
    display: flex;
    gap: 20px;
}

/* 主内容区域 */
.main-content {
    flex: 3;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 侧边栏 */
.sidebar {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 页面标题 */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* 联赛标题 */
.league-title {
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 15px 0;
    color: #333;
    padding-bottom: 5px;
    border-bottom: 2px solid #f00;
}

/* 比赛列表 */
.match-list {
    margin-bottom: 30px;
}

/* 比赛项 */
.match-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

/* 比赛时间 */
.match-time {
    font-size: 14px;
    color: #666;
    width: 150px;
}

/* 比赛球队 */
.match-teams {
    flex: 1;
    text-align: center;
}

/* 球队名称 */
.team-name {
    font-size: 16px;
    margin: 0 15px;
    font-weight: 500;
}

/* VS标记 */
.vs {
    margin: 0 20px;
    color: #999;
    font-weight: bold;
}

/* 比赛链接 */
.match-link {
    width: 120px;
    text-align: right;
}

/* 观看按钮 */
.watch-btn {
    background-color: #f00;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.watch-btn:hover {
    background-color: #d00;
}

/* 侧边栏内容 */
.listy {
    margin-bottom: 30px;
}

.tjnr p,
.nrbt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.tjnr ul,
.nrmk3 ul {
    list-style: none;
}

.tjnr li,
.nrmk3 li {
    margin-bottom: 8px;
}

.tjnr a,
.nrmk3 a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.tjnr a:hover,
.nrmk3 a:hover {
    text-decoration: underline;
}

/* 友情链接 */
.friend-links {
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.friend-links a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.friend-links a:hover {
    text-decoration: underline;
}

/* 页脚 */
.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer a {
    color: #0066cc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .match-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .match-time,
    .match-link {
        width: 100%;
        text-align: left;
    }
    
    .match-teams {
        width: 100%;
        text-align: left;
    }
}