/* 
game_gxklsc.css主游戏文件的css 
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-family: "PingFang SC", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
    line-height: 1.5;
}

/* 顶部样式 */
.header {
    background-color: #306cac;
    height: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lottery-section {
    display: flex;
    align-items: center;
}

.lottery-name {
    font-size: 0.45rem;
    font-weight: normal;
    white-space: nowrap;
    margin-right: 8px;
}

.lottery-dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
    margin-left: -10px;
}

.lottery-dropdown-btn.active {
    transform: rotate(180deg);
}

.market-section {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.market-text {
    font-size: 0.35rem;
}

.market-dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: -6px;

}

.header-buttons {
    display: flex;
    gap: 15px;
}

.header-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s;
    position: relative;
}

.header-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header-btn.muted{
    display: flex;
}

/* 账户信息栏 */
.account-info {
    position: fixed;
    top: 1.35rem;
    left: 0;
    right: 0;
    height: 1.2rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.account-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.account-label {
    font-size: 0.35rem;
    color: #555;
    margin-bottom: -2px;
}

.account-value {
    font-size: 0.34rem;
    color: #1e6bdc;
}

/* 上期开奖信息 */
.lottery-result {
    position: fixed;
    top: 2.6rem;
    height: 1.2rem;
    background-color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 98;
    width: 100%; /* 确保100%宽度 */
    left: 0;
    right: 0;
    box-sizing: border-box; /* 确保padding包含在宽度内 */
}

.period-info {
    display: flex;
    width: 20%; /* 或者固定宽度如 120px */
    flex-shrink: 0; /* 防止缩小 */
}

.period-label {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
}

.period-value {
    width: 110px;
    font-size: 0.35rem;
    color: #333;
    white-space: nowrap;
    margin-left:0.2rem;
}

.result-numbers {
    position: absolute;
    display: flex;
    align-items: center;
    flex: 1; /* 占据剩余空间 */
    justify-content: flex-start; /* 左对齐 */
    overflow-x: auto; /* 如果号码太多可以横向滚动 */
    white-space: nowrap; /* 防止换行 */
    margin-left:2.2rem;
    height:1.5rem;
}

/* 球号码样式 */
.ball-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
        

.plus-sign {
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* 历史开奖下拉按钮 */
.history-dropdown-btn {
    position: absolute !important;
    left: 8rem !important;
    background: none;
    border: none;
    color: #1e6bdc;
    font-size: 0.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.6rem;
    height: 0.6rem;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}

/* 当期信息栏 */
.current-period {
    position: fixed;
    top: 3.85rem;
    left: 0;
    right: 0;
    height: 1.2rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 97;
}

.current-period-info {
    display: flex;
    align-items: center;
}

.current-period-value {
    font-size: 0.35rem;
    color: #333;
    margin-left:0.2rem;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.countdown-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    font-size: 0.33rem;
    color: #666;
}

.countdown-time {
    color: #e74c3c;
}

.countdown-time2 {
    color: #00cd22;
}

.refresh-section {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
}

.refresh-btn {
    background: none;
    border: none;
    color: #1e6bdc;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.refresh-icon {
    font-size: 0.6rem;
    margin-top:-5px;
}

.refresh-countdown {
    font-size: 16px;
    color: #666;
    min-width: 15px;
    text-align: center;
    margin-left: -5px;
}

/* 投注区样式 */
.betting-container {
    margin-top: 0rem;
    display: flex;
    height: calc(100vh - 6.2rem);
    padding-bottom: 0px;
    box-sizing: border-box;
    overflow: hidden;
}

/* 导航区样式 */
.nav-sidebar {
    width: 25%;
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    overflow-x: hidden;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.nav-sidebar::-webkit-scrollbar {
    width: 6px;
}

.nav-sidebar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.nav-sidebar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 投注玩法区样式 */
.betting-area {
    flex: 1;
    background-color: #f8f8f8;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding: 0 2px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #fff;
}

.betting-area::-webkit-scrollbar {
    width: 6px;
}

.betting-area::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.betting-area::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.betting-section {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.betting-options {
    padding: 8px 0;
}

.betting-option-row {
    display: flex;
    margin-bottom: 10px;
}

.betting-option {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    background-color: #f8f8f8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 5px;
}

.betting-option:hover {
    background-color: #e9f3ff;
}

.betting-option.active {
    background-color: #1e6bdc;
    color: white;
}

.option-name {
    font-size: 12px;
    margin-bottom: 5px;
    color: #666;
}

.active .option-name {
    color: rgba(255, 255, 255, 0.8);
}

.option-value {
    font-size: 16px;
    font-weight: bold;
}

.quick-bet-amounts {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.quick-bet-amount {
    flex: 1;
    text-align: center;
    padding: 8px;
    background-color: #f0f0f0;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-weight: normal;
}

.quick-bet-amount:hover {
    background-color: #e0e0e0;
}

.place-bet-btn {
    width: 100%;
    padding: 14px;
    background-color: #1e6bdc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-bet-btn:hover {
    background-color: #1557b8;
}

/* 下拉菜单样式 */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 96;
    display: none;
}

.lottery-dropdown {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 0 0 5px 5px;
    padding: 5px;
    transform: translateY(-100%);
    transition: transform 0.2s ease-out;
    z-index: 101;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    overflow: hidden
}

.lottery-dropdown.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.dropdown-overlay.active {
    display: block;
}


.market-dropdown {
    position: fixed;
    bottom: 55px; /* 距离页面底部150px */
    left: 0;
    right: 0;
    background-color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 10px 20px 30px 20px; /* 调整padding：上右下左 */
    transform: translateY(100%);
    transition: transform 0.2s ease-out;
    z-index: 10001;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    font-size:0.4rem;
}

.market-dropdown.active {
    transform: translateY(0);
}

.market-list {
    display: flex;
    flex-direction: column;
}

.market-item {
    padding: 0.4rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: normal;
    text-align: center; /* 文字水平居中 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    min-height: 20px; /* 最小高度 */
    box-sizing: border-box; /* 确保padding包含在高度内 */
    font-size:0.4rem;
}

.market-item:last-child {
    border-bottom: none;
}

.market-item:hover {
    background-color: #f5f5f5;
}

.market-item.active {
    color: #1e6bdc;
    font-weight: bold;
}

/* 球号投注区样式 */
.ball-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.ball-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.ball-item:hover {
    background-color: #e9f3ff;
}

.ball-item.active {
    background-color: #ffffff;
    border: 2px solid #1e6bdc;
}

.ball-item.active::after {
    content: "✓";
    position: absolute;
    bottom: 2px;
    right: 2px;
    color: #1e6bdc;
    font-size: 14px;
    font-weight: bold;
}

.ball-item .ball-odds {
    font-size: 12px;
    color: #ff1900;
    font-weight: bold;
}

/* 玩法选项样式 */
.play-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex-wrap: nowrap;
}

.play-option {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: #f8f8f8;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.play-option:hover {
    background-color: #e9f3ff;
}

.play-option.active {
    background-color: #ffffff;
    border: 2px solid #0066cc;
    color: #333;
    border-radius: 4px;
}

.play-option.active::after {
    content: "✓";
    position: absolute;
    bottom: 2px;
    right: 2px;
    color: #0066cc;
    font-size: 14px;
    font-weight: bold;
}

.play-name {
    font-size: 14px;
    font-weight: bold;
}

.play-odds {
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
}

/* 单号1-7投注区样式 */
.ball-collapse-section {
    margin-bottom: 3px;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    overflow: hidden;
}

.ball-collapse-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
    height: 45px;
}

.ball-collapse-header:hover {
    background-color: #e9f3ff;
}

.ball-title {
    font-size: 16px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ball-collapse-btn {
    background: none;
    border: none;
    color: #1e6bdc;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
    margin-left: 5px;
}

.ball-collapse-btn.collapsed {
    transform: rotate(180deg);
}

.ball-collapse-content {
    padding: 15px;
    display: block;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.ball-collapse-content.collapsed {
    display: none;
    max-height: 0;
    padding: 0;
}

/* 两面玩法选项样式 */
.bothsides-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.bothsides-option.active {
    border-color: #0066cc;
    background-color: #ffffff;
}

.bothsides-option.active::after {
    content: "✓";
    position: absolute;
    bottom: 2px;
    right: 4px;
    color: #0066cc;
    font-size: 14px;
    font-weight: bold;
}

.bothsides-odds {
    font-size: 14px;
    color: #ff0000;
    font-weight: bold;
}

.bothsides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.bothsides-collapse-content {
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 0 0 4px 4px;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.bothsides-collapse-content.collapsed {
    max-height: 0;
    padding: 0;
}

/* 快捷投注区顶部按钮样式 */
.quick-top-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.quick-top-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #e6f2ff;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.quick-top-button.active {
    border: 2px solid #0066cc;
    background-color: #ffffff;
}

.quick-top-button.active::after {
    content: "✓";
    position: absolute;
    bottom: 2px;
    right: 4px;
    color: #0066cc;
    font-size: 14px;
    font-weight: bold;
}

/* 快捷投注顶部按钮新样式 */
.quick-top-button2 {
    flex: 1;
    min-height: 36px; /* 替代固定高度 */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #f8fafc;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-sizing: border-box;
    text-align: center;
}
/* 悬停效果 */
.quick-top-button2:hover {
    border-color: #9ca3af; /* 稍深一点的灰色边框 */
    background-color: #e5e7eb; /* 稍深一点的灰色背景 */
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 激活状态（高亮） */
.quick-top-button2.active {
    border-color: #3b82f6; /* 蓝色边框 */
    background-color: #ffffff; /* 白色背景 */
    color: #1e40af; /* 深蓝色文字 */
    font-weight: 600;
    box-shadow: 0 0 0 1px #3b82f6, 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* 激活状态悬停 */
.quick-top-button2.active:hover {
    border-color: #2563eb; /* 更深的蓝色 */
    box-shadow: 0 0 0 1px #2563eb, 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 按钮内部的文字元素 */
.quick-button-name {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 确保没有伪元素钩 */
.quick-top-button2::after,
.quick-top-button2::before,
.quick-top-button2.active::after,
.quick-top-button2.active::before,
.quick-button-name::after,
.quick-button-name::before,
.quick-button-name.active::after,
.quick-button-name.active::before {
    display: none !important;
    content: none !important;
}

/* 禁用状态 */
.quick-top-button2.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    border-color: #d1d5db !important;
    background-color: #f3f4f6 !important;
    color: #9ca3af !important;
    box-shadow: none !important;
    transform: none !important;
}


.quick-button-odds {
    font-size: 12px;
    color: #ff0000;
}

/* 色波投注区样式 */
.sebo-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.sebo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.sebo-option.active {
    border-color: #0066cc;
    background-color: #ffffff;
}

.sebo-option.active::after {
    content: "✓";
    position: absolute;
    bottom: 2px;
    right: 4px;
    color: #0066cc;
    font-size: 14px;
    font-weight: bold;
}

.sebo-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}

.sebo-odds {
    font-size: 12px;
    color: #ff0000;
    font-weight: bold;
}

.sebo-option.red .sebo-name {
    color: #e74c3c;
}

.sebo-option.green .sebo-name {
    color: #2ecc71;
}

.sebo-option.blue .sebo-name {
    color: #3498db;
}

/* 底部置顶导航栏样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bottom-nav-item.active {
    color: #0066cc;
}

.bottom-nav-item:active {
    background-color: #f0f0f0;
}

.bottom-nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

.bottom-nav-text {
    font-size: 12px;
}

/* 投注区导航样式 */
.tz_nav-item {
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 1px solid #cfcfcfff;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    font-weight: normal;
    position: relative;
    background-color: #E8E8E8;
}

.tz_nav-item:hover {
    background-color: #e9ecef;
}

.tz_nav-item.active {
    background-color: #FFF;
    color: black;
    font-weight: bold;
    position: relative;
    border-bottom: 0px solid #cfcfcfff;
    border-top: 0px solid #cfcfcfff;
}

.tz_nav-item.active::before,
.tz_nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #13BBEB;
}

.tz_nav-item.active::before {
    top: 1px;
}

.tz_nav-item.active::after {
    bottom: 1px;
}

/***********************投注区bgn***********************/
/* 保留原有样式 */
.table-style1 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    font-size: 14px;
    /* 关键：移除表格的左右外边距 */
    margin: 0;
}

.table-style1 th,
.table-style1 td {
    border: 1px solid #ddd;
    padding: 8px 12px;
}

.table-style1 th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.table-style1 tr:hover td {
    background-color: #f9f9f9;
}

/* 针对表格移除父容器的padding影响 */
/* 确保表格在投注区域内正确显示 */
.betting-area > table {
    margin-bottom: 15px !important;
}

.table_td_title{
    text-align:center;
    font-size:18px;
    font-weight:normal;
}

/* 新增样式：投注表格默认隐藏，激活时显示 */
.betting-table {
    display: none;
}

.betting-table.active {
    display: table;
}

/* 确保表格中的按钮样式不受其他影响 */
.betting-area button {
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
    font-size: 14px;
}


/* 新增：投注表格td点击样式 */
.betting-table tbody td {
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-sizing: border-box; /* 确保边框和内边距计算在内 */
}

.betting-table tbody td:hover {
    background-color: #f0f8ff;
}

/* 当td被点击时的激活状态 - 使用内阴影避免尺寸变化 */
/* 增加!important以覆盖内联样式 */
.betting-table tbody td.active {
    background-color: #ffffff !important;
    position: relative !important;
    /* 使用内阴影替代边框 */
    box-shadow: inset 0 0 0 2px #0066cc !important;
}

/* 右下角直角三角形 */
.betting-table tbody td.active::after {
    content: '';
    position: absolute !important;
    bottom: 0px !important;
    right: 0px !important;
    width: 0 !important;
    height: 0 !important;
    border-style: solid !important;
    border-width: 0 0 18px 18px !important;
    border-color: transparent transparent #0066cc transparent !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* 使用伪元素创建白色√符号 */
.betting-table tbody td.active::before {
    content: '';
    position: absolute !important;
    bottom: 4px !important;
    right: 4px !important;
    width: 7px !important;
    height: 3px !important;
    border: solid white !important;
    border-width: 0 0 1.5px 1.5px !important;
    transform: rotate(-45deg) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* 确保图片在td中居中显示 */
.betting-table tbody td img {
    display: block;
    margin: 0 auto;
    max-width: 40px;
    height: auto;
}
/*************  非投注选项样式 *************/
.betting-table tbody td.no-betting {
    cursor: default !important;
    background-color: #f9f9f9 !important;
}

.betting-table tbody td.no-betting:hover {
    background-color: #f9f9f9 !important;
}

/* 确保非投注选项不能被选中 */
.betting-table tbody td.no-betting.active {
    box-shadow: none !important;
}

.betting-table tbody td.no-betting.active::after,
.betting-table tbody td.no-betting.active::before {
    display: none !important;
}

/***********************投注区end***********************/
