/* 冀录社河北体育信息平台样式 */
#jilushe-sports-platform {
    font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

#jilushe-sports-platform * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#jilushe-sports-platform header {
    background: linear-gradient(135deg, #1a3a8f 0%, #0a1a5a 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#jilushe-sports-platform .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

#jilushe-sports-platform .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

#jilushe-sports-platform .logo i {
    font-size: 2.8rem;
    color: #ffcc00;
}

#jilushe-sports-platform .logo h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

#jilushe-sports-platform .subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 300;
}

#jilushe-sports-platform .header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

#jilushe-sports-platform .header-info div {
    display: flex;
    align-items: center;
    gap: 8px;
}

#jilushe-sports-platform .header-info i {
    color: #ffcc00;
}

#jilushe-sports-platform .container {
    max-width: 1200px;
    margin: 0 auto;
}

#jilushe-sports-platform .intro {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid #1a3a8f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

#jilushe-sports-platform .intro h2 {
    color: #1a3a8f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

#jilushe-sports-platform .intro i {
    color: #ff3333;
}

#jilushe-sports-platform .content-area {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

#jilushe-sports-platform .map-section {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

#jilushe-sports-platform .map-title {
    color: #1a3a8f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

#jilushe-sports-platform .hebei-map {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#jilushe-sports-platform .city-marker {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #ff3333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

#jilushe-sports-platform .city-marker:hover {
    background: #1a3a8f;
    transform: scale(1.3);
    z-index: 20;
    box-shadow: 0 5px 15px rgba(26,58,143,0.4);
}

#jilushe-sports-platform .city-marker.active {
    background: #1a3a8f;
    transform: scale(1.3);
    z-index: 20;
    box-shadow: 0 5px 15px rgba(26,58,143,0.4);
}

#jilushe-sports-platform .city-name {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    color: #1a3a8f;
    font-weight: 600;
    border: 1px solid #ffcc00;
    z-index: 5;
}

#jilushe-sports-platform .city-marker:hover .city-name {
    opacity: 1;
}

#jilushe-sports-platform .map-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    font-size: 0.9rem;
}

#jilushe-sports-platform .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

#jilushe-sports-platform .legend-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#jilushe-sports-platform .city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

#jilushe-sports-platform .city-btn {
    padding: 10px 20px;
    background: #f0f5ff;
    border: 2px solid #d0e0f0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

#jilushe-sports-platform .city-btn:hover {
    background: #1a3a8f;
    color: white;
    border-color: #1a3a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26,58,143,0.2);
}

#jilushe-sports-platform .city-btn.active {
    background: #1a3a8f;
    color: white;
    border-color: #1a3a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26,58,143,0.2);
}

#jilushe-sports-platform .info-section {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

#jilushe-sports-platform .city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

#jilushe-sports-platform .city-header h2 {
    color: #1a3a8f;
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

#jilushe-sports-platform .city-update {
    color: #666;
    font-size: 0.9rem;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
}

#jilushe-sports-platform .city-intro {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #1a3a8f;
    line-height: 1.7;
    color: #555;
}

#jilushe-sports-platform .info-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
    overflow-x: auto;
}

#jilushe-sports-platform .tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

#jilushe-sports-platform .tab-btn:hover {
    color: #1a3a8f;
}

#jilushe-sports-platform .tab-btn.active {
    color: #1a3a8f;
    border-bottom: 3px solid #1a3a8f;
}

#jilushe-sports-platform .tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#jilushe-sports-platform .tab-content.active {
    display: block;
}

#jilushe-sports-platform .info-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1a3a8f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

#jilushe-sports-platform .info-card:hover {
    transform: translateY(-5px);
}

#jilushe-sports-platform .info-card h3 {
    color: #1a3a8f;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#jilushe-sports-platform .info-card ul {
    padding-left: 20px;
    margin: 0;
}

#jilushe-sports-platform .info-card li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
    padding-left: 5px;
}

#jilushe-sports-platform .info-card li a {
    color: #1a3a8f;
    text-decoration: none;
    font-weight: 500;
}

#jilushe-sports-platform .info-card li a:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* 体育新闻列表样式（3篇） */
#jilushe-sports-platform .info-card .article-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

#jilushe-sports-platform .info-card .article-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#jilushe-sports-platform .info-card .article-list li a {
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}

#jilushe-sports-platform .info-card .article-list li .article-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

#jilushe-sports-platform .info-card .article-list li .article-date {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

#jilushe-sports-platform .latest-news {
    margin-top: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

#jilushe-sports-platform .latest-news h3 {
    color: #1a3a8f;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

#jilushe-sports-platform .news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#jilushe-sports-platform .news-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a3a8f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

#jilushe-sports-platform .news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#jilushe-sports-platform .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

#jilushe-sports-platform .news-title {
    color: #1a3a8f;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

#jilushe-sports-platform .news-tags {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    flex-wrap: wrap;
}

#jilushe-sports-platform .news-tag {
    background: #f0f5ff;
    color: #1a3a8f;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 5px;
}

#jilushe-sports-platform .news-summary {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

#jilushe-sports-platform .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 0.85rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

#jilushe-sports-platform .news-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

#jilushe-sports-platform .read-more {
    color: #1a3a8f;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

#jilushe-sports-platform .read-more:hover {
    color: #ff3333;
    text-decoration: underline;
}

#jilushe-sports-platform footer {
    background: #1a3a8f;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    border-radius: 10px;
}

#jilushe-sports-platform .footer-content {
    max-width: 800px;
    margin: 0 auto;
}

#jilushe-sports-platform .footer-content p {
    margin: 8px 0;
    line-height: 1.5;
}

#jilushe-sports-platform .data-source {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    #jilushe-sports-platform .content-area {
        flex-direction: column;
    }
    
    #jilushe-sports-platform .map-section,
    #jilushe-sports-platform .info-section {
        min-width: 100%;
    }
    
    #jilushe-sports-platform .hebei-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    #jilushe-sports-platform {
        padding: 15px;
    }
    
    #jilushe-sports-platform header {
        padding: 1rem;
    }
    
    #jilushe-sports-platform .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    #jilushe-sports-platform .logo h1 {
        font-size: 1.6rem;
    }
    
    #jilushe-sports-platform .hebei-map {
        height: 350px;
    }
    
    #jilushe-sports-platform .city-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #jilushe-sports-platform .city-header h2 {
        font-size: 1.5rem;
    }
    
    #jilushe-sports-platform .info-tabs {
        flex-wrap: wrap;
    }
    
    #jilushe-sports-platform .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    #jilushe-sports-platform .latest-news {
        padding: 15px;
    }
    
    #jilushe-sports-platform .news-item {
        padding: 15px;
    }
    
    #jilushe-sports-platform .info-card .article-list li {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    #jilushe-sports-platform .news-header {
        flex-direction: column;
        gap: 10px;
    }
    
    #jilushe-sports-platform .news-tags {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    #jilushe-sports-platform .hebei-map {
        height: 300px;
    }
    
    #jilushe-sports-platform .city-list {
        justify-content: center;
    }
    
    #jilushe-sports-platform .city-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* 加载动画 */
#jilushe-sports-platform .loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

#jilushe-sports-platform .loading i {
    font-size: 2rem;
    color: #1a3a8f;
    margin-bottom: 15px;
    display: block;
}

/* 错误提示 */
#jilushe-sports-platform .error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border-left: 4px solid #c62828;
    text-align: center;
}