diff --git a/src/game_pages/detail/components/EmptyState/index.scss b/src/game_pages/detail/components/EmptyState/index.scss index 2bfc631..66ab5ed 100644 --- a/src/game_pages/detail/components/EmptyState/index.scss +++ b/src/game_pages/detail/components/EmptyState/index.scss @@ -39,7 +39,7 @@ transform: translateX(-50%); z-index: 1; padding: 8px 16px; - background: rgba(0, 0, 0, 0.05); // 白色背景下使用浅色背景 + background: rgba(0, 0, 0, 0.5); // 白色背景下使用浅色背景 border-radius: 4px; white-space: nowrap; @@ -48,7 +48,7 @@ font-weight: 400; font-size: 15px; line-height: 1.6; - color: rgba(0, 0, 0, 0.65); // 白色背景下使用深色文字 + color: #ffffff; // 白色背景下使用深色文字 text-align: center; } } @@ -85,19 +85,7 @@ opacity: 0.8; } - // 主要按钮(去看看其他球局) - &--primary { - background:#000000; - border: 2px solid rgba(0, 0, 0, 0.06); - color: #FFFFFF; - } - - // 次要按钮(返回首页) - &--secondary { - background: linear-gradient(154deg, rgba(255, 255, 255, 1) 0%, rgba(234, 234, 234, 1) 100%); - border: 2px solid rgba(0, 0, 0, 0.06); - } - + // 按钮文字样式 &_text { font-family: 'DingTalk JinBuTi'; font-weight: 400; @@ -107,6 +95,22 @@ text-align: center; color: #000000; } + + // 主要按钮(去看看其他球局) + &--primary { + background: #000000; + border: 2px solid rgba(0, 0, 0, 0.06); + + .empty_state_page__button_text { + color: #ffffff; // 黑色背景下使用白色文字 + } + } + + // 次要按钮(返回首页) + &--secondary { + background: linear-gradient(154deg, rgba(255, 255, 255, 1) 0%, rgba(234, 234, 234, 1) 100%); + border: 2px solid rgba(0, 0, 0, 0.06); + } } }