/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部横幅 */
.top-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content i {
    margin-right: 5px;
}

.close-banner {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-banner:hover {
    opacity: 1;
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.logo i {
    margin-right: 8px;
    font-size: 28px;
    color: #e74c3c;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(231, 76, 60, 0.7);
    color: #fff;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    border: none;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box i {
    position: absolute;
    right: 12px;
    color: #fff;
}

.plugin-free {
    display: flex;
    align-items: center;
    color: #2ecc71;
    font-size: 14px;
}

.plugin-free i {
    margin-right: 5px;
}

.login-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #c0392b;
}

/* 主要内容区域 */
.main-content {
    padding: 20px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 24px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 10px;
    color: #e74c3c;
    font-size: 22px;
}

.view-more {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.view-more:hover {
    color: #2980b9;
}

/* 焦点直播区域 */
.featured-section {
    margin-bottom: 30px;
}

.featured-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.featured-match {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-match:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-match-header {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-match-league {
    font-size: 16px;
    font-weight: bold;
}

.featured-match-live {
    background-color: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.featured-match-body {
    padding: 20px;
}

.featured-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.featured-team {
    text-align: center;
    flex: 1;
}

.featured-team-logo {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.featured-team-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.featured-team-score {
    font-size: 28px;
    font-weight: bold;
}

.featured-match-status {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.featured-match-viewers {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* 核心赛事区域 */
.core-sports-section {
    margin-bottom: 30px;
}

.core-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.core-sport-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.core-sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.core-sport-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.premier-league-logo {
    background: linear-gradient(135deg, #5e35b1, #3949ab);
}

.csl-logo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.core-sport-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.core-sport-card p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-weight: bold;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #e74c3c;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* 联赛标签页 */
.league-tabs-section {
    margin-bottom: 25px;
}

.league-tabs {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.league-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    color: #7f8c8d;
    border-bottom: 3px solid transparent;
}

.league-tab.active {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    border-bottom-color: #e74c3c;
}

.league-tab:hover {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

/* 直播内容标签页 */
.tabs-section {
    margin-bottom: 30px;
}

.tabs-nav {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    color: #7f8c8d;
}

.tab-btn.active {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    border-bottom-color: #e74c3c;
}

.tab-btn:hover {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stream-quality-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff3cd;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e74c3c;
}

.stream-quality-bar span {
    display: flex;
    align-items: center;
    color: #856404;
    font-weight: 500;
}

.stream-quality-bar i {
    margin-right: 8px;
}

.quality-options {
    display: flex;
}

.quality-option {
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.quality-option.active {
    background-color: #e74c3c;
    color: #fff;
}

.quality-option:not(.active):hover {
    background-color: rgba(231, 76, 60, 0.2);
}

/* 比赛网格 */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.match-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.match-header {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-league {
    font-weight: bold;
}

.match-status {
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
}

.match-body {
    padding: 20px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.match-team {
    text-align: center;
    flex: 1;
}

.match-team-name {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.match-team-score {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.match-time {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-time i {
    margin-right: 5px;
    color: #e74c3c;
}

.match-footer {
    padding: 12px 15px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-viewers {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    font-size: 14px;
}

.match-viewers i {
    margin-right: 5px;
    color: #e74c3c;
}

.match-link {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.match-link:hover {
    text-decoration: underline;
}

.match-link i {
    margin-left: 5px;
}

/* 赛程表样式 */
.schedule-container {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.schedule-day {
    border-bottom: 1px solid #f0f0f0;
}

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-header {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
}

.schedule-matches {
    padding: 0;
}

.schedule-match {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-match:last-child {
    border-bottom: none;
}

.schedule-match:hover {
    background-color: #f8f9fa;
}

.schedule-match-time {
    width: 80px;
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 500;
}

.schedule-match-teams {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule-match-team {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.schedule-match-league {
    width: 100px;
    text-align: right;
    font-size: 14px;
    color: #7f8c8d;
}

/* 比分表样式 */
.scores-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.score-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.score-header {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-league {
    font-weight: bold;
}

.score-status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

.score-status.live {
    background-color: #2ecc71;
    color: #fff;
}

.score-status.finished {
    background-color: #95a5a6;
    color: #fff;
}

.score-status.upcoming {
    background-color: #f39c12;
    color: #fff;
}

.score-body {
    padding: 15px;
}

.score-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.score-team {
    text-align: center;
    flex: 1;
}

.score-team-name {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.score-team-score {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.score-team-score.winner {
    color: #e74c3c;
}

.score-stats {
    font-size: 12px;
    color: #7f8c8d;
}

.score-footer {
    padding: 10px 15px;
    background-color: #f8f9fa;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

/* 精彩回放样式 */
.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.highlight-thumbnail {
    position: relative;
    height: 180px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.highlight-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.highlight-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(231, 76, 60, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight-content {
    padding: 15px;
}

.highlight-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.highlight-meta {
    display: flex;
    justify-content: space-between;
    color: #7f8c8d;
    font-size: 14px;
}

/* 英超专区 */
.premier-league-section {
    margin-bottom: 40px;
}

.premier-league-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* 中超专区 */
.csl-section {
    margin-bottom: 40px;
}

.csl-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-matchup {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-home, .team-away {
    text-align: center;
}

.team-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.liverpool-logo {
    background: linear-gradient(135deg, #C8102E, #FDFEFE);
}

.manchester-city-logo {
    background: linear-gradient(135deg, #6CABDD, #1C2C5B);
}

.manchester-united-logo {
    background: linear-gradient(135deg, #DA020E, #FBE918);
}

.chelsea-logo {
    background: linear-gradient(135deg, #034694, #DBA732);
}

.arsenal-logo {
    background: linear-gradient(135deg, #EF0107, #FEFEFE);
}

.tottenham-logo {
    background: linear-gradient(135deg, #132257, #FEFEFE);
}

.guangzhou-logo {
    background: linear-gradient(135deg, #E60012, #FFFFFF);
}

.beijing-guan-logo {
    background: linear-gradient(135deg, #0047A0, #FFFFFF);
}

.shandong-logo {
    background: linear-gradient(135deg, #FFD700, #006633);
}

.shanghai-logo {
    background: linear-gradient(135deg, #FF0000, #FFFFFF);
}

.evergrande-logo {
    background: linear-gradient(135deg, #CC0000, #FFFF00);
}

.dalian-logo {
    background: linear-gradient(135deg, #006633, #FFFFFF);
}

.vs {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}

.team-matchup h4 {
    font-size: 16px;
    margin: 0;
}

/* 其他赛事专区 */
.other-sports-section {
    margin-bottom: 40px;
}

.other-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.other-sport-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.other-sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.other-sport-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.la-liga-logo {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.bundesliga-logo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.serie-a-logo {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.ligue-1-logo {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.j1-league-logo {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.k-league-logo {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.a-league-logo {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.nba-logo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cba-logo {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.ufc-logo {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.other-sport-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.other-sport-card p {
    font-size: 14px;
    color: #7f8c8d;
}

/* 页脚样式 */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.footer-logo i {
    margin-right: 8px;
    color: #e74c3c;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #bdc3c7;
    transition: color 0.3s;
}

.feature-item:hover {
    color: #3498db;
}

.feature-item i {
    margin-right: 8px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .header-tools {
        gap: 10px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .featured-matches {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .core-sports-grid {
        grid-template-columns: 1fr;
    }
    
    .other-sports-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .scores-container {
        grid-template-columns: 1fr;
    }
    
    .highlights-container {
        grid-template-columns: 1fr;
    }
    
    .premier-league-showcase {
        grid-template-columns: 1fr;
    }
    
    .csl-showcase {
        grid-template-columns: 1fr;
    }
    
    .team-matchup {
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .league-tabs {
        overflow-x: auto;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .core-sports-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .search-box {
        display: none;
    }
    
    .plugin-free {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-more {
        margin-top: 10px;
    }
    
    .stream-quality-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quality-options {
        margin-top: 10px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* 加载动画 */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #e74c3c;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.empty-state p {
    font-size: 16px;
}