* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
}

.page-container {
    width: 1280px;  
    margin: 0 auto;
    
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
}

    /* 下拉菜单容器 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* 下拉菜单内容 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* 下拉菜单项 */
.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff6700;
}

/* HOT标签样式 */
.dropdownhot-tag {
    display: inline-block;
    background-color: #f00;
    color: #fff;
    font-size: 8px;
    padding: 1px 5px;
    border-radius: 2px;
    margin-right: 8px;
    font-weight: normal;
}
/* 头部样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0 20px;
    margin-bottom: 20px;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 1280px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.logo-text span {
    color: #e74c3c;
}
.nav {
    display: flex;
    gap: 30px;
}
.nav-item {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}
.nav-item:hover {
    color: #e74c3c;
}
.nav-item.active {
    color: #e74c3c;
    font-weight: 600;
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
    border-radius: 1px;
}
.search-box {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 20px;
    padding: 6px 15px;
    width: 280px;
}
.search-icon {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}
.search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
    color: #333;
}
.search-input::placeholder {
    color: #999;
}

/* 赛事滚动容器 */
.match-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}
/* 滚动按钮 */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    z-index: 10;
    transition: all 0.2s;
}
.scroll-btn:hover {
    background-color: #fff;
    color: #e74c3c;
    border-color: #e74c3c;
}
.left-btn {
    left: 5px;
}
.right-btn {
    right: 5px;
}
/* 赛事列表滚动区 */
.match-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
}
.match-scroll::-webkit-scrollbar {
    display: none;
}
/* 单个赛事卡片 */
.match-card {
    min-width: 190px;
    padding: 0 10px;
    border-right: 1px solid #eee;
    margin: 5px 0;
}
.match-card:last-child {
    border-right: none;
}
/* 赛事类型+状态（调整为左右分布） */
.match-type {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 赛事状态 */
.match-status {
    font-size: 12px;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    display: inline-block;
}
.status-ended {
    background-color: #999;
}
.status-not-start {
    background-color: #e74c3c;
}
/* 对战信息 */
.match-team {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    font-size: 13px;
}
.team-logo {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border-radius: 50%;
}
.team-name {
    flex: 1;
    color: #666;
}
.team-score {
      text-align: right;
    font-size: 13px;
    color: rgb(123, 126, 134);
}
/* 时间/日期 */
.match-time {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

/* 新增：热门资讯模块 */
.news-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}
.news-title span {
    color: #e74c3c;
    margin-right: 8px;
}
.news-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.news-tab {
    padding: 6px 16px;
    background-color: #f8f8f8;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.news-tab.active {
    background-color: #e74c3c;
    color: #fff;
}
.news-tab:hover {
    background-color: #f0f0f0;
}
.news-tab.more {
    display: flex;
    align-items: center;
    gap: 5px;
}
.refresh-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.refresh-btn:hover {
    color: #e74c3c;
}
.news-content {
    
    gap: 20px;
}
.news-banner {
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.news-banner-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
.news-banner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.news-banner-meta {
    position: absolute;
    bottom: 45px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-tag {
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}
.news-banner-time {
    color: #fff;
    font-size: 12px;
}
.news-banner-view {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-list {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item-title {
    font-size: 14px;
    color: #333;
    transition: color 0.2s;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-title a {
    color: #333; /* 标题颜色 */
    text-decoration: none; /* 去掉下划线 */
}
.news-item-title:hover {
    color: #e74c3c;
}
.news-item-time {
    font-size: 12px;
    color: #999;
}


.news-item-title a:hover {
    color: #f60; /* 悬浮时颜色 */
    text-decoration: underline; /* 悬浮时显示下划线 */
}



/* 广告横幅 */
.ad-banner {
    width: 100%;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
}
.ad-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.ad-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 0 8px 0 8px;
}

/* 优化后的尾部样式 */
/* 底部容器样式 */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 40px 0 20px;
    color: #666666;
    font-size: 14px;
}

/* 底部内容区域 */
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 30px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .footer-content {
grid-template-columns: 1fr;
gap: 30px;
    }
}

/* 底部栏目标题 */
.footer-column-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

/* 标题下划线 */
.footer-column-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff6700;
}

/* 链接列表样式 */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

/* 单个链接样式 */
.footer-link {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6700;
}

/* 版权信息区域 */
.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    color: #999999;
    font-size: 13px;
    line-height: 1.8;
}

/* 备案信息样式 */
.footer-icp {
    margin-top: 8px;
}

/* 备案图标样式 */
.icp-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/* 新闻内容切换相关样式 */
.news-content-wrap {
    position: relative;
    min-height: 220px;
}
.news-content-panel {
    display: none;
}
.news-content-panel.active {
    display: flex;
}

/* 补充必要的样式 */
.video-content-panel {
    display: none;
}
.video-content-panel.active {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.video-card {
    width: calc(25% - 15px);
    box-sizing: border-box;
}


/* 热门网站板块容器 */
.hot-sites-section {
    max-width: 1280px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 标题栏样式 */
.section-title {
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}



/* 网站列表容器 */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 6列布局 */
    gap: 0;
   
}

/* 响应式适配 - 平板端 */
@media (max-width: 992px) {
    .sites-grid {
grid-template-columns: repeat(4, 1fr);
    }
}

/* 响应式适配 - 手机端 */
@media (max-width: 768px) {
    .sites-grid {
grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .sites-grid {
grid-template-columns: repeat(2, 1fr);
    }
}

/* 单个网站项样式 */
.site-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 5px;
}

.site-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* 网站图标样式 */
.site-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: contain;
}

/* 网站名称样式 */
.site-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

    /* 页面容器固定1280px */
        .container {
width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
        }
        .section {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
        }
        /* 左侧直播区域固定850px */
        .left-section {
            width: 980px;
        }
        /* 右侧模块总宽度410px */
        .right-section {
            width: 310px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .right-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
        }
        .section-title1 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 2px solid #f5f5f5;
        }
        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 8px;
            border-bottom: 1px solid #f5f5f5;
        }
        /* 赛事项样式 - 核心优化：单行展示+状态标识 */
        .match-item {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .match-time2 {
            width: 50px;
            font-size: 14px;
            color: #666;
        }
        /* 直播状态标签 */
        .match-status {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 8px;
        }
        .status-live {
            background: #ff4d4f;
            color: #fff;
        }
        .status-not-start {
            background: #ff1800;
            color: #fff;
        }
        .status-ended {
            background: #f0f2f5;
            color: #666;
        }
        .match-info {
          
            margin: 0 10px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .match-league {
           color: #232324;
    white-space: nowrap;
    font-weight: bold;
    font-size: 16px;
        }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
    word-spacing: 6px;
        }
        .team {
            display: flex;
            align-items: center;
            gap: 5px;
            flex: 1;
            justify-content: center;
		
        }
        .team:first-child {
            justify-content: flex-end;
        }
        .team:last-child {
            justify-content: flex-start;
        }
        .team-logo {
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }
        .vs {
            font-size: 14px;
            color: #333;
            white-space: nowrap;
        }
        .match-links {
            display: flex;
            gap: 8px;
            font-size: 13px;
            margin-left: 16px;
        }
        .match-links a {
            color: #1677ff;
            text-decoration: none;
            font-size: 14px;
        }
  
        /* 录像视频模块样式 */
        .video-list {
            list-style: none;
        }
        .video-item {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .video-cover {
            width: 80px;
            height: 50px;
            border-radius: 4px;
            background: #f0f2f5;
            flex-shrink: 0;
            overflow: hidden;
        }
        .video-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-content {
            flex: 1;
        }
        .video-title {
            font-size: 14px;
            color: #333;
            line-height: 1.3;
            margin-bottom: 4px;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .video-title:hover {
            color: #1677ff;
        }
        .video-meta {
            font-size: 12px;
            color: #999;
        }
        


        .team {
            display: flex;
            align-items: center;
            gap: 8px; /* 队徽和文字之间的间距 */
            white-space: nowrap; /* 防止文字换行 */
        }



        .team span {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            /* 文字宽度自适应内容，无需额外设置width */
        }

        .vs {
            font-size: 18px;
            font-weight: 700;
            color: #666;
            padding: 0 5px;
        }    
        
        
                /* 图片广告位样式 */
        .ad-ybanner {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .ad-ybanner a {
            display: block;
        }
        .ad-ybanner img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        .ad-ybanner:hover img {
            transform: scale(1.02);
        }
        .ad-ylabel {
            position: relative;
            top: -24px;
            left: 0;
            background: rgba(255,77,79,0.9);
            color: #fff;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 0 4px 4px 0;
            display: inline-block;
        }
        
        /* 标题栏容器 - 用于布局标题和按钮 */
.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; 保持和原标题相同的间距 */
}

/* 原标题样式保持不变 */
.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* 提交按钮样式 */
.submit-btn {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
     text-decoration: none !important; 
}


.hot-tag1-item {
    position: relative; /* 相对定位，让标签绝对定位 */
}

.hot-tag1 {
    position: absolute;
    right: -3px;
    top: -10px;
    display: inline-block;
    padding: 1px 6px;
    background-color: #ff4400; /* 醒目红色 */
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 8px;
    line-height: 1.2;
    white-space: nowrap;
    transform: translateX(50%); /* 让标签向右偏移一半，贴合右上角 */
}

/* 热门标签样式 */
.mulu-tag {
    position: absolute;
    top: -8px; /* 向上偏移，贴文字右上角 */
    right: -12px; /* 向右偏移 */
    display: inline-block;
    padding: 1px 6px;
    background-color: #ff4400; /* 醒目红色，适配导航风格 */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 8px;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); /* 可选：加阴影更立体 */
}


/* 右侧卡片通用样式 */
.right-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
 /*   margin-bottom: 20px;*/
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%; /* 适配右侧410px宽度 */
}
/* 完赛赛程标题栏 */
.card-title-wrapper {
    display: flex;
    justify-content: space-between;
  /*  align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;*/
    border-bottom: 1px solid #eee;
}
.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 8px;
}
.card-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: #1677ff;
    border-radius: 1px;
}
.more-btn {
    font-size: 14px;
    color: #1677ff;
    text-decoration: none;
}
/* 完赛赛程列表 */
.finished-match-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.finished-match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #f0f0f0;
    font-size: 14px;
}
/* 球队信息（名称+logo） */
.team-info {
    display: flex;
    align-items: center;
    color: #333;
}
.team-small-logo {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    border-radius: 50%;
    object-fit: cover;
}
/* 比分样式 */
.match-score {
 
    min-width: 50px;
    text-align: center;
}

        /* ========== 新增：标签样式 ========== */
        .news-tags {
            margin: 25px 0;
            padding: 15px;
            background-color: #f8f9fa;
 
        }

        .news-tags .tag-title {
            font-size: 14px;
            color: #666;
            margin-right: 10px;
            font-weight: 500;
        }

        .news-tags .tag-list {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .news-tags .tag-item {
            display: inline-block;
            padding: 5px 12px;
            background-color: #e8f0fe;
            color: #0066cc;
            font-size: 13px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .news-tags .tag-item:hover {
            background-color: #0066cc;
            color: #fff;
        }
        
.tag-list a {
  text-decoration: none !important; 
  padding: 4px 12px;
    border-radius: 16px;
    background-color: #dfe2e7;
  display: inline-block;
  margin-right: 8px; 
}

.tag-list a:hover {
  color: #666 !important; 
}
        /* ========== 标签样式结束 ========== */
        
        
            /* 返回顶部按钮样式 */
    .back-to-top {
      /* 固定定位在右侧 */
      position: fixed;
      right: 30px;
      bottom: 30px;
      /* 按钮样式 */
      width: 50px;
      height: 50px;

      text-align: center;
      line-height: 50px;
      font-size: 20px;
      cursor: pointer;
      /* 初始隐藏 */
      opacity: 0;
      visibility: hidden;
      /* 过渡动画 */
      transition: all 0.3s ease;
      /* 鼠标悬浮效果 */
      box-shadow: 0 2px 8px rgba(64, 158, 255, 0.3);
      z-index: 9999; /* 确保在最上层 */

    background-color: #fff;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    }
	
	.back-to-top img {
    margin: 10px;
    width: 30px;
    height: 30px;
}

    .back-to-top:hover {
     
      transform: translateY(-2px);
  
    }

    /* 显示按钮的类 */
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    
    
/* 赛事条目容器 - 改为纵向flex布局 */
.finished-match-item {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    display: flex;
    flex-direction: column; /* 纵向排列（上：对阵，下：操作链接） */
    gap: 8px; /* 上下部分间距 */
}

/* 上半部分：对阵+比分 横向布局 */
.match-main {
    display: flex;
    align-items: center;
    justify-content: center; /* 居中显示对阵和比分 */
    gap: 12px; /* 各元素间距 */
}

/* 队伍信息样式 */
.team-info {
    display: flex;
    align-items: center;
    /*gap: 6px;  文字和图标间距 */
    color: #333;
}

/* 队伍小图标 */
.team-small-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* 比分样式 */
.match-score {
    font-weight: 600;
    color: #333;
    min-width: 60px;
    text-align: center;
}

/* 下半部分：操作链接容器 */
.match-actions {
    display: flex;
    justify-content: center; /* 链接居中显示 */
    gap: 5px; /* 战报和录像回放间距 */
}

/* 操作链接样式 */
.action-link {
    color: #1677ff; /* 蓝色链接色，可自定义 */
    text-decoration: none;
    font-size: 13px;
}

/* 鼠标悬浮下划线 */
.action-link:hover {
    text-decoration: underline;
}


