* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

a{
	text-decoration: none;
	color: #333;
}

a:hover{
	color: #ff6600;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 100px;
}

.header {
    background-color: #ff6600;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header-info{
	width: 1200px;
	margin: auto;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-main {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-main a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-main a:hover,
.nav-main a.active {
    background-color: #cc5200;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px 15px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 150px;
}

.search-box button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
}

.search-icon::before {
    content: '\1F50D';
}

.header-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-sub a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.nav-sub a:hover,
.nav-sub a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

.main-content {
    padding: 20px;
	min-height: 800px;
}

.news-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.main-news {
    flex: 2;
}

.news-item.large {
    position: relative;
}

.news-item.large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-item.large .news-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    margin: 0;
}

.side-news {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item.small {
    display: flex;
    gap: 10px;
}

.news-item.small a{
    display: flex;
    gap: 10px;
	text-decoration: none;
	margin-top: 10px;
}

.news-item.small img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-item.small .news-title {
    font-size: 13px;
    color: #333;
    margin: 0;
    display: -webkit-box;
	align-items: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item.small .news-title:hover {
    color: #ff6600;
}


.news-list-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.news-list {
    flex: 1;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-item-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.news-item-row:last-child {
    border-bottom: none;
}

.news-item-row .num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

.news-item-row p {
    font-size: 14px;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-tabs {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
}

.news-tabs a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #f5f5f5;
    transition: all 0.3s;
}

.news-tabs a:hover,
.news-tabs a.active {
    background-color: #ff6600;
    color: #fff;
}

.section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
	margin-top: 40px;
}

.matches-section {
    margin-bottom: 20px;
}

.matches-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.matches-table th {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 8px;
    font-size: 13px;
    text-align: center;
    font-weight: normal;
}

.matches-table td {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.matches-table tr:hover {
    background-color: #f9f9f9;
}

.liansai-info{
	display: flex;
	flex: 1;
	white-space: nowrap;    /* 不换行 */
	  overflow: hidden;       /* 超出隐藏 */
	  text-overflow: ellipsis;/* 显示... */
}

.liansai-info a{
	display: flex;
	flex: 1;
	white-space: nowrap;    /* 不换行 */
	  overflow: hidden;       /* 超出隐藏 */
	  text-overflow: ellipsis;/* 显示... */
}

.match-time{
	flex: 1;
	font-size: 14px;
	color: #999;
}

.match-status{
	flex: 0.5;
}

.liansai-info img{
	width: 30px;
	height: 30px;
	border-radius: 20px;
}

.league-tag {
    display: inline-block;
    /* padding: 2px 8px; */
    /* background-color: #f0f0f0; */
    border-radius: 3px;
    font-size: 12px;
	padding-left: 5px;
    color: #666;
}

.match-item{
	display: flex;
	/* line-height: 50px; */
	padding: 15px 20px;
}

.match-info{
	display: flex;
	flex: 1.5;
}



.match-teams img{
	width: 30px;
	height: 30px;
	border-radius: 20px;
}

.match-teams{
	display: flex;
	flex: 3;
	font-size: 14px;
}

.team-zhudui{
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.team-zhudui a{
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.team-vs{
	flex: 0.2;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.team-kedui{
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-start;
}

.team-kedui a{
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-start;
}

.match-btn{
	display: flex;
}

.status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* .status.live {
    color: #ff6600;
	font-weight: bold;
} */

.start{
	color: #ff6600;
	font-weight: bold;
	font-size: 12px;
}

.wait{
	color: #999;
	font-weight: bold;
	font-size: 12px;
}

.status.upcoming {
    background-color: #f0f0f0;
    color: #666;
}

.team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
	margin-right: 5px;
}

.team::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /* background-color: #ff6600; */
}

.score {
    font-weight: bold;
    color: #ff6600;
    font-size: 14px;
}

.vs {
    color: #999;
    font-size: 12px;
}

.btn-live,
.btn-data {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: opacity 0.3s;
}

.btn-live {
    background-color: #ff6600;
    color: #fff;
    margin-right: 5px;
}

.btn-data {
    background-color: #f0f0f0;
    /* color: #666; */
}

.btn-live:hover,
.btn-data:hover {
    opacity: 0.8;
}

.load-more {
    text-align: center;
    margin-top: 15px;
}

.load-more button {
    padding: 8px 30px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.load-more button:hover {
    opacity: 0.8;
}

.bottom-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-section {
    flex: 2;
}

.featured-list {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.featured-item {
    flex: 1;
    position: relative;
}

.featured-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 12px;
    margin: 0;
    border-radius: 0 0 5px 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots span.active {
    background-color: #ff6600;
}

.hot-news-section {
    flex: 1;
}

.hot-news-list {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hot-news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.hot-news-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 5px;
}

.hot-news-content p {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-news-content p:hover{
    color: #ff6600;
}

.hot-news-meta {
    font-size: 12px;
    color: #999 !important;
    margin: 0 !important;
    -webkit-line-clamp: 1 !important;
}

.hot-news-text {
    padding: 15px;
}

.hot-news-text p {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	white-space: nowrap;    /* 不换行 */
	overflow: hidden;       /* 超出隐藏 */
	text-overflow: ellipsis;/* 显示... */
}

.hot-news-text p:hover{
    color: #ff6600;
}

.hot-news-text p:last-child {
    border-bottom: none;
}

.tags-section {
    margin-bottom: 20px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s;
}

.tags-list a:hover {
    background-color: #ff6600;
    color: #fff;
}

.live-detail {
    margin-bottom: 20px;
}

.live-header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c33 100%);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.live-league {
    margin-bottom: 10px;
}

.live-league span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.live-time {
    font-size: 16px;
    margin-bottom: 10px;
}

.live-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.live-status.live {
    background-color: #ff4d4d;
    animation: pulse 1.5s infinite;
}

.live-status.ended {
    background-color: #999;
}

.live-status.upcoming {
    background-color: #4CAF50;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.live-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.live-team img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    object-fit: cover;
}

.live-team .team-name {
    font-size: 16px;
    font-weight: bold;
}

.live-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.live-score span:first-child,
.live-score span:last-child {
    font-size: 36px;
    font-weight: bold;
}

.live-score .vs-text {
    font-size: 14px;
    opacity: 0.8;
}

.live-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.live-buttons a {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.live-buttons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.live-buttons .btn-enter {
    background-color: #fff;
    color: #ff6600;
    font-weight: bold;
}

.live-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.live-main {
    flex: 2;
}

.live-intro {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.detail-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
}

.live-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.live-news {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.more-link {
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.live-news-row {
    display: flex;
    gap: 15px;
}

.live-news-row img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.live-news-content {
    flex: 1;
}

.live-news-content h4 {
    font-size: 14px;
    margin: 0 0 8px 0;
}

.live-news-content h4 a {
    color: #333;
    text-decoration: none;
}

.live-news-content h4 a:hover {
    color: #ff6600;
}

.live-news-content p {
    font-size: 13px;
    color: #999;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-sidebar {
    flex: 1;
}

.related-matches {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rel-match-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.rel-match-item .match-time {
    font-size: 12px;
    color: #ff6600;
    font-weight: bold;
}

.rel-match-item .match-league {
    font-size: 11px;
    color: #999;
}

.rel-match-item .match-name {
    font-size: 13px;
    color: #333;
}

.match-status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.match-status-badge.live {
    background-color: #ff4d4d;
    color: #fff;
}

.match-status-badge.wait {
    background-color: #f0f0f0;
    color: #666;
}

.hot-match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.hot-match-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.match-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100px;
}

.hot-match-time {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.match-league-name {
    font-size: 12px;
    color: #999;
}

.match-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 15px;
}

.match-team-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-team-row img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.match-team-row span {
    font-size: 14px;
    color: #333;
}

.match-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.match-status-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.match-status-tag.hot-match-start {
    background-color: #ff6600;
    color: #fff;
}

.match-status-tag.hot-match-wait {
    background-color: #f0f0f0;
    color: #666;
}

.hot-tags {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s;
}

.tags-cloud a:hover {
    background-color: #ff6600;
    color: #fff;
}

.citiao-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.citiao-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.citiao-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.citiao-item a {
    text-decoration: none;
    display: block;
}

.citiao-title {
    padding: 10px;
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.citiao-title:hover{
    color: #ff6600;
}

.footer {
    background-color: #333;
    color: #999;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 10px;
    }
	
	.main-content {
	    padding: 20px;
		min-height: 200px;
	}
	
	.match-item{
		display: block;
		/* line-height: 50px; */
		padding: 15px 20px;
	}
	
	.match-btn{
		display: flex;
		justify-content: center; /* 水平居中 */
		gap: 10px; /* 两个按钮之间的间距，自行调整 */
		align-items: center;
	}
	
	.match-btn a{
		text-align: center;
	}
	
	.match-teams{
		line-height: 40px;
		margin-bottom: 10px;
	}
	
	.news-item.small a{
	    display: block;
	    gap: 10px;
		text-decoration: none;
	}
	
	.header-info{
		width: 100%;
		margin: auto;
	}

    .logo {
        flex: 1;
    }

    .search-box {
        order: 3;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .search-box input {
        width: 100%;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ff6600;
        padding: 15px;
        z-index: 100;
        flex-direction: column;
        gap: 10px;
    }

    .nav-main.show {
        display: flex;
    }

    .nav-main a {
        padding: 10px 15px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-sub {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .nav-sub a {
        flex-shrink: 0;
    }

    .news-section {
        flex-direction: column;
    }

    .news-item.large img {
        height: 200px;
    }

    .news-item.small img {
        width: 100px;
        height: 70px;
    }

    .news-list-section {
        flex-direction: column;
    }

    .news-tabs {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .matches-table {
        font-size: 12px;
        overflow-x: auto;
        display: block;
    }

    .matches-table th,
    .matches-table td {
        padding: 8px 5px;
        white-space: nowrap;
    }

    .bottom-section {
        flex-direction: column;
    }

    .featured-list {
        flex-direction: column;
    }

    .featured-item img {
        height: 120px;
    }

    .hot-news-item {
        flex-direction: column;
    }

    .hot-news-item img {
        width: 100%;
        height: auto;
    }

    .tags-list {
        justify-content: center;
    }

    .tags-list a {
        font-size: 12px;
        padding: 5px 12px;
    }

    .citiao-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .citiao-item img {
        height: 100px;
    }

    .citiao-title {
        font-size: 12px;
        padding: 8px;
    }

    .live-content {
        flex-direction: column;
    }

    .live-teams {
        gap: 20px;
    }

    .live-team img {
        width: 60px;
        height: 60px;
    }

    .live-team .team-name {
        font-size: 14px;
    }

    .live-score span:first-child,
    .live-score span:last-child {
        font-size: 28px;
    }

    .live-buttons {
        gap: 8px;
    }

    .live-buttons a {
        padding: 8px 15px;
        font-size: 13px;
    }

    .live-news-row {
        flex-direction: column;
    }

    .live-news-row img {
        width: 100%;
        height: 120px;
    }

    .hot-match-item {
        padding: 12px;
    }

    .match-left {
        width: 80px;
    }

    .hot-match-time {
        font-size: 13px;
    }

    .match-league-name {
        font-size: 11px;
    }

    .match-center {
        padding: 0 10px;
    }

    .match-team-row img {
        width: 24px;
        height: 24px;
    }

    .match-team-row span {
        font-size: 13px;
    }

    .match-status-tag {
        padding: 4px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px;
    }

    .logo img {
        height: 30px;
    }

    .news-item.large img {
        height: 150px;
    }

    .news-item.large .news-title {
        font-size: 14px;
        padding: 10px;
    }

    .news-item.small {
        flex-direction: column;
    }

    .news-item.small img {
        width: 100%;
        height: 120px;
    }

    .news-item-row .num {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 11px;
        margin-right: 10px;
    }

    .news-item-row p {
        font-size: 13px;
    }

    .featured-item img {
        height: 100px;
    }

    .featured-item p {
        font-size: 11px;
        padding: 8px;
    }

    .citiao-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .citiao-item img {
        height: 80px;
    }

    .citiao-title {
        font-size: 11px;
        padding: 6px;
    }

    .live-header {
        padding: 15px;
    }

    .live-teams {
        gap: 15px;
    }

    .live-team img {
        width: 50px;
        height: 50px;
    }

    .live-team .team-name {
        font-size: 12px;
    }

    .live-score span:first-child,
    .live-score span:last-child {
        font-size: 22px;
    }

    .live-buttons a {
        padding: 6px 12px;
        font-size: 12px;
    }

    .live-intro,
    .live-news,
    .related-matches,
    .hot-tags {
        padding: 15px;
    }

    .detail-title {
        font-size: 16px;
    }

    .live-intro p {
        font-size: 13px;
    }

    .news-content h4 {
        font-size: 13px;
    }

    .news-content p {
        font-size: 12px;
    }

    .tags-cloud a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .hot-match-item {
        padding: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .match-left {
        width: 70px;
    }

    .hot-match-time {
        font-size: 12px;
    }

    .match-league-name {
        font-size: 10px;
    }

    .match-center {
        flex: 1;
        padding: 0;
        width: calc(100% - 80px);
    }

    .match-team-row img {
        width: 20px;
        height: 20px;
    }

    .match-team-row span {
        font-size: 12px;
    }

    .match-status-tag {
        padding: 3px 8px;
        font-size: 10px;
    }
}

.league-page {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.league-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-section {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 14px;
    font-weight: bold;
    padding: 12px 15px;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
}

.sidebar-nav {
    padding: 5px 0;
}

.nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

.nav-arrow {
    font-size: 10px;
    color: #999;
}

.sidebar-nav-link {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.3s;
}

.sidebar-nav-link:hover {
    background-color: #f5f5f5;
    color: #ff6600;
}

.sidebar-nav-link.active {
    background-color: #ff6600;
    color: #fff;
}

.league-main {
    flex: 1;
}

.league-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6600 0%, #ff8c33 100%);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 15px;
}

.league-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
	text-align: center;
}

.league-info-left img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.league-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.league-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.league-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.league-info-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.info-label {
    opacity: 0.8;
}

.info-value {
    font-weight: bold;
}

.league-tabs {
    display: flex;
    gap: 5px;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tab-item {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.tab-item:hover {
    background-color: #f5f5f5;
    color: #ff6600;
}

.tab-item.active {
    background-color: #ff6600;
    color: #fff;
}

.league-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 25px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.league-section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
}

.section-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.champion-teams {
    display: flex;
    gap: 20px;
}

.champion-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.champion-team img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.champion-team .team-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.champion-team .team-titles {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
	.sidebar-nav {
	    display: none;
	}
	
	.league-info-left {
	    margin-left: 30%;
	}
	
	.main-news{
		margin-top: 20px;
	}
	
    .league-page {
        flex-direction: column;
    }

    .league-sidebar {
        width: 100%;
    }

    .league-header {
        flex-direction: column;
        align-items: flex-start;
		text-align: center;
        gap: 15px;
    }
	

    .league-info-left img {
        width: 60px;
        height: 60px;
    }

    .league-title {
        font-size: 20px;
    }

    .league-tabs {
        flex-wrap: wrap;
    }

    .tab-item {
        flex: none;
        padding: 10px 15px;
        font-size: 13px;
    }

    .champion-teams {
        flex-direction: column;
        align-items: center;
    }

    .champion-team {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .league-header {
        padding: 15px;
    }

    .league-info-left {
        /* flex-direction: column;
        align-items: flex-start; */
    }

    .league-info-left img {
        width: 70px;
        height: 70px;
    }

    .league-title {
        font-size: 18px;
    }

    .league-subtitle {
        font-size: 13px;
    }

    .league-content {
        padding: 15px;
    }

    .league-section-title {
        font-size: 15px;
    }

    .section-text {
        font-size: 13px;
    }

    .champion-team {
        padding: 12px;
    }

    .champion-team img {
        width: 45px;
        height: 45px;
    }

    .champion-team .team-name {
        font-size: 13px;
    }

    .champion-team .team-titles {
        font-size: 11px;
    }
}

.no-data{
	color: gray;
	padding: 15px;
}

.news-page {
    margin-bottom: 20px;
}

.news-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.news-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.news-breadcrumb a:hover {
    color: #ff6600;
}

.news-title-section {
    margin-bottom: 20px;
}

.news-page-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
}

.news-content-row {
    display: flex;
    gap: 20px;
}

.news-main-col {
    flex: 2;
}

.news-article-list {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.luxiang-article-list {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-article-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.news-article-card:last-child {
    border-bottom: none;
}

.news-article-image {
    flex-shrink: 0;
}

.news-article-image img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
}

.news-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-article-title {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.news-article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-article-title a:hover {
    color: #ff6600;
}

.news-article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-news {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 14px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.page-prev,
.page-next {
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.page-prev:hover,
.page-next:hover {
    background-color: #ff6600;
    color: #fff;
}

.page-num {
    padding: 8px 15px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.page-num:hover {
    background-color: #ff6600;
    color: #fff;
}

.page-num.active {
    background-color: #ff6600;
    color: #fff;
}

.news-sidebar-col {
    flex: 1;
}

.news-sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-sidebar-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-more {
    font-size: 13px;
    color: #ff6600;
    text-decoration: none;
    font-weight: normal;
}

.news-rel-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-rel-match-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.news-rel-match-item:hover {
    background-color: #f0f0f0;
}

.news-match-time {
    font-size: 13px;
    font-weight: bold;
    color: #ff6600;
}

.news-match-league {
    font-size: 11px;
    color: #999;
}

.news-match-name {
    font-size: 13px;
    color: #333;
}

.news-match-status {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.news-match-status.news-match-live {
    background-color: #ff6600;
    color: #fff;
}

.news-match-status.news-match-wait {
    background-color: #f0f0f0;
    color: #666;
}

.news-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-tags-cloud a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s;
}

.news-tags-cloud a:hover {
    background-color: #ff6600;
    color: #fff;
}

@media (max-width: 768px) {
    .news-content-row {
        flex-direction: column;
    }

    .news-article-card {
        flex-direction: column;
    }

    .news-article-image img {
        width: 100%;
        height: 150px;
    }

    .news-article-title {
        font-size: 16px;
    }

    .news-article-excerpt {
        font-size: 13px;
    }

    .news-pagination {
        flex-wrap: wrap;
    }

    .page-prev,
    .page-next,
    .page-num {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-page-title {
        font-size: 20px;
    }

    .news-article-list {
        padding: 15px;
    }

    .news-article-card {
        padding: 15px 0;
    }

    .news-article-image img {
        height: 120px;
    }

    .news-article-title {
        font-size: 15px;
    }

    .news-article-excerpt {
        font-size: 12px;
    }

    .news-sidebar-widget {
        padding: 12px;
    }

    .news-sidebar-title {
        font-size: 14px;
    }

    .news-tags-cloud a {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.news-detail-page {
    margin-bottom: 20px;
}

.news-detail-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.news-detail-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.news-detail-breadcrumb a:hover {
    color: #ff6600;
}

.news-detail-row {
    display: flex;
    gap: 20px;
}

.news-detail-main {
    flex: 2;
}

.news-detail-article {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.news-detail-title {
    font-size: 28px;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.news-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-detail-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.detail-main-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.news-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.detail-tag {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s;
}

.detail-tag:hover {
    background-color: #ff6600;
    color: #fff;
}

.news-detail-nextprev {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.prev-news,
.next-news {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.prev-news:last-child,
.next-news:last-child {
    margin-bottom: 0;
}

.prev-news a,
.next-news a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.prev-news a:hover,
.next-news a:hover {
    color: #ff6600;
}

.news-detail-latest {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.latest-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latest-more {
    font-size: 14px;
    color: #ff6600;
    text-decoration: none;
    font-weight: normal;
}

.latest-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.latest-news-item:last-child {
    border-bottom: none;
}

.latest-news-image img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.latest-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-news-title {
    font-size: 15px;
    margin: 0 0 8px 0;
}

.latest-news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.latest-news-title a:hover {
    color: #ff6600;
}

.latest-news-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail-sidebar {
    flex: 1;
}

.detail-sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.detail-sidebar-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.recommend-item:hover {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.recommend-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.recommend-rank.top {
    background-color: #ff6600;
    color: #fff;
}

.recommend-title {
    font-size: 13px;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-rel-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-rel-match-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.detail-rel-match-item:hover {
    background-color: #f0f0f0;
}

.detail-match-time {
    font-size: 13px;
    font-weight: bold;
    color: #ff6600;
}

.detail-match-name {
    font-size: 13px;
    color: #333;
}

.detail-match-status {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.detail-match-status.detail-match-live {
    background-color: #ff6600;
    color: #fff;
}

.detail-match-status.detail-match-wait {
    background-color: #f0f0f0;
    color: #666;
}

@media (max-width: 768px) {
    .news-detail-row {
        flex-direction: column;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .news-detail-content {
        font-size: 15px;
    }

    .latest-news-item {
        flex-direction: column;
    }

    .latest-news-image img {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .news-detail-article {
        padding: 15px;
    }

    .news-detail-title {
        font-size: 20px;
    }

    .news-detail-content {
        font-size: 14px;
    }

    .news-detail-nextprev {
        padding: 15px;
    }

    .news-detail-latest {
        padding: 15px;
    }

    .latest-title {
        font-size: 16px;
    }

    .detail-sidebar-widget {
        padding: 12px;
    }

    .detail-sidebar-title {
        font-size: 14px;
    }

    .recommend-title {
        font-size: 12px;
    }
}

.league-list-page {
    margin-bottom: 20px;
}

.league-banner-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.league-banner {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.league-banner.football {
	background: linear-gradient(135deg, #333 0%, #666 100%);
}

.league-banner.basketball {
    background: linear-gradient(135deg, #333 0%, #666 100%);
}

.league-banner.active {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #ff6600 0%, #ff8c33 100%);
}

.banner-content {
    text-align: center;
    color: #fff;
}

.liansai-banner-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.banner-desc {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.league-content-row {
    display: flex;
    gap: 20px;
}

.league-list-sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-nav-group {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: #f5f5f5;
    cursor: pointer;
}

.nav-arrow {
    font-size: 10px;
    color: #999;
}

.nav-group-links {
    padding: 5px 0;
}

.league-nav-link {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.3s;
}

.league-nav-link:hover {
    background-color: #f5f5f5;
    color: #ff6600;
}

.league-nav-link.active {
    background-color: #ff6600;
    color: #fff;
}

.league-list-main {
    flex: 1;
}

.league-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.liansai-section-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 20px 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
}

.recent-matches-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.recent-matches-list {
    display: inline-flex;
    gap: 15px;
}

.recent-match-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
    min-width: 100px;
}

.recent-match-item:hover {
    background-color: #f0f0f0;
}

.recent-match-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.liansai-match-name {
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

.match-count {
    font-size: 12px;
    color: #999;
    background-color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
}

.league-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.league-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.league-grid-item:hover {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.league-logo-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.league-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.league-name {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.league-links {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .league-banner-row {
        flex-direction: column;
    }

    .league-content-row {
        flex-direction: column;
    }

    .league-list-sidebar {
        width: 100%;
    }

    .league-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .liansai-banner-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .league-banner {
        padding: 20px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-desc {
        font-size: 13px;
    }

    .league-section {
        padding: 15px;
    }

    .league-section-title {
        font-size: 15px;
    }

    .league-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .league-grid-item {
        padding: 12px;
    }

    .league-logo-wrap {
        width: 50px;
        height: 50px;
    }

    .league-name {
        font-size: 13px;
    }

    .league-links {
        gap: 10px;
        font-size: 11px;
    }
}

.luxiang-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    border-bottom: 1px solid #eee;
}

.luxiang-item:hover {
    background-color: #f9f9f9;
}

.luxiang-item:last-child {
    border-bottom: none;
}

.luxiang-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.luxiang-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.luxiang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.luxiang-title {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxiang-time {
    font-size: 12px;
    color: #999;
}

.luxiang-title:hover{
    color: #ff6600;
}

@media (min-width: 768px) {
    .news-article-list {
        /* display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; */
    }
	
	.luxiang-article-list {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 10px;
	}

    .luxiang-item {
        border-bottom: none;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .luxiang-item:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		color: #ff8c33;
    }
	
	.luxiang-item a:hover {
	    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		color: #ff8c33;
	}

    .luxiang-icon {
        width: 36px;
        height: 36px;
    }

    .luxiang-icon img {
        width: 20px;
        height: 20px;
    }

    .luxiang-title {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .luxiang-time {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .luxiang-item {
        padding: 12px;
        gap: 10px;
    }

    .luxiang-icon {
        width: 32px;
        height: 32px;
    }

    .luxiang-icon img {
        width: 18px;
        height: 18px;
    }

    .luxiang-title {
        font-size: 13px;
    }

    .luxiang-time {
        font-size: 11px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.team-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.team-grid-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-logo-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.team-name-cn {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.team-name-en {
    font-size: 11px;
    color: #999;
}

.team-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.team-links span {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.team-links span:hover {
    color: #ff6600;
}

.no-team {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 14px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-grid-item {
        padding: 15px;
    }

    .team-logo-wrap {
        width: 60px;
        height: 60px;
    }

    .team-name-cn {
        font-size: 14px;
    }

    .team-name-en {
        font-size: 11px;
    }

    .team-links {
        gap: 12px;
    }

    .team-links span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .team-grid-item {
        flex-direction: row;
        padding: 12px 15px;
        gap: 15px;
        align-items: center;
        border-radius: 5px;
    }

    .team-logo-wrap {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .team-info {
        flex: 1;
        text-align: left;
    }

    .team-name-cn {
        font-size: 15px;
    }

    .team-name-en {
        font-size: 11px;
    }

    .team-links {
        margin-top: 0;
        gap: 10px;
    }

    .team-links span {
        font-size: 11px;
    }
}

.citiao-page {
    margin-bottom: 20px;
}

.citiao-title-section {
    margin-bottom: 20px;
}

.citiao-page-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #ff6600;
}

.citiao-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.citiao-grid-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.citiao-grid-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.citiao-image-wrap {
    width: 100%;
    padding-top: 66%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.citiao-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.citiao-grid-item:hover .citiao-image-wrap img {
    transform: scale(1.05);
}

.citiao-item-title {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    padding: 0 10px 10px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-citiao {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 14px;
    grid-column: 1 / -1;
}

.citiao-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .citiao-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .citiao-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .citiao-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .citiao-page-title {
        font-size: 20px;
    }

    .citiao-item-title {
        font-size: 12px;
    }

    .citiao-pagination {
        flex-wrap: wrap;
    }
}

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

    .citiao-page-title {
        font-size: 18px;
    }

    .citiao-image-wrap {
        padding-top: 75%;
    }

    .citiao-item-title {
        font-size: 12px;
    }
}

.side-bar {
    position: fixed;
    right: 10px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.side-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.side-item .icon {
    font-size: 18px;
    color: #ff6600
}

.side-item:hover{
    background-color: #ff6600;
    transform: translateY(-3px);
	color: white;
}

.side-item .icon:hover  {
    color: white;
}

.footer{
	padding-top: 30px;
}
.footer p{
	line-height: 30px;
}

.news-info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-time{
	color: gray;
	font-size: 12px;
}