﻿        /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "微软雅黑", "宋体", Arial, sans-serif;
            background-color: #f5f8ff;
            color: #333;
            font-size: 14px;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, li {
            list-style: none;
        }

        /* 容器样式 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 分类导航样式 */
        .category-nav {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 30px;
            overflow-x: auto;
        }

        .category-list {
            display: flex;
            gap: 12px;
            padding: 5px 0;
            flex-wrap: wrap;
        }

        .category-item {
            flex-shrink: 0;
            margin-right: 33px;
        }

        .category-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 75px;
            padding: 10px 5px;
            border-radius: 8px;
            color: #555;
            transition: all 0.3s ease;
            background-color: #f8f9ff;
            border: 2px solid transparent;
        }

        .category-link:hover {
            background-color: #e8f4ff;
            transform: translateY(-2px);
        }

        .category-link.curr {
            background: linear-gradient(135deg, #0078ff 0%, #0056b3 100%);
            color: #ffffff;
            border-color: #0078ff;
            box-shadow: 0 4px 12px rgba(0, 120, 255, 0.2);
        }

        .category-icon {
            width: 30px;
            height: 30px;
            margin-bottom: 6px;
            background-color: rgba(0, 120, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-link.curr .category-icon {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .category-icon i {
            font-size: 16px;
            color: #0078ff;
        }

        .category-link.curr .category-icon i {
            color: #ffffff;
        }

        .category-name {
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 板块标题样式 */
        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #0078ff;
            display: flex;
            align-items: center;
        }

        .section-title i {
            color: #0078ff;
            margin-right: 10px;
        }

        /* 列表表格样式 */
        .tips-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .tips-table thead th {
            background: linear-gradient(135deg, #0056b3 0%, #0056b3 100%);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 12px 8px;
            text-align: center;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .tips-table tbody tr {
            transition: background 0.2s ease;
        }

        .tips-table tbody tr:nth-child(even) {
            background-color: #f8f9ff;
        }

        .tips-table tbody tr:hover {
            background-color: #e8f4ff;
        }

        .tips-table td {
            padding: 12px 8px;
            text-align: center;
            font-size: 14px;
            color: #333;
            border-bottom: 1px solid #f0f2f5;
            vertical-align: middle;
        }

        .tips-table td.td-time {
            font-size: 12px;
            color: #888;
            white-space: nowrap;
        }

        .tips-table td.td-league .league-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 12px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .tips-table td.td-team {
            font-weight: 600;
            white-space: nowrap;
        }

        .tips-table td.td-team .team-logo-sm {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            object-fit: cover;
            vertical-align: middle;
            margin-right: 4px;
        }

        .tips-table td.td-score {
            font-size: 16px;
            font-weight: 800;
            color: #0078ff;
            white-space: nowrap;
        }

        .tips-table td.td-handicap {
            font-size: 13px;
            color: #666;
            white-space: nowrap;
        }

        .tips-table td.td-expert a {
            color: #0078ff;
            font-weight: 600;
            text-decoration: none;
        }

        .tips-table td.td-expert a:hover {
            text-decoration: underline;
        }

        .tips-table td.td-price {
            color: #ff7d00;
            font-weight: 600;
            white-space: nowrap;
        }

        .tips-table td.td-tips a {
            font-weight: 600;
            text-decoration: none;
        }

        .tips-table td.td-tips a:hover {
            text-decoration: underline;
        }

        .tips-table td.td-tips .tips-link {
            color: #006633;
        }

        .tips-table td.td-tips .subscribe-btn {
            display: inline-block;
            color: #ffffff;
            background-color: #b52c8c;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tips-table td.td-tips .subscribe-btn:hover {
            background-color: #9a2477;
            transform: translateY(-1px);
        }

        .tips-table td.td-result .result-badge {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            min-width: 36px;
        }

        .result-badge.result-draw {
            background-color: #f0fdf6;
            color: #009966;
        }

        .result-badge.result-win {
            background-color: #fff2f0;
            color: #ff4d4f;
        }

        .result-badge.result-lose {
            background-color: #f5f5f5;
            color: #666;
        }

        .result-badge.result-pending {
            background-color: #f5f8ff;
            color: #0078ff;
        }

        /* 大卡片样式（未公开推介） */
        .tips-cards {
            display: grid;
            
            
            margin-bottom: 30px;
        }

        .tips-big-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
            border: 1px solid #f0f2f5;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin: 20px 0px;
        }

        .tips-big-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #b52c8c, #ff7d00);
        }

        .tips-big-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            border-color: #e8d0f0;
        }

        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .card-league {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .card-league .league-tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 20px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
        }

        .card-league .card-time {
            font-size: 12px;
            color: #888;
        }

        .card-price-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            background: linear-gradient(135deg, #ff7d00, #ff9a44);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .card-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
            padding: 16px;
            background-color: #f8f9ff;
            border-radius: 10px;
        }

        .card-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .card-team-logo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e8f4ff;
        }

        .card-team-name {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            text-align: center;
        }

        .card-vs {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
            gap: 6px;
        }

        .card-score {
            font-size: 22px;
            font-weight: 900;
            color: #0078ff;
        }

        .card-handicap {
            font-size: 12px;
            color: #666;
            background-color: #e8f4ff;
            padding: 3px 10px;
            border-radius: 4px;
        }

        .card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-expert {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .card-expert-name {
            font-size: 15px;
            font-weight: 700;
            color: #333;
        }

        .card-expert-name a {
            color: #0078ff;
            text-decoration: none;
        }

        .card-expert-name a:hover {
            text-decoration: underline;
        }

        .card-expert-label {
            font-size: 12px;
            color: #999;
        }

        .card-subscribe-btn {
            display: inline-block;
            padding: 10px 28px;
            background: linear-gradient(135deg, #b52c8c, #d944a8);
            color: #ffffff;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(181, 44, 140, 0.25);
        }

        .card-subscribe-btn:hover {
            background: linear-gradient(135deg, #9a2477, #b52c8c);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(181, 44, 140, 0.35);
        }

        .card-countdown {
            font-size: 14px !important;
            color: #ff7d00 !important;
            font-weight: 700 !important;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.5px;
        }

        .td-countdown {
            color: #ff7d00;
            font-size: 12px;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.5px;
        }

        .countdown-label {
            font-size: 11px;
            color: #999;
            display: block;
            margin-top: 2px;
        }

        .countdown-live {
            color: #009966 !important;
        }

        .countdown-ended {
            color: #999 !important;
        }

        /* 分页样式 */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .pagination {
            display: flex;
            gap: 8px;
            padding: 0;
            margin: 0;
        }

        .page-item {
            display: flex;
        }

        .page-item a, .page-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 8px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .link {
            color: #555;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
        }

        .link:hover {
            background-color: #e8f4ff;
            color: #0078ff;
            border-color: #0078ff;
        }

        .link-curr {
            background: linear-gradient(135deg, #0078ff 0%, #0056b3 100%);
            color: #ffffff;
            border-color: #0078ff;
        }

        .btn-prev, .btn-next {
            color: #555;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
        }

        .btn-prev::after {
            content: "<";
            font-size: 16px;
        }

        .btn-next::after {
            content: ">";
            font-size: 16px;
        }

        .page-item.disabled span {
            color: #ccc;
            background-color: #fafafa;
            border-color: #f0f0f0;
            cursor: not-allowed;
        }

        .more {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 14px;
        }

        /* 空数据样式 */
        .empty-data {
            text-align: center;
            padding: 60px 20px;
            color: #999;
            background-color: #ffffff;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .empty-data i {
            font-size: 50px;
            margin-bottom: 20px;
            display: block;
            color: #e8f4ff;
        }

        .empty-data p {
            font-size: 16px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .tips-table {
                font-size: 12px;
                border-radius: 8px;
            }

            .tips-table thead th {
                padding: 8px 4px;
                font-size: 11px;
            }

            .tips-table td {
                padding: 8px 4px;
                font-size: 12px;
            }

            .tips-table td.td-score {
                font-size: 14px;
            }

            .tips-table td.td-team .team-logo-sm {
                display: none;
            }

            .tips-cards {
                grid-template-columns: 1fr;
            }

            .card-match {
                padding: 10px;
            }

            .card-team-logo {
                width: 36px;
                height: 36px;
            }

            .card-team-name {
                font-size: 13px;
            }

            .card-score {
                font-size: 18px;
            }

            .card-subscribe-btn {
                padding: 8px 20px;
                font-size: 13px;
            }

            .category-list {
                gap: 8px;
            }

            .category-link {
                width: 70px;
                padding: 8px 4px;
            }

            .section-title {
                font-size: 18px;
            }
        }
