/* CSS Reset 和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础布局 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 响应式布局变量 */
:root {
    --container-width: 100%;
    --container-max-width: 1200px;
    --font-size-base: 14px;
    --font-size-sm: 12px;
    --font-size-xs: 10px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --header-height: 40px;
    --row-height: 36px;
    --title-size: 24px;
    --nav-font-size: 16px;
    --nav-padding: 12px 30px;
    --header-padding: 20px;
}

/* 响应式容器 */
.container {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-md);
    background: #fff;
}

/* 响应式表格布局 */
.table-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* 响应式网格系统 */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-md);
}

/* 响应式布局断点 */
@media screen and (max-width: 1200px) {
    .container {
        padding: var(--spacing-md);
    }
    
    .grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --font-size-base: 12px;
        --font-size-sm: 10px;
        --spacing-sm: 8px;
        --header-height: 20px;
        --row-height: 25px;
        --title-size: 20px;
        --nav-font-size: 14px;
        --nav-padding: 8px 20px;
        --header-padding: 15px;
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .table-cell {
        padding: 0 var(--spacing-xs);
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-tabs a {
        padding: var(--nav-padding);
        font-size: var(--nav-font-size);
    }
}

@media screen and (max-width: 576px) {
    :root {
        --spacing-sm: 6px;
        --spacing-md: 10px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-cell {
        padding: var(--spacing-xs) var(--spacing-xs);
        font-size: 12px;
    }
    
    .header h2 {
        font-size: 18px;
    }
}

/* 表格组件样式 */
.table-header {
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    color: #fff;
    font-weight: 500;
    display: flex;
    width: 100%;
    height: var(--header-height);
    align-items: center;
    padding: 0;
}

.table-body .table-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    height: var(--row-height);
    align-items: center;
    padding: 0;
    font-size: 18px;
}

.table-cell {
    padding: 0 var(--spacing-xs);
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--font-size-base);
    line-height: 1;
    height: 100%;
}

/* 按钮组件样式 */
.button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-primary {
    background: #1890ff;
    color: #fff;
}

.button-primary:hover {
    background: #40a9ff;
}

/* 搜索表单响应式样式 */
.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.search-item {
    display: flex;
    flex-direction: column;
}

.search-item label {
    margin-bottom: var(--spacing-xs);
}

.search-item input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 模态框响应式样式 */
.modal-content {
    width: 90%;
    max-width: 500px;
    margin: var(--spacing-lg) auto;
}

@media screen and (max-width: 576px) {
    .modal-content {
        width: 95%;
        margin: var(--spacing-md) auto;
    }
}

/* 广告容器响应式样式 */
.ad-container {
    width: 100%;
    margin: var(--spacing-lg) 0;
}

.ad-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.ad-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

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

/* 页面标题样式 */
.header {
    margin-bottom: var(--spacing-md);
    text-align: center;
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    padding: var(--header-padding);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.15);
}

.header h2 {
    font-size: var(--title-size);
    color: #fff;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

/* 导航标签样式 */
.nav-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-md);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    min-width: 60%;
}

.nav-tabs a {
    padding: var(--nav-padding);
    color: #666;
    text-decoration: none;
    font-size: var(--nav-font-size);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-tabs a.active {
    color: #fff;
    background: #1890ff;
}

.nav-tabs a:hover:not(.active) {
    color: #1890ff;
    background: rgba(24, 144, 255, 0.1);
}

/* 搜索表单样式 */
.search-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.search-item {
    flex: 1;
    min-width: 200px;
}

.search-item label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.search-item input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-item input:focus {
    border-color: #1890ff;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
    outline: none;
}

.search-button {
    background: #1890ff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    height: 42px;
}

.search-button:hover {
    background: #40a9ff;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

/* 表格容器样式 */
/* 在.table-container样式中添加以下内容 */
.table-container {
    /* 原有样式保持不变 */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    
    /* 新增水印样式 */
    position: relative;
}

/* 添加静态水印 */
.table-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="480" height="350" xmlns="http://www.w3.org/2000/svg"><text x="0" y="40" transform="rotate(-10 175,175)" font-weight="700" font-size="22" fill="%231890ff" opacity="0.3">微信公众号：皮皮虫弹幕</text></svg>'),
                      url('data:image/svg+xml;utf8,<svg width="450" height="350" xmlns="http://www.w3.org/2000/svg"><text x="0" y="40" transform="translate(175,175) rotate(-10 175,175)" font-weight="700" font-size="22" fill="%231890ff" opacity="0.3">微信公众号：皮皮虫弹幕</text></svg>');
    background-repeat: repeat;
}

/* 确保表格内容在水印之上 */
.table-header,
.table-body {
    position: relative;
    z-index: 2;
}    

/* 表头样式 */
.table-header {
    display: flex;
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    color: #fff;
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    font-size: 10px;
    height: 28px;
    padding: 0;
}

.table-header .table-cell {
    justify-content: center;
    text-align: center;
    font-size: 12px;
    padding: 0 4px;
    line-height: 1;
}

/* 表格行样式 */
.table-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    
}

.table-row:hover {
    background: #f8f9fa;
}

/* 单元格基础样式 */
.table-cell {
    padding: 0 var(--spacing-xs);
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--font-size-base);
    line-height: 1;
    height: 100%;
}

/* 玩法榜列宽和对齐方式 */
.play-ranking .table-cell:nth-child(1) { 
    width: 8%;
    min-width: 30px;
    justify-content: center;
    color: #fff;
    font-weight: 500;
   
}

.play-ranking .table-cell:nth-child(2) { 
    width: 20%;
    min-width: 70px;
 
    justify-content: center;
}

.play-ranking .table-cell:nth-child(3) { 
    width: 5%;
    min-width: 30px;
    
    justify-content: center;
}

.play-ranking .table-cell:nth-child(4) { 
    width: 5%;
    min-width: 30px;
   
    justify-content: center;
    padding-left: 0;
}

.play-ranking .table-cell:nth-child(5) { 
    width: 22%;
    min-width: 80px;
  
    justify-content: flex-start;
    padding: 0 var(--spacing-xs);
    white-space: nowrap;
    overflow: hidden;
}

.play-ranking .table-cell:nth-child(6) { 
    width: 15%;
    min-width: 50px;
   
    justify-content: center;
}

.play-ranking .table-cell:nth-child(5) span {
    display: inline-block;
    vertical-align: middle;
}

/* 主播榜列宽和对齐方式 */
.anchor-ranking .table-cell:nth-child(1) { 
    width: 8%;
    justify-content: center;
}

.anchor-ranking .table-cell:nth-child(2) { 
    width: 32%;
    justify-content: center;
}

.anchor-ranking .table-cell:nth-child(3) { 
    width: 35%;
    justify-content: center;
}

.anchor-ranking .table-cell:nth-child(4) { 
    width: 25%;
    justify-content: center;
}

/* 链接样式 */
.table-cell a {
    color: #1890ff;
    text-decoration: none;
    transition: color 0.3s;
    text-align: center;
}

.table-cell a:hover {
    color: #40a9ff;
}

/* 百分比变化样式 */
.percent-change {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    margin-left: 2px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 10px;
}

.percent-change.small {
    font-size: 10px;
    line-height: 1;
}

.percent-change.up {
    color: #f56c6c;
}

.percent-change.down {
    color: #67c23a;
}

/* 排名变化指示器 */
.rank-change {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    font-size: 12px;
    font-weight: 500;
}

.rank-change.up {
    color: #ff4d4f;
}

.rank-change.down {
    color: #52c41a;
}

/* 导航栏中的查询按钮 */
.search-trigger {
    padding: calc(var(--nav-padding) * 0.6);
    color: #fff;
    background: #1890ff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s;
    margin-left: calc(var(--spacing-sm) * 2);
}

.search-trigger:hover {
    background: #40a9ff;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1f1f1f;
    font-size: 18px;
}

.close {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #666;
}

.modal-body {
    padding: 20px;
}

.modal-body .search-item {
    margin-bottom: 15px;
}

.modal-body .search-item label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.modal-body .search-item input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 公告滚动样式 */
.notice-container {
    background: linear-gradient(135deg, #fff9f0, #fff5eb);
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.notice-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: #ff9800;
    animation: bounce 1s ease infinite;
}

.notice-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.notice-scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
    padding-right: 50px;
}

.notice-item {
    color: #ff6b00;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
}

.notice-item:last-child {
    margin-right: 0;
}

/* 滚动动画 */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* 广告轮播样式 */
.ad-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 20px auto;
    padding: 0 15px;
}

.ad-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.ad-slide {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.ad-group {
    min-width: 100%;
    display: flex;
    gap: 20px;
}

.ad-item {
    flex: 1;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-item:hover img {
    transform: scale(1.05);
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .ad-container {
        padding: 0 10px;
        margin: 15px auto;
    }

    .ad-group {
        gap: 10px;
    }
    
    .ad-item {
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    .ad-item {
        height: 100px;
    }
} 

/* 主播详情表格样式 */
.anchor-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.anchor-detail .table-header {
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    color: #fff;
    font-weight: 500;
    display: flex;
    width: 100%;
    height: var(--header-height);
    align-items: center;
}

.anchor-detail .table-header .table-cell {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: #fff;
    padding: 0 var(--spacing-sm);
    text-align: center;
    justify-content: center;
    height: 100%;
    display: flex;
    align-items: center;
}

.anchor-detail .table-cell.rank { width: 10%; }
.anchor-detail .table-cell.name { width: 35%; }
.anchor-detail .table-cell.value { width: 25%; }
.anchor-detail .table-cell.percentage { width: 30%; }

.anchor-detail .table-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.anchor-detail .table-row:hover {
    background: #f8f9fa;
}

.anchor-detail .table-cell {
    padding: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.anchor-detail .table-cell.rank {
    color: #1890ff;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
}

.anchor-detail .table-cell.name {
    justify-content: center;
}

.anchor-detail .table-cell.value {
    color: #ff4d4f;
    font-weight: 500;
    justify-content: center;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .anchor-detail .table-cell.name {
        padding-left: 15px;
    }
    
    .anchor-detail .table-cell {
        padding: 12px 8px;
        font-size: 14px;
    }
} 

/* 表格基础样式 */
.table-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* 表格行和单元格样式 */
.table-header {
    background: linear-gradient(135deg, #1890ff, #40a9ff);
    color: #fff;
    font-weight: 500;
    display: flex;
    width: 100%;
}

.table-body .table-row {
    display: flex;
    width: 100%;
   
    border-bottom: 1px solid #f0f0f0;
}
.table-cell {
    padding: var(--spacing-xs) var(--spacing-sm);
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--font-size-base);
    line-height: 1.4;
}

/* 玩法榜单特定样式 */
.play-ranking .table-cell.rank { 
    width: 8%; 
    min-width: 40px;
}
.play-ranking .table-cell.name { 
    width: 25%; 
    min-width: 100px;
}
.play-ranking .table-cell.type { 
    width: 12%; 
    min-width: 50px;
}
.play-ranking .table-cell.count { 
    width: 15%; 
    min-width: 60px;
}
.play-ranking .table-cell.play-active { 
    width: 25%; 
    min-width: 100px;
}
.play-ranking .table-cell.host-active { 
    width: 15%; 
    min-width: 60px;
}

/* 主播榜单特定样式 */
.anchor-ranking .table-cell:nth-child(1) { width: 8%; }
.anchor-ranking .table-cell:nth-child(2) { width: 32%; }
.anchor-ranking .table-cell:nth-child(3) { width: 35%; }
.anchor-ranking .table-cell:nth-child(4) { width: 25%; }

/* 响应式布局 - 大屏幕 */
@media screen and (min-width: 1200px) {
    :root {
        --title-size: 24px;
        --nav-font-size: 18px;
        --nav-padding: 12px 30px;
        --header-padding: 20px;
        --font-size-base: 20px;
        --font-size-sm: 16px;
    }
    
    .table-header {
        padding: var(--spacing-sm) 0;
    }
    
    .table-body .table-row {
        padding: var(--spacing-xs) 0;
    }
}

/* 响应式布局 - 中等屏幕 */
@media screen and (max-width: 1199px) {
    :root {
        --title-size: 22px;
        --nav-font-size: 15px;
        --nav-padding: 10px 25px;
        --header-padding: 18px;
        --font-size-base: 18px;
        --font-size-sm: 16px;
    }
    
    .table-header {
        padding: var(--spacing-xs) 0;
    }
    
    .table-body .table-row {
        padding: var(--spacing-xs) 0;
    }
}

/* 响应式布局 - 平板 */
@media screen and (max-width: 767px) {
    :root {
        --title-size: 20px;
        --nav-font-size: 14px;
        --nav-padding: 8px 24px;
        --header-padding: 15px;
        --font-size-base: 16px;
        --font-size-sm: 14px;
    }
    
    .nav-tabs {
        justify-content: flex-start;
    }
}

/* 响应式布局 - 手机 */
@media screen and (max-width: 480px) {
    :root {
        --title-size: 16px;
        --nav-font-size: 10px;
        --nav-padding: 4px 18px;
        --header-padding: 10px;
        --font-size-base: 14px;
        --font-size-sm: 10px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-width: 412px) {
    :root {
        --title-size: 14px;
        --nav-font-size: 10px;
        --nav-padding: 4px 14px;
        --header-padding: 10px;
        --font-size-base: 12px;
        --font-size-sm: 10px;
        
        
    }
    .play-ranking .table-cell:nth-child(1) { 
        min-width: 20px;
    }
    .play-ranking .table-cell:nth-child(2) { 
        min-width: 50px;
    }
    .play-ranking .table-cell:nth-child(3) { 
        min-width: 20px;
    }
    .play-ranking .table-cell:nth-child(4) { 
        min-width: 20px;
    }
    .play-ranking .table-cell:nth-child(5) { 
        min-width: 60px;
    }
    .play-ranking .table-cell:nth-child(6) { 
        min-width: 40px;
    }
    
    .nav-tabs {
        padding: 3px;
    }
}

/* 表格内容优化 */
.table-header .table-cell {
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0 var(--spacing-xs);
}

.play-ranking .table-cell:nth-child(1),
.anchor-ranking .table-cell:nth-child(1) {
    font-size: var(--font-size-sm);
}

.percent-change {
    font-size: var(--font-size-xs);
    margin-left: 2px;
}

.rank-change {
    font-size: var(--font-size-xs);
    margin-left: 2px;
}

/* 表格链接样式优化 */
.table-cell a {
    color: #1a73e8;
    text-decoration: none;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 玩法榜单和主播榜单共用的样式优化 */
.play-ranking .table-cell,
.anchor-ranking .table-cell {
    height: 100%;
    display: flex;
    align-items: center;
}

/* 百分比变化样式优化 */
.percent-change {
    margin-left: var(--spacing-xs);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

/* 活跃度值样式优化 */
.active-value {
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
} 
