/* 綵霸王論壇页面样式 */
/* 等待开发 */

/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* 头部样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* 菜单网格样式 */
.menu-grid {
    padding: 3px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

/* 占位元素，防止内容被固定头部遮挡 */
.header-spacer {
    height: 155px;
}

.menu-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1px;
}

.menu-item {
    flex: 1;
    min-width: calc(20% - 4px);
    margin: 2px;
    padding: 6px 2px;
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-item:active {
    background: #e0e0e0;
}

/* 菜单项激活状态样式 */
.menu-item.active {
    background: #dc3545 !important;
    color: white !important;
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 2px;
    transform: translateY(-1px);
}

/* 广告图片样式 */
img.banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

/* 主内容区域 */
.container-fluid {
    padding: 0;
}

.container-fluid:has(.lottery-section) {
    padding: 0 15px;
}

/* 开奖区域样式 */
.lottery-section {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

/* 标题样式 */
.title-section {
    margin-bottom: 12px;
    padding-bottom: 0;
}

.main-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.title-left {
    flex: 1;
    text-align: left;
}

.title-right {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 开奖号码区域样式 */
.numbers-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.numbers-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0 4px 0 0;
}

/* 开奖号码球样式 */
.number-ball {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.ball-number {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 2px;
    color: white;
    font-weight: 700;
}

.ball-label {
    font-size: 9px;
    line-height: 1;
    padding-top: 2px;
    margin-top: 2px;
    width: 75%;
    text-align: center;
    color: white;
    white-space: nowrap;
    border-radius: 0 0 25px 25px;
}

.number-ball.red {
    background-color: #dc3545;
    color: white;
}

.number-ball.blue {
    background-color: #0d6efd;
    color: white;
}

.number-ball.green {
    background-color: #28a745;
    color: white;
}

.plus-sign {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 加载文字 */
.loading-text {
    color: #6c757d;
    font-size: 16px;
    text-align: center;
    width: 100%;
    padding: 20px;
}

/* 历史开奖区域样式 */
.history-section {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 历史开奖按钮区域 */
.history-button-section {
    background: #f8f9fa;
    padding: 20px 16px;
    text-align: center;
}

/* 历史开奖查看按钮样式 */
.history-view-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
}

.history-view-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.history-view-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

/* 响应式设计 */
@media (max-width: 576px) {
    .lottery-section {
        padding: 12px;
    }
    
    .main-title {
        font-size: 15px;
    }
    
    .title-right {
        font-size: 13px;
    }
    
    .history-section {
        margin-top: 16px;
    }
    
    .history-button-section {
        padding: 16px 12px;
    }
    
    .history-view-btn {
        padding: 10px 24px;
        font-size: 15px;
        max-width: 100%;
    }
    
    .number-ball {
        min-width: 46px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .lottery-section {
        padding: 10px;
    }
    
    .main-title {
        font-size: 14px;
    }
    
    .number-ball {
        min-width: 44px;
        width: 44px;
        height: 44px;
    }
}

/* 心水專區样式 */
.xinshui-section {
    margin-top: 5px;
    background: #ffffff;
    border: 0px solid #333333;
    border-radius: 4px;
    overflow: hidden;
}

.xinshui-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #6a1b9a;
}

.xinshui-list {
    background: #ffffff;
    padding: 8px 0;
}

.xinshui-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    line-height: 1.8;
    flex-wrap: wrap;
}

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

.xinshui-label {
    background-color: #dc3545;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 6px;
    flex-shrink: 0;
}

.xinshui-period {
    color: #000000;
    font-weight: bold;
    margin-right: 4px;
    flex-shrink: 0;
}

.xinshui-destination {
    color: #000000;
    font-weight: bold;
    margin-right: 4px;
    flex-shrink: 0;
}

.xinshui-title {
    color: #6a1b9a;
    font-weight: bold;
    margin-right: 4px;
    flex-shrink: 0;
}

.xinshui-number {
    display: inline-block;
    background-color: #0d6efd;
    color: #ffffff;
    padding: 0 3px;
    border-radius: 2px;
    font-weight: bold;
    margin: 0 1px;
}

.xinshui-content {
    color: #000000;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .xinshui-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .xinshui-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .xinshui-label {
        font-size: 11px;
        padding: 1px 4px;
    }
}

/* pred01预测数据区域样式 */
.pred01-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred01-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred01-content {
    background: #ffffff;
    padding: 10px;
}

.pred01-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred01-table th {
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred01-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred01-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred01-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred01-content {
        padding: 8px;
    }
    
    .pred01-table {
        font-size: 12px;
    }
    
    .pred01-table th,
    .pred01-table td {
        padding: 6px 4px;
    }
}

/* pred02预测数据区域样式 */
.pred02-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred02-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred02-content {
    background: #ffffff;
    padding: 10px;
}

.pred02-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred02-table th {
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred02-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred02-table tbody tr:hover {
    background-color: #f8f9fa;
}

.pred02-hot-img {
    vertical-align: middle;
    margin-right: 4px;
    height: auto;
    max-height: 20px;
}

.pred02-period {
    color: #000000;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred02-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred02-content {
        padding: 8px;
    }
    
    .pred02-table {
        font-size: 12px;
    }
    
    .pred02-table th,
    .pred02-table td {
        padding: 6px 4px;
    }
}

/* pred03预测数据区域样式 */
.pred03-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred03-header {
    background-image: linear-gradient(to right, #beaafd, #ffffff);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred03-content {
    background: #ffffff;
    padding: 10px;
}

.pred03-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred03-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred03-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred03-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred03-content {
        padding: 8px;
    }
    
    .pred03-table {
        font-size: 12px;
    }
    
    .pred03-table td {
        padding: 6px 4px;
    }
}

/* 金牌圖庫区域样式 */
.jintu-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.jintu-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.jintu-content {
    position: relative;
    background: #ffffff;
    border: 3px solid #dc3545;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    min-height: 300px;
}

.jintu-label {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #dc3545;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

.jintu-image-container {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.jintu-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.jintu-authentic {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #dc3545;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.jintu-text {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .jintu-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .jintu-content {
        padding: 10px;
        margin: 8px;
    }
    
    .jintu-label {
        font-size: 11px;
        padding: 3px 8px;
        left: 15px;
    }
    
    .jintu-authentic {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }
    
    .jintu-text {
        font-size: 14px;
    }
}

/* pred04预测数据区域样式 */
.pred04-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred04-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred04-content {
    background: #ffffff;
    padding: 10px;
}

.pred04-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred04-table th {
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred04-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred04-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred04-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred04-content {
        padding: 8px;
    }
    
    .pred04-table {
        font-size: 12px;
    }
    
    .pred04-table th,
    .pred04-table td {
        padding: 6px 4px;
    }
}

/* pred05预测数据区域样式 */
.pred05-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred05-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred05-content {
    background: #ffffff;
    padding: 10px;
}

.pred05-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred05-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
    color: hsl(139deg 65% 21%);
}

.pred05-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred05-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred05-content {
        padding: 8px;
    }
    
    .pred05-table {
        font-size: 12px;
    }
    
    .pred05-table td {
        padding: 6px 4px;
    }
}

/* pred06预测数据区域样式 */
.pred06-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred06-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred06-content {
    background: #ffffff;
    padding: 10px;
}

.pred06-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred06-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred06-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred06-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred06-content {
        padding: 8px;
    }
    
    .pred06-table {
        font-size: 12px;
    }
    
    .pred06-table td {
        padding: 6px 4px;
    }
}

/* pred07预测数据区域样式 */
.pred07-section {
    margin-top: 5px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.pred07-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    color: #000000;
    padding: 0 10px;
}

.pred07-content {
    background: #ffffff;
    padding: 10px;
}

.pred07-table {
    margin-bottom: 0;
    font-size: 13px;
}

.pred07-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.pred07-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .pred07-header {
        font-size: 13px;
        line-height: 36px;
        height: 36px;
    }
    
    .pred07-content {
        padding: 8px;
    }
    
    .pred07-table {
        font-size: 12px;
    }
    
    .pred07-table td {
        padding: 6px 4px;
    }
}

/* ==================== pred08样式 ==================== */
.pred08-section {
    background: #fff;
    margin-bottom: 3px;
}

.pred08-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pred08-content {
    padding: 10px;
}

.pred08-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    background: #fff;
}

.pred08-table td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pred08-header {
        font-size: 14px;
        padding: 10px;
    }
    
    .pred08-content {
        padding: 8px;
    }
    
    .pred08-table td {
        padding: 6px 4px;
        font-size: 13px;
    }
}

/* ==================== pred09样式 ==================== */
.pred09-section {
    background: #fff;
    margin-bottom: 3px;
}

.pred09-header {
    background-image: linear-gradient(to right, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd, #beaafd);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    color: #000;
}

.pred09-content {
    padding: 10px;
    background: #ffe6f0;
}

.pred09-period-title {
    background: #fff;
    padding: 8px 10px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
}

.pred09-table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    background: #fff;
}

.pred09-table td {
    padding: 8px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.6;
    width: 50%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pred09-header {
        font-size: 13px;
        padding: 8px;
    }
    
    .pred09-content {
        padding: 8px;
    }
    
    .pred09-period-title {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .pred09-table td {
        padding: 6px 4px;
        font-size: 12px;
    }
}


