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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: linear-gradient(135deg, #6b2c91 0%, #8a3ab9 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 10px 0;
}

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

.logo img {
    width: 100%;
}

.header-nav {
    display: none;
}

.header-nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(107, 44, 145, 0.98);
    padding: 15px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-list li.active a {
    background: rgba(255, 255, 255, 0.2);
}

.nav-list li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.header-bottom {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
}

.sub-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sub-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 15px;
    transition: all 0.3s;
}

.sub-nav-list li.active a {
    background: #fff;
    color: #6b2c91;
}

.sub-nav-list li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero {
    background: linear-gradient(135deg, #5b1f7a 0%, #7c3aed 50%, #5b1f7a 100%);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.hero-right {
    position: relative;
    width: 100%;
    max-width: 400px;
	z-index: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 10px;
}


.hero1ss {
    background: linear-gradient(135deg, #5b1f7a 0%, #7c3aed 50%, #5b1f7a 100%);
    padding: 5px 0;
    position: relative;
    overflow: visible;
	height: 600px;
}

.hero1ss-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero1ss-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.hero1ss-logo img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.hero1ss-right {
    position: relative;
    width: 100%;
    max-width: 400px;
	z-index: 1;
}

.hero1ss-right img {
    width: 100%;
    border-radius: 10px;
}

.trophy-overlay {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 60px;
    height: 60px;
}

.trophy-overlay img {
    width: 100%;
    height: 100%;
}

.tourney-detail {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
   
	z-index: 9999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tourney-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tourney-trophy {
    width: 120px;
    height: auto;
}

.tourney-badge {
    text-align: center;
}

.tourney-badge-text {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #6b2c91;
    letter-spacing: 1px;
}

.tourney-badge-year {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    letter-spacing: 2px;
}

.tourney-content {
    flex: 1;
    min-width: 0;
}

.tourney-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.tourney-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

@media (max-width: 768px) {
    .tourney-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        margin-top: 15px;
		z-index: 9999;
    }
    
    .hero1ss {
	    background: linear-gradient(135deg, #5b1f7a 0%, #7c3aed 50%, #5b1f7a 100%);
	    padding: 5px 0;
	    position: relative;
	    overflow: visible;
		height: 350px;
	}

    .tourney-trophy {
        width: 100px;
    }

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

    .tourney-desc {
        font-size: 13px;
        text-align: left;
    }
}

.match-carousel {
    margin-top: -150px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.carousel-prev,
.carousel-next {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.match-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    flex: 1;
    padding: 5px 0;
    scrollbar-width: none;
}

.match-list::-webkit-scrollbar {
    display: none;
}

.match-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.match-time {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
	align-items: center;
}

.match-league {
    font-size: 10px;
    color: #999;
    margin-bottom: 10px;
	white-space: nowrap;       /* 禁止换行 */
	  overflow: hidden;           /* 超出隐藏 */
	  text-overflow: ellipsis;   /* 超出显示... */
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.team-badge img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.team-name {
    font-size: 11px;
    color: #333;
    margin-top: 5px;
}

.vs {
    font-size: 14px;
    font-weight: bold;
    color: #6b2c91;
}

.ones{
	flex: 2.4;
	display: flex;
}

.match-status {
    font-size: 10px;
    color: #999;
    margin-bottom: 10px;
	align-items: center;
}

.btn-bet {
    background: #6b2c91;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-bet:hover {
    background: #8a3ab9;
}

.main-content {
    padding: 20px 0;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-left {
    width: 100%;
}

.main-right {
    width: 100%;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.section-title h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.section-title .more {
    margin-left: auto;
    font-size: 12px;
    color: #6b2c91;
    text-decoration: none;
}

.live-tabs,
.result-tabs,
.news-tabs,
.ranking-tabs {
    display: flex;
    gap: 5px;
    list-style: none;
}

.live-tabs li a,
.result-tabs li a,
.news-tabs li a,
.ranking-tabs li a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.live-tabs li.active a,
.result-tabs li.active a,
.news-tabs li.active a,
.ranking-tabs li.active a {
    background: #6b2c91;
    color: #fff;
}

.match-tabs {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-item:hover {
    background: #f0f0f0;
}

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

.tab-text {
    font-weight: bold;
}

.tab-count {
    font-size: 11px;
    opacity: 0.8;
}

.tab-actions {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.action-btn {
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn.active {
    background: #6b2c91;
    color: #fff;
    border-color: #6b2c91;
}

.action-btn:hover {
    border-color: #6b2c91;
    color: #6b2c91;
}

.match-list-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.match-group {
    border-bottom: 1px solid #eee;
}

.match-group:last-child {
    border-bottom: none;
}

.group-title {
    padding: 10px 15px;
    background: #f8f8f8;
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.match-row {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    transition: background 0.2s;
}

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

.match-row:hover {
    background: #fafafa;
}



.box123{
	display: flex;
}

.match-league {
    width: 60px;
    color: #999;
    font-size: 11px;
	flex: 1;
	text-align: left;
	line-height: 45px;
	white-space: nowrap;       /* 禁止换行 */
	  overflow: hidden;           /* 超出隐藏 */
	  text-overflow: ellipsis;   /* 超出显示... */
}

.match-time {
    width: 65px;
    color: #666;
    text-align: center;
    font-size: 11px;
    line-height: 45px;
	align-items: center;
}

.match-status {
    width: 45px;
    text-align: right;
    color: #e74c3c;
    font-weight: bold;
    font-size: 11px;
	flex: 0.7;
	line-height: 45px;
	align-items: center;
}

.match-teams-info {
    flex: 4.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-info {
    display: flex;
    align-items: center;
	flex: 1.5;
    gap: 8px;
}

.team-info .team-name {
    font-size: 12px;
    color: #333;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-info .score {
    font-size: 14px;
    /* font-weight: bold; */
    color: #333;
    min-width: 20px;
    text-align: center;
}

.team-left {
    display: flex;
    align-items: center;
	flex: 1.5;
    gap: 8px;
    justify-content: flex-end;
}

.team-left .team-name {
    font-size: 12px;
    color: #333;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-left .score {
    font-size: 14px;
    /* font-weight: bold; */
    color: #333;
    min-width: 20px;
    text-align: center;
}

.team-topLeft {
    align-items: center;
	flex: 1.5;
    gap: 8px;
    justify-content: flex-end;
}

.team-topLeft .team-name {
    font-size: 12px;
    color: #333;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-topLeft .score {
    font-size: 14px;
    /* font-weight: bold; */
    color: #333;
    min-width: 20px;
    text-align: center;
}

.vs-separator {
    color: #ccc;
    font-size: 14px;
	flex: 0.2;
}

.match-anchor {
    width: 60px;
    text-align: right;
    color: #6b2c91;
	flex: 2.3;
    font-size: 11px;
}

.match-results {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.result-table {
    overflow-x: auto;
}

.result-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.result-table th,
.result-table td {
    padding: 8px 5px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.result-table th {
    background: #f8f8f8;
    color: #666;
    font-weight: normal;
}

.result-table td {
    color: #333;
}

.news-section {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

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

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

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

.news-img {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p a{
    color: gray;
	text-decoration: none;
}

.news-content a{
    color: black;
	text-decoration: none;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-meta span {
    font-size: 10px;
    color: #bbb;
}

.news-more {
    text-align: center;
    margin-top: 10px;
}

.news-more button {
    background: #f5f5f5;
    color: #6b2c91;
    border: none;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.news-more button:hover {
    background: #6b2c91;
    color: #fff;
}

.anchor-section {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

.anchor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anchor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.anchor-item:hover {
    background: #f8f8f8;
}

.hot-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hot-word {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anchor-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.anchor-info h4 {
    font-size: 13px;
    color: #333;
}

.anchor-info p {
    font-size: 11px;
    color: #999;
}

.ranking-section {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
	  white-space: nowrap;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  display: inline-block;
}

.ranking-item.top {
    background: linear-gradient(90deg, #fff8e1 0%, #fff 100%);
}

.ranking-item a{
    text-decoration: none;
}



.ranking-item.top .rank {
    color: #e74c3c;
    font-weight: bold;
}


.rank {
    width: 25px;
    text-align: center;
    color: #999;
}

.team-name {
    flex: 1;
    color: #333;
}

.team-name:hover{
    color: #8a3ab9;
}

.points {
    color: #6b2c91;
    font-weight: bold;
    width: 35px;
    text-align: right;
}

.wins, .draws, .losses {
    width: 20px;
    text-align: right;
    color: #666;
}

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

.ranking-more a {
    font-size: 12px;
    color: #6b2c91;
    text-decoration: none;
}

.footer {
    background: #2c2c2c;
    color: #999;
    padding: 30px 0 20px;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.link-group {
    width: 45%;
}

.link-group h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 5px;
}

.link-group ul li a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.link-group ul li a:hover {
    color: #fff;
}

.footer-contact {
    border-top: 1px solid #3c3c3c;
    padding-top: 20px;
}

.contact-info h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-logo {
    margin-top: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 11px;
}

.footer-bottom {
    border-top: 1px solid #3c3c3c;
    padding-top: 15px;
    margin-top: 20px;
    text-align: center;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.certifications img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.footer-bottom p {
    font-size: 11px;
}

.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:hover {
    background: #6b2c91;
    transform: translateY(-3px);
}

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

.side-item:hover .icon {
    color: #fff;
}

#backTop {
    opacity: 0;
    visibility: hidden;
}

#backTop.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 576px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-logo img {
        width: 100px;
        height: 100px;
    }

    .hero-right {
        max-width: 500px;
		z-index: 1;
    }
	
	
	
	.hero1ss-content {
	    flex-direction: row;
	    justify-content: space-between;
	}
	
	.hero1ss-logo img {
	    width: 100px;
	    height: 100px;
	}
	
	.hero1ss-right {
	    max-width: 500px;
		z-index: 1;
	}

    .trophy-overlay {
        width: 80px;
        height: 80px;
    }

    .match-card {
        min-width: 170px;
    }

    .link-group {
        width: 30%;
    }
}

@media (min-width: 768px) {
    .header-nav {
        display: block;
    }

    .nav-list {
        flex-direction: row;
    }

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

    .header-bottom {
        display: block;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }

    .hero-right {
        max-width: 600px;
		z-index: 1;
    }
	
	
	.hero1ss-logo img {
	    width: 120px;
	    height: 120px;
	}
	
	.hero1ss-right {
	    max-width: 600px;
		z-index: 1;
	}

    .match-card {
        min-width: 180px;
    }

    .row {
        flex-direction: row;
    }

    .main-left {
        width: 70%;
        padding-right: 15px;
    }

    .main-right {
        width: 30%;
        padding-left: 15px;
    }

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

    .link-group {
        width: 18%;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        width: 70%;
    }

    .footer-contact {
        width: 28%;
        border-top: none;
        padding-top: 0;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-logo img {
        width: 150px;
        height: 150px;
    }

    .hero-right {
        max-width: 700px;
    }
	
	
	.hero1ss-content {
	    gap: 30px;
	}
	
	.hero1ss-logo img {
	    width: 150px;
	    height: 150px;
	}
	
	.hero1ss-right {
	    max-width: 700px;
	}

    .trophy-overlay {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -20px;
    }

    .match-card {
        min-width: 200px;
    }

    .news-img {
        width: 180px;
        height: 120px;
    }

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

@media (min-width: 1200px) {
    .hero-right {
        max-width: 800px;
		margin-left: 10%;
    }
	
	
	.hero1ss-right {
	    max-width: 800px;
		margin-left: 10%;
	}

    .match-card {
        min-width: 220px;
        padding: 15px;
    }

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

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

    .vs {
        font-size: 18px;
    }

    .btn-bet {
        padding: 8px 20px;
        font-size: 13px;
    }

    .news-img {
        width: 200px;
        height: 130px;
    }
}

@media screen and (max-width: 750px) {
    .match-row {
        display: block;
        padding: 10px;
    }
	
	.ones{
		display: flex;
	}

    .match-league {
        width: auto;
        font-size: 12px;
        flex: 1;
        text-align: left;
        min-width: 0;
        order: 2;
    }

    .match-time {
        width: auto;
        font-size: 12px;
        flex: 1;
        text-align: left;
        min-width: 60px;
        order: 1;
    }

    .match-status {
        width: auto;
        font-size: 12px;
        flex: 1;
        text-align: right;
        min-width: 60px;
        order: 3;
    }
	
	

    .match-teams-info {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 5px 0;
        order: 4;
    }

    .team-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: right;
        gap: 2px;
        justify-content: flex-start;
    }

    .team-left .score {
        font-size: 12px;
        color: #333;
        min-width: auto;
        text-align: left;
    }

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

    .team-info .team-name {
        max-width: none;
        font-size: 12px;
        text-align: right;
    }

    .team-info .score {
        font-size: 12px;
        min-width: auto;
        text-align: right;
    }

    .vs-separator {
        flex: 0.1;
        text-align: center;
        font-size: 12px;
    }

    .match-anchor {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
		text-align: center;
        font-size: 12px;
        padding-top: 8px;
        /* border-top: 1px solid #f0f0f0; */
        order: 5;
    }

    .match-anchor .action-btn {
        flex: 1;
        height: 32px;
        border-radius: 4px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .match-league {
        width: 70px;
    }

    .match-time {
        width: 75px;
    }

    .match-status {
        width: 50px;
    }

    .team-info .team-name {
        max-width: 150px;
    }

    .match-anchor {
        width: 70px;
    }
}

.team-img{
	width: 30px;
	height: 30px;
	border-radius: 30px;
}

.match-anchor .active:hover{
	background-color: #bc52f8;
	color: #fff;
}

.match-league a{
	color: gray;
	text-decoration: none;
}

.article-breadcrumbs {
    padding: 10px 0;
    background: #fff;
    font-size: 12px;
    color: #999;
    border-bottom: 1px solid #eee;
}

.article-breadcrumbs a {
    color: #6b2c91;
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    text-decoration: underline;
}

.article-detail {
    padding: 20px 0;
}

.article-detail .container {
    display: flex;
    gap: 20px;
}

.article-main {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #999;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.article-body {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    display: block;
}

.content-infos img{
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
}

.article-body p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.article-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.article-tags span {
    font-size: 12px;
    color: #6b2c91;
}

.article-tags a {
    font-size: 12px;
    color: #6b2c91;
    text-decoration: none;
    padding: 3px 8px;
    background: #f5f0fa;
    border-radius: 4px;
}

.article-tags a:hover {
    background: #e8d8f5;
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #666;
}

.article-actions .action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.article-actions .action-item:hover {
    color: #6b2c91;
}

.article-nav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.article-nav a {
    color: #666;
    text-decoration: none;
}

.article-nav a:hover {
    color: #6b2c91;
    text-decoration: underline;
}

.article-prev {
    margin-bottom: 10px;
}

.article-next {
    text-align: right;
}

.article-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.writer-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.writer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.writer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.writer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.writer-info {
    flex: 1;
    min-width: 0;
}

.writer-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.writer-desc {
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.writer-follow {
    flex-shrink: 0;
}

.writer-follow button {
    padding: 5px 15px;
    background: #6b2c91;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
}

.writer-follow button:hover {
    background: #8a3ab9;
}

.writer-stats {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.writer-stats .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #6b2c91;
    display: block;
}

.writer-stats .stat-label {
    font-size: 12px;
    color: #999;
}

.writer-articles {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.writer-articles-title {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.writer-articles-title a {
    font-size: 12px;
    font-weight: normal;
    color: #999;
    text-decoration: none;
}

.writer-articles-list {
    padding: 10px;
}

.writer-article-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.writer-article-item:hover {
    background: #f8f8f8;
}

.writer-article-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.writer-article-info {
    flex: 1;
    min-width: 0;
}

.writer-article-info h4 {
    font-size: 13px;
    font-weight: normal;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.writer-article-time {
    font-size: 11px;
    color: #999;
}

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

    .article-sidebar {
        width: 100%;
    }

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

    .article-main {
        padding: 15px;
    }
}



a{
	text-decoration: none;
}

.tourney-detail122{
	position: relative;
	width: 100%;
	background-color: white;
	border-radius: 20px;
	padding: 15px;
}

.tourney-detail122-news{
	position: relative;
	width: 100%;
	border-radius: 20px;
	padding: 15px;
}

.live-section122{
	position: relative;
	width: 100%;
}

.matchinfo-card {
    background: linear-gradient(180deg, #6b2c91 0%, #3d1954 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.matchinfo-header {
    text-align: center;
    margin-bottom: 20px;
}

.matchinfo-league {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.matchinfo-time {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.matchinfo-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.matchinfo-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.matchinfo-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.matchinfo-flag {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 8px;
    object-fit: cover;
}

.matchinfo-teamname {
    font-size: 14px;
    font-weight: bold;
}

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

.matchinfo-vs-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.matchinfo-status {
    font-size: 12px;
    background: #fff;
    color:#6b2c91;
    padding: 4px 12px;
    border-radius: 12px;
}

.now-status{
	color:red;
}

.wait-status{
	color:#6b2c91;
}

.matchinfo-intro {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.matchinfo-intro-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.matchinfo-detail-row {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

.matchinfo-detail-label {
    color: #666;
    flex-shrink: 0;
    width: 100px;
}

.matchinfo-detail-value {
    color: #333;
    flex: 1;
}

.matchinfo-intro-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-top: 15px;
    text-align: justify;
}

.matchinfo-signal {
    background: #e8f4fd;
    border-radius: 12px;
    padding: 20px;
}

.matchinfo-signal-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.matchinfo-signal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.matchinfo-signal-btn {
    padding: 8px 16px;
    background: #6b2c91;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.matchinfo-signal-btn:hover {
    background: #461c62;
	transform: scale(1.05); /* 放大1.05倍，数值越大放得越大 */
}

@media (max-width: 768px) {
    .matchinfo-card {
        padding: 15px;
    }

    .matchinfo-flag {
        width: 50px;
        height: 50px;
    }

    .matchinfo-teamname {
        font-size: 12px;
    }

    .matchinfo-vs-text {
        font-size: 20px;
    }

    .matchinfo-detail-row {
        flex-direction: column;
        gap: 2px;
    }

    .matchinfo-detail-label {
        width: auto;
    }

    .matchinfo-signal-buttons {
        justify-content: center;
    }
}

.luxiang-list {
    margin-top: 10px;
}

.luxiang-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.luxiang-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.luxiang-link:hover {
    opacity: 0.7;
}

.luxiang-title {
    font-size: 14px;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
}

.luxiang-time {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .luxiang-item {
        padding: 10px 0;
    }

    .luxiang-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .luxiang-title {
        font-size: 13px;
        margin-right: 0;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.5;
    }

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

.news-lists{
	background-color: white;
	padding: 15px;
	border-radius: 15px;
}

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

.citiao-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.citiao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.citiao-card-link {
    display: block;
    text-decoration: none;
}

.citiao-card-img {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}

.citiao-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.citiao-card-info {
    padding: 10px;
}

.citiao-card-title {
    font-size: 13px;
    color: #333;
    font-weight: normal;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.citiao-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.citiao-card-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.citiao-author-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.citiao-card-views {
    flex-shrink: 0;
}

@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: 10px;
    }

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

    .citiao-card-info {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .citiao-grid {
        grid-template-columns: 1fr;
    }
}

.citiao-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.citiao-page-btn {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.citiao-page-btn:hover {
    border-color: #6b2c91;
    color: #6b2c91;
}

.citiao-page-btn.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.citiao-page-btn.disabled:hover {
    border-color: #ddd;
    color: #ccc;
}

.citiao-page-num {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.citiao-page-num:hover {
    border-color: #6b2c91;
    color: #6b2c91;
}

.citiao-page-num.active {
    background: #6b2c91;
    border-color: #6b2c91;
    color: #fff;
}

@media (max-width: 576px) {
    .citiao-pagination {
        flex-wrap: wrap;
        gap: 3px;
    }

    .citiao-page-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    .citiao-page-num {
        padding: 4px 10px;
        font-size: 12px;
    }
}

.news-lists{
	background-color: white;
	padding: 15px;
	border-radius: 15px;
}

.news-content p{
	text-indent: 0em;
}