.ContentComponent.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.ContentComponent .comments {
    display: flex;
    align-items: center;
    justify-content: left;
}

.ContentComponent .message-icon {
    width: 18px;
    margin-right: 2px;
}

.ContentComponent .news-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ContentComponent .news-meta {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
    gap: 8px;
    flex-wrap: wrap;
}

.ContentComponent .news-meta .dot {
    margin: 0 4px;
}

.ContentComponent .share-icons {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.ContentComponent .share-icons i {
    font-size: 18px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s;
}

.ContentComponent .share-icons i:hover {
    color: #409eff;
}

.ContentComponent .news-image-block {
    margin-bottom: 10px;
    width: 100%;
}

.ContentComponent .news-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 4px;
    display: block;
}

.ContentComponent .image-caption {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.ContentComponent .news-content {
    color: #222;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ContentComponent .news-content :deep(p) {
    margin-bottom: 16px;
}

.ContentComponent .news-content :deep(img) {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
    display: block;
}

.ContentComponent .article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ContentComponent .tag-label {
    color: #666;
    margin-right: 10px;
}

.ContentComponent .tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.ContentComponent .loading {
    text-align: center;
    color: #888;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ContentComponent .loading-pulse {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f3f3;
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.4);
    animation: pulse 1.5s infinite;
    margin-bottom: 15px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .ContentComponent.news-card {
        padding: 16px;
        border-radius: 8px;
    }

    .ContentComponent .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ContentComponent .news-meta {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .ContentComponent .news-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .ContentComponent .article-tags {
        margin-top: 20px;
        padding-top: 15px;
    }

    .ContentComponent .tag {
        padding: 3px 8px;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .ContentComponent.news-card {
        padding: 12px;
        box-shadow: none;
    }

    .ContentComponent .news-title {
        font-size: 18px;
    }

    .ContentComponent .share-icons {
        display: none;
        /* 在超小屏幕上隐藏分享图标 */
    }

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

    .ContentComponent .tag {
        padding: 2px 6px;
        font-size: 11px;
        margin-bottom: 5px;
    }
}

.news.content-page-wrapper {
    display: block;
    width: 100%;
}

.news .goOutByDefault {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    /* 清除背景 */
    outline: none;
}

.news .header-tip {
    height: 30px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news .header-tip a:hover {
    text-decoration: underline;
}

.news .container {
    background-color: #efefef;
    width: 100%;
    padding-bottom: 40px;
    display: felx;
    justify-content: center;
}

.news .main-container {
    background-color: white;
    padding: 20px;
    width: 1080px;
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0 40px;
    margin-bottom: 0px;
    box-sizing: border-box;
    min-height: 400px;
    /* 确保容器有最小高度 */
}

.news .home-container {
    display: flex;
    justify-content: space-between;
}

.news .left-container {
    width: 63%;
}

.news .right-container {
    width: 35%;
}

.news .mobile-item {
    display: none;
}

.news .pc-item {
    display: block;
    margin-bottom: 15px;
}



/* 加载状态样式 */
.news .loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: #666;
}

.news .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 错误状态样式 */
.news .error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    color: #666;
}

.news .retry-button {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.news .retry-button:hover {
    background-color: #0069d9;
}

@media (max-width: 1100px) {
    .news .main-container {
        width: 95%;
        padding: 15px;
    }

    .news .mobile-item {
        display: block;
        margin-top: 15px;
    }

    .news .pc-item {
        display: none;
    }

    .news .left-container {
        width: 100%;
    }

    .news .home-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news .main-container {
        width: 100%;
        padding: 15px 10px;
        margin: 10px 0 0;
        border-radius: 6px;
    }

    .news .header-tip {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .news .loading-spinner {
        width: 30px;
        height: 30px;
    }
}

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



.SidePremierLeagueStats .ranking-title {
    color: #3b3f50;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 20px;
}

.SidePremierLeagueStats .goOutByDefault {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    /* 清除背景 */
    outline: none;
    cursor: pointer;
}

.SidePremierLeagueStats .goOutByDefault:hover {
    text-decoration: underline;
}

.SidePremierLeagueStats .ranking-table {
    border-radius: 10px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.SidePremierLeagueStats .ranking-base-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.SidePremierLeagueStats .ranking-index {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    justify-content: center;
    display: flex;
    color: grey;
}

.SidePremierLeagueStats .team-icon {
    width: 25px;
    margin-right: 4px;
}

.SidePremierLeagueStats .ranking-base-info,
.SidePremierLeagueStats .ranking-score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.SidePremierLeagueStats .ranking-score-item {
    width: 25px;
    text-align: center;
    color: grey;
}

.SidePremierLeagueStats .ranking-table-header {
    background-color: #161e26;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.SidePremierLeagueStats .ranking-table-data,
.SidePremierLeagueStats .ranking-table-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 0 2px;
    height: 50px;
    font-size: 12px;
    border-left: 4px solid #13d26c00;
}

.SidePremierLeagueStats .ranking-table-data:nth-child(-n + 5) {
    border-left: 4px solid #13d26c;
}

.SidePremierLeagueStats .ranking-table-title {
    background-color: #1f2c39;
    color: white;
}

.SidePremierLeagueStats #ranking-select {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    transition: all 0.2s ease-in-out;
}

.SidePremierLeagueStats #ranking-select:hover {
    border-color: #cccccc;
    background-color: #ffffff;
}

.SidePremierLeagueStats #ranking-select:focus {
    border-color: #3d91ff;
    box-shadow: 0 0 0 2px rgba(61, 145, 255, 0.2);
    background-color: #ffffff;
}

.SidePremierLeagueStats #ranking-select option {
    background-color: #ffffff;
    color: #333;
    padding: 10px;
}

.SidePremierLeagueStats .ranking-table-read-more {
    height: 40px;
    line-height: 40px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0 20px;
    color: #076cf1;
}

.SidePremierLeagueStats .even-row {
    background-color: #efefef;
}

/* 移动端适配样式 */
@media (max-width: 768px) {
    .SidePremierLeagueStats .mobile-hide {
        display: none;
    }

    .SidePremierLeagueStats .ranking-title {
        font-size: 18px;
        margin-top: 15px;
    }

    .SidePremierLeagueStats .ranking-table-data,
    .SidePremierLeagueStats .ranking-table-title {
        padding: 0 5px 0 2px;
        height: 45px;
        font-size: 12px;
    }

    .SidePremierLeagueStats .ranking-index {
        width: 15px;
        margin-right: 8px;
    }

    .SidePremierLeagueStats .ranking-score-item {
        width: 24px;
        font-size: 12px;
    }

    .SidePremierLeagueStats .ranking-team {
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
    }

    .SidePremierLeagueStats .team-icon {
        width: 20px;
        margin-right: 3px;
    }
}

/* 更小屏幕的适配 */
@media (max-width: 480px) {
    .SidePremierLeagueStats .ranking-title {
        font-size: 17px;
        margin-top: 12px;
    }

    .SidePremierLeagueStats .ranking-score-item {
        width: 20px;
        font-size: 12px;
    }

    .SidePremierLeagueStats .ranking-index {
        width: 14px;
        margin-right: 6px;
        font-size: 12px;
    }

    .SidePremierLeagueStats .ranking-team {
        max-width: 65px;
        font-size: 12px;
    }

    .SidePremierLeagueStats .team-icon {
        width: 15px;
        margin-right: 2px;
    }

    .SidePremierLeagueStats .ranking-table-data,
    .SidePremierLeagueStats .ranking-table-title {
        padding: 0 3px 0 2px;
        height: 40px;
    }

    .SidePremierLeagueStats #ranking-select {
        height: 32px;
        font-size: 13px;
    }

    .SidePremierLeagueStats .ranking-table-read-more {
        height: 35px;
        line-height: 35px;
        padding: 0 10px;
        font-size: 13px;
    }
}

.LatestNewsList.latest-news {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.LatestNewsList .article-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.LatestNewsList .article-item {
    width: 48%;
    margin-bottom: 30px;
}

.LatestNewsList .latest-news-title {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 20px;
}

.LatestNewsList .article-cover {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
}

.LatestNewsList .article-title {
    color: black;
    font-size: 16px;
    font-weight: 600px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.2;
}

/* 添加移动端适配 */
@media (max-width: 768px) {
    .LatestNewsList .article-list {
        justify-content: space-between;
    }

    .LatestNewsList .article-item {
        width: 48%;
        margin-bottom: 20px;
    }

    .LatestNewsList .article-title {
        font-size: 14px;
        margin-top: 5px;
        /* 限制标题长度 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
        display: block;
    }

    .LatestNewsList.latest-news {
        margin-top: 20px;
        padding: 15px;
    }

    .LatestNewsList .latest-news-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
    .LatestNewsList .article-item {
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .LatestNewsList .article-item>div:first-child {
        width: 120px;
        flex: 0 0 120px;
        margin-right: 10px;
    }

    .LatestNewsList .article-title {
        font-size: 13px;
        /* 限制为2行 */
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
        height: 2.6em;
        overflow: hidden;
    }

    .LatestNewsList.latest-news {
        margin-top: 15px;
        padding: 12px;
        border-radius: 6px;
    }

    .LatestNewsList .latest-news-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}