		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            min-height: 100vh;
        }
        
        header {
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .main-content {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .live-matches {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .match-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .vs {
            font-weight: bold;
            margin: 0 10px;
        }
        
        .match-info {
            display: flex;
            justify-content: space-between;
            color: #ddd;
            font-size: 14px;
        }
        .btn-div {
			  display: flex;
			  gap: 1%;
			  align-items: center; /* 垂直对齐 */
		}
        .watch-btn {
            width: 73%;
            padding: 10px;
            margin-top: 15px;
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
		
		.watch-btn-p{
            width: 25%;
            padding: 10px;
            margin-top: 15px;
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        
        .watch-btn:hover {
            opacity: 0.9;
        }
		.floating-sidebar {
            position: fixed;
            right: 20px;
            top: 70%;
            transform: translateY(-50%);
            width: 200px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            z-index: 1000;
            font-family: Arial, sans-serif;
            font-size: 12px;
            line-height: 1.4;
            color: #333;
            border: 1px solid #eee;
			white-space: nowrap;      /* 禁止换行 */
			overflow: hidden;         /* 隐藏溢出内容 */
			text-overflow: ellipsis;  /* 显示省略号 */
        }
		.floating-sidebar-r {
            position: fixed;
            top: 70%;
            transform: translateY(-50%);
            width: 200px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            z-index: 1000;
            font-family: Arial, sans-serif;
            font-size: 12px;
            line-height: 1.4;
            color: #333;
            border: 1px solid #eee;
			white-space: nowrap;      /* 禁止换行 */
			  overflow: hidden;         /* 隐藏溢出内容 */
			  text-overflow: ellipsis;  /* 显示省略号 */
        }
        a {
			text-decoration: none;
			color: #fff;
		}
		.ah {
			color: #000;
		}
        footer {
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.3);
            margin-top: 50px;
        }
		.breadcrumb {
            padding: 4px 20px;
			border-radius: 6px;
            background: #f8f8f8;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #0066cc;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
		
		   .match-info {
            padding: 20px;
            text-align: center;
        }
        
        .league-name {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .teams {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        
        .team {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .team.home {
            text-align: right;
        }
        
        .team.away {
            text-align: left;
        }
        
        .team-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }
        
        .team-name {
            font-size: 18px;
            font-weight: bold;
        }
        
        .score {
            font-size: 36px;
            font-weight: bold;
            margin: 0 20px;
            color: #e74c3c;
        }
        
        .match-status {
            margin: 10px 0;
            color: #e74c3c;
            font-weight: bold;
        }
        
        .match-time {
            color: #666;
            margin-bottom: 20px;
        }
        
        .live-btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            margin: 20px 0;
            transition: background 0.3s;
        }
        
        .live-btn:hover {
            background: #c0392b;
        }
        
        .match-stats {
            display: flex;
            justify-content: space-around;
            padding: 15px;
            background: #f8f8f8;
            margin-top: 20px;
            border-radius: 5px;
        }
		
  /* 热门比赛整体容器 */
  .sports-live-container {
	border: 1px solid #000;  
    font-family: 'Arial', sans-serif;
    margin: 0 auto;
	background: linear-gradient(135deg, rgb(255, 243, 224) 0%, rgb(255, 224, 178) 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* 比赛卡片 - 基础样式 */
  .match-card—hot {
    
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    border-left: 4px solid #e74c3c; /* 热门比赛左侧强调色 */
  }
  .match-card—hot :hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  /* 队徽和队名样式 */
  .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  .team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  .team-name {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
  }

  /* 比分和比赛状态 */
  .match-info-new {
   
    text-align: center;
  }
  .match-score {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c; /* 比分强调色 */
    margin: 5px 0;
  }
  .match-time {
    font-size: 12px;
    color: #666;
  }
  .live-badge {
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 5px;
    animation: pulse 1.5s infinite;
  }

  /* 热门标签 */
  .hot-tag {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ff9500;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
  }

  /* 直播按钮 */
  .watch-btn-new {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  .watch-btn-new:hover {
    background: #2980b9;
  }

  /* 动画效果 */
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
  }
  
  .citiao_list {
	position: relative;
    width: 100%;
    background: #FFFFFF;
    border-radius: 12px 2px 2px 2px;
    margin-top: 30px;
	color:black;
  }