@charset"utf-8";

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, Roboto, "PingFang SC", miui, "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    overflow-y: scroll;
}

html::-webkit-scrollbar {
    width: 13px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 15px;
    border: 2px solid #f1f1f1;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    flex: 0 0 auto;
}

.nav-center {
    flex: 1;
    justify-content: center;
    gap: 30px;
}

.nav-right {
    flex: 0 0 auto;
    gap: 20px;
}

.nav-left .logo img {
    height: 40px;
}

.nav-center a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s, transform 0.3s;
}

.nav-center a:hover {
    color: #3498db;
    transform: translateY(-2px);
}

.date-picker-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-picker-container form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input[type="date"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.date-input-wrapper input[type="date"]:hover {
    border-color: #3498db;
}

.date-input-wrapper input[type="date"]:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.date-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #888;
}

.date-picker-container button {
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    padding: 6px 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
}

.date-picker-container button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.auth-container {
    display: flex;
    align-items: center;
}

.auth-container button {
    background-color: #2ecc71;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
}

.auth-container button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.wrap {
    max-width: 1150px;
    margin: 60px auto 0 auto;
}

.status-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    border-radius: 50%;
}

.status-icon.live {
    background-color: #27ae60; /* 绿色 */
}

.status-icon.finished {
    background-color: #888888; /* 灰色 */
}

.status-icon.not-started {
    background-color: #3498db; /* 蓝色 */
}

.status-icon.playoffs {
    background-color: #e67e22; /* 橙色 */
}

.status-icon.half-time {
    background-color: #9b59b6; /* 紫色 */
}

.status-icon.pre-match {
    background-color: #16a085; /* 青色 */
}

#loading {
    display: none;
    text-align: center;
    margin-bottom: 10px;
}

.wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1px;
    background: #ffffff;
    font-size: 12px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wrap thead {
    background: #3498db;
    color: #ffffff;
}

.wrap thead th {
    padding: 6px 4px; 
    font-size: 15px; 
    line-height: 1.2;
}

.wrap th, .wrap td {
    border: 1px solid #e0e0e0;
    text-align: center;
    vertical-align: middle;
    padding: 4px 2px; 
    font-size: 14px; 
    line-height: 1.2; 
    white-space: nowrap;
}

.wrap th {
    font-weight: 600;
}

.wrap tr:nth-child(even) {
    background-color: #f9f9f9;
}

.wrap .vsTd .rank {
    color: #888888;
    font-size: 12px;
}

.wrap .vsTd .vs {
    color:#181818;
}

.wrap .goalLineTd div {
    font-size: 14px;
    padding: 1px 0;
}

.wrap .hadGL, .wrap .hhadGL {
    font-weight: bold;
    color: #3498db;
}

.wrap .oddsHeaderContainer, .wrap .oddsRow, .wrap .supportHeaderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap .oddsHeaderCell, .wrap .oddsCell, .wrap .supportHeaderCell {
    flex: 1;
    text-align: center;
    padding: 2px 0; 
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.wrap .oddsHeaderContainer .oddsHeaderCell:last-child,
.wrap .oddsRow .oddsCell:last-child,
.wrap .supportHeaderContainer .supportHeaderCell:last-child {
    border-right: none;
}

.wrap .hadOdds, .wrap .hhadOdds, .wrap .hadU, .wrap .hhadU {
    margin-bottom: 2px; 
}

.wrap .selectedOdds {
    background: #e74c3c !important;
    color: #ffffff !important;
    border-radius: 4px;
}

.wrap .selectedOdds .scoreText {
    color: #ffffff !important;
}

.wrap .scoreText {
    color: #e74c3c;
    font-weight: bold;
}

.wrap .oddsValue {
    font-weight: normal;
}

.portlet-content {
    background: #fdfdfd;
    margin-top: 1px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow-x: auto;
}

.weeks {
    margin-top: 10px; 
    margin-bottom: 1px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 2px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    box-sizing: border-box;
}

.weeks div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.match-date {
    margin-left: 8px;
    color: #666666;
    font-size: 14px;
}

.hideCss img {
    vertical-align: middle;
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.hideCss a {
    color: #3498db;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.hideCss a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.u-red {
    color: #E01212 !important;
}

.no-underline {
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .wrap { 
        width: 95%;
    }
}

@media (max-width: 768px) {
    .wrap th, .wrap td {
        padding: 2px;
        font-size: 12px;
    }

    .weeks {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 1px;
    }

    .weeks div {
        flex-direction: row;
        align-items: center;
    }

    .nav-center {
        gap: 15px;
    }
}

.detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.left-container {
    flex: 2;
    min-width: 200px;
    background-color: #f9f9f9;
    padding: 2px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-container label {
    font-weight: 500;
    color: #333333;
}

.left-container textarea {
    font-family: "Microsoft YaHei", sans-serif;
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 14px;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    flex-grow: 1;
}

.left-container textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.left-container button {
    padding: 6px 16px;
    font-size: 14px;
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
    align-self: flex-start;
}

.left-container button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.right-container {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.right-container table {
    width: 100%;
    border-collapse: collapse;
    /*margin-bottom: 8px;*/
    font-size: 12px;
}

.hafuOdds, .ttgOdds, .crsOdds {
    margin-bottom: 1px;
    padding: 0;
}

.hafuOdds td, .ttgOdds td, .crsOdds td {
    padding: 2px 1px;
}

.match-tables {
    margin-top: 1px;
}

.match-tables h3 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

.match-tables table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    background: #ffffff;
    font-size: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.match-tables th, .match-tables td {
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 6px 8px;
}

.match-tables th {
    background-color: #3498db;
    color: #ffffff;
}

.match-tables tr:nth-child(even) {
    background-color: #f9f9f9;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

.login-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333333;
}

.login-box input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

.login-box button {
    width: 100%;
    padding: 8px 0;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.login-box button:hover {
    background-color: #2980b9;
}

.login-error {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

.u-org {
    font-size: 16px;
    font-weight: bold;
    color: #e74c3c;
}

.total-goals-display {
    font-weight: bold;
    font-size: 13px;
    color: #e74c3c;
}

.original-score {
    font-weight: bold;
    font-size: 16px;
    color: #e74c3c;
}

.m-tableTitle span:last-child {
    margin-left: 10px;
    color: #e74c3c;
    /*font-weight: bold;*/
}

.live-score {
    font-weight: bold;
    font-size: 16px;
    color: #27ae60;
}

.live-score-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.live-score-container h2 {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.live-score-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3498db;
    margin: 8px auto 0;
    border-radius: 2px;
}

.live-match {
    background: #fdfdfd;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.live-match:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.live-match-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.live-match .team-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.live-match .team-info .team-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.live-match .score-info {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.live-match .status {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.live-match .status .status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.live-match .status.live .status-icon {
    background-color: #27ae60;
}

.live-match .status.finished .status-icon {
    background-color: #888;
}

.live-match .status.not-started .status-icon {
    background-color: #3498db;
}

.live-match .status.playoffs .status-icon {
    background-color: #e67e22;
}

.live-match .status.half-time .status-icon {
    background-color: #9b59b6;
}

.live-match .status.pre-match .status-icon {
    background-color: #16a085;
}

.live-match .event-list {
    font-size: 14px;
    color: #333;
    margin-top: 12px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-match .event-item {
    background: #eef2f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.league-filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.league-filter-container label {
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.league-filter-container select {
    padding: 6px 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.league-filter-container select:hover {
    border-color: #3498db;
}

.league-filter-container select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.live-score-toggle-container button {
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
}

.live-score-toggle-container button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.live-score-toggle-container button:active {
    transform: translateY(0);
}

.toggle-all-btn {
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
    margin-left: 20px; 
}

.toggle-all-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.toggle-all-btn:active {
    transform: translateY(0);
}

#backToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.3s;
}

#backToTopBtn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

#backToTopBtn:active {
    transform: translateY(0);
}

.selectedOdds {
    background: #e74c3c !important;
    color: #ffffff !important;
    border-radius: 4px;
}

.selectedOdds .scoreText {
    color: #ffffff !important;
}

.correctOdds {
    color: #ff5e01;
    /*font-weight: bold;*/
}

.oddsCell.selectedOdds span.correctOdds {
    color: #ffffff;
}

.match-phase {
    display: block;
    font-size: 12px;
    color: #555555;
    margin-top: 4px;
}

.markdown-editor-container {
    margin-top: 1px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 15px;
}

.markdown-editor-container textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 14px;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    flex-grow: 1;
    box-shadow: none;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.markdown-editor-container textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

.markdown-editor-container .save-markdown-btn {
    align-self: flex-end;
    background-color: #2ecc71;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
    white-space: nowrap;
}

.markdown-editor-container .save-markdown-btn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.markdown-editor-container .save-markdown-btn:active {
    transform: translateY(0);
}

/* 针对平板设备（宽度介于 768px 到 1200px） */
@media (min-width: 768px) and (max-width: 1150px) {
    .markdown-editor-container {
        max-width: 80%;
        padding: 1px 5px;
    }
    .markdown-editor-container textarea {
        min-height: 200px;
        font-size: 15px;
    }
    .markdown-editor-container .save-markdown-btn {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/* 针对移动设备（宽度小于 768px） */
@media (max-width: 767px) {
    .markdown-editor-container {
        padding: 10px 10px;
        max-width: 100%;
    }
    .markdown-editor-container textarea {
        min-height: 120px;
        font-size: 13px;
    }
    .markdown-editor-container .save-markdown-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }
}

.editor-toolbar {
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    display: flex !important;
    justify-content: flex-start !important;
    padding: 5px 10px !important;
    flex-wrap: wrap !important;
}

.editor-toolbar a {
    color: #333 !important;
    opacity: 0.8 !important;
    transition: color 0.3s, opacity 0.3s !important;
    margin-right: 10px;
}

.editor-toolbar a:hover {
    color: #3498db !important;
    opacity: 1 !important;
}

.editor-toolbar a.active {
    color: #e74c3c !important;
    border-bottom: 2px solid #e74c3c !important;
}

.CodeMirror {
    background-color: #ffffff !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    padding: 10px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    height: auto !important;
    min-height: 150px !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
}

.CodeMirror-focused {
    border-color: #3498db !important;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5) !important;
}

.CodeMirror-scroll {
    min-height: 150px !important;
    height: auto !important;
    overflow: hidden !important;
    text-align: left !important;
}

.editor-statusbar {
    background-color: #f9f9f9 !important;
    border-top: 1px solid #ddd !important;
    padding: 5px 10px !important;
    text-align: right !important;
    font-size: 12px !important;
    color: #888 !important;
}

.prediction-result-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
    padding: 10px 15px;
    border: 1px dashed #f1c40f;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(241, 196, 15, 0.1);
}

.prediction-scheme {
    flex: 1;
    border: 1px solid #ddd;
    padding: 1px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.prediction-scheme:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* scheme-one, scheme-two, scheme-three 不同色调边框 */
.prediction-scheme.scheme-one {
    border-color: #3498db; 
}
.prediction-scheme.scheme-two {
    border-color: #e74c3c;
}
.prediction-scheme.scheme-three {
    border-color: #8e44ad;
}
.prediction-scheme.scheme-three strong {
    color: #8e44ad;
}
.prediction-scheme.scheme-three .prediction-highlight {
    color: #8e44ad;
}
.prediction-scheme.scheme-three .recommended-range {
    background-color: #e8daef; 
    color: #8e44ad;
}

.prediction-scheme.scheme-three {
    /*padding: 10px 15px;*/ /* 设置统一的内边距 */
    /*margin: 5px 0;*/      /* 设置统一的上下外边距 */
    border: 1px solid;  /* 边框样式可自定义 */
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.prediction-scheme.scheme-three {

    border-color: #8e44ad;
}

.prediction-scheme .analysis-content p {
	color: #8e44ad;
    margin: 0;       /* 去除 p 标签默认外边距 */
    line-height: 1.2; /* 行高统一 */
    /*padding: 4px 0;*/  /* 如有需要，可设置上下内边距 */
}

.prediction-result-box .prediction-title {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #d35400;
    margin-bottom: 15px;
    text-align: center;
}

.prediction-result-box .prediction-highlight {
    color: #e74c3c;
    /*font-weight: bold;*/
}

.prediction-result-box .recommended-range {
    display: inline-block; 
    margin-left: 5px; 
    padding: 2px 6px;
    background-color: #ffe9c9; 
    border-radius: 4px;
    color: #c0392b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .prediction-result-box {
        flex-direction: column;
        align-items: stretch;
    }
}

.m-box#tz {
    background-color: #ffffff;
    border: 1px solid #ffffff;/*#e0e0e0*/
    border-radius: 8px;
    padding: 10px;
    margin-top: 1px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}
.m-box#tz .m-title {
    font-size: 20px;
    font-weight: bold;
    color: #181818;
    margin-bottom: 12px;
    position: relative;
}
.m-box#tz .m-title em {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #e01212;
    margin-right: 12px;
    vertical-align: middle;
}
.m-box#tz .m-featureAnalysis {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.m-box#tz .m-featureAnalysis .m-left {
    flex: 1;
    text-align: right;
}
.m-box#tz .m-featureAnalysis .m-left .u-cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.m-box#tz .m-featureAnalysis .m-left .u-cont .chart {
    margin: 0;
}
.m-box#tz .m-featureAnalysis .m-center {
    width: 154px;
    text-align: center;
    font-size: 16px;
    color: #181818;
    padding: 0 15px;
}
.m-box#tz .m-featureAnalysis .m-right {
    flex: 1;
    text-align: left;
}
.m-box#tz .m-featureAnalysis .m-right .u-cont {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.m-box#tz .m-featureAnalysis .m-right .u-cont .chart {
    margin: 0;
}
.m-box#tz .m-featureAnalysis .u-cont {
    display: flex;
    align-items: center;
    height: 28px;
    margin-bottom: 16px;
    justify-content: space-around;
}
.m-box#tz .m-featureAnalysis .u-cont .data {
    font-size: 14px;
    color: #181818;
}
.m-box#tz .m-featureAnalysis .u-cont .chart {
    width: 100%;
    height: 12px;
    background: #f5f5f5;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}
.m-box#tz .m-featureAnalysis .u-bgRed {
    background: #e01212;
    height: 100%;
    display: inline-block;
}
.m-box#tz .m-featureAnalysis .u-bgGrey {
    background: #999;
    height: 100%;
    display: inline-block;
}

.m-box#tz .m-featureAnalysis .m-left .u-cont .chart {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex: 1; /* 占据剩余空间 */
    height: 12px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 5px; /* 两侧间隙 */
}

.m-box#tz .m-featureAnalysis .m-right .u-cont .chart {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    height: 12px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 5px;
}

.m-box#tz .m-featureAnalysis .u-cont .chart > .u-bgRed,
.m-box#tz .m-featureAnalysis .u-cont .chart > .u-bgGrey {
    flex: 0 0 auto;
    height: 100%;
    display: inline-block;
}

.progress-percentage {
    font-size: 10px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    margin: 0 5px;
}

.m-box.team-statis,
.team-statis-container {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.m-box.team-statis .m-title,
.team-statis-container .m-title {
    font-weight: bold;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    color: #181818;
    margin-bottom: 8px;
    position: relative;
}
.m-box.team-statis .m-title em,
.team-statis-container .m-title em {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #e01212;
    margin-right: 12px;
    vertical-align: middle;
}
.m-teamAnalysis {
    display: flex;
    flex-direction: column;
	align-items: center;
}
.m-teamAnalysis-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.m-teamAnalysis-title .m-left,
.m-teamAnalysis-title .m-right {
    flex: 1;
}
.m-teamAnalysis-title .m-left .u-tit,
.m-teamAnalysis-title .m-right .u-tit {
    font-size: 18px;
    color: #181818;
    display: flex;
    align-items: center;
}
.m-teamAnalysis-title .m-left .u-tit img,
.m-teamAnalysis-title .m-right .u-tit img {
    height: 56px;
    margin: 0 30px;
}
.m-teamAnalysis-title .m-center {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #666666;
}
.m-teamAnalysis-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 28px;
    margin-bottom: 5px;
}
.m-teamAnalysis-con .m-left,
.m-teamAnalysis-con .m-right {
    flex: 1;
}
.m-teamAnalysis-con .m-left .u-cont,
.m-teamAnalysis-con .m-right .u-cont {
    display: flex;
    align-items: center;
}
.m-teamAnalysis-con .m-left .u-cont .data,
.m-teamAnalysis-con .m-right .u-cont .data {
    display: inline-block;
    width: 56px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.m-teamAnalysis-con .m-center .u-cont {
    font-size: 16px;
    color: #181818;
    text-align: center;
    width: 154px;
}
.m-teamAnalysis-con .u-cont .chart {
    width: 360px;
    height: 12px;
    background: #f5f5f5;
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}
.m-teamAnalysis .u-bgRed {
    background: #e01212;
    height: 100%;
    display: inline-block;
}
.m-teamAnalysis .u-bgGrey {
    background: #999;
    height: 100%;
    display: inline-block;
}
/*翻页侧边栏*/
.date-nav-floating {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    width: 60px;
    height: 60px;
    background: rgba(28, 28, 30, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    opacity: 0.10;                                 /* 默认极淡 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.date-nav-floating.left  { left: 20px; }
.date-nav-floating.right { right: 20px; }

.date-nav-floating::before {
    content: '';
    width: 38px;
    height: 38px;
    background: linear-gradient(90deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%);
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    transition: all 0.3s ease;
}
.date-nav-floating.right::before { transform: scaleX(-1); }

.date-nav-floating.active,
.date-nav-floating:hover {
    opacity: 0.95 !important;
}

.date-nav-floating:hover {
    background: rgba(45, 45, 50, 0.98) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.1);
}
.date-nav-floating:hover::before {
    transform: scale(1.25) scaleX(-1);
    filter: brightness(1.6) drop-shadow(0 0 8px rgba(255,255,255,0.3));
}
.date-nav-floating.left:hover::before {
    transform: scale(1.25);
}

.date-nav-floating:active {
    background: rgba(65, 65, 75, 1) !important;
    transform: translateY(-50%) scale(0.94);
    transition: all 0.12s;
}

.date-nav-floating.loaded { opacity: 0.10; }

@media (max-width: 768px) {
    .date-nav-floating { opacity: 0.75 !important; }
    .date-nav-floating:hover { opacity: 0.90 !important; }
}

.odds-select {
    width: 92px;
    height: 22px;
    border: 1px solid #aaa;
    color: #666;
    margin: 0 10px 0 5px;
    font-size: 14px;
    border-radius: 3px;
}

.tj-btn {
    width: 70px;
    height: 25px;
    text-align: center;
    font: normal 14px/23px "微软雅黑";
    cursor: pointer;
    margin-right: 10px;
    border: 1px solid #0f3f94;
    background-color: #fff;
    color: #003f94;
    padding: 0;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.tj-btn:hover {
    background-color: #eff7ff;
}

.hb-table {
    border-collapse: collapse;
    border: 1px solid #c8e2ef;
    margin-bottom: 20px;
}

.hb-table th {
    height: 28px;
    line-height: 28px;
    background-color: #e8f6ff;
    font-weight: normal;
    color: #0060b7;
    border: 1px solid #c8e2ef;
    font-size: 14px;
    text-align: center;
}

.hb-table td {
    height: 38px;
    line-height: 38px;
    border: 1px solid #c8e2ef;
    text-align: center;
    font-size: 14px;
    padding: 5px;
}

.hb-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.result-h { color: #0d8b00; font-weight: bold; }
.result-d { color: #ff4200; font-weight: bold; }
.result-a { color: #0060b7; font-weight: bold; }

#ssxx {
    margin-top: 15px;
}
#ssxx .m-sub-title {
    margin-left: 10px;
    color: #e74c3c;
    font-size: 14px;
}
#ssxx .u-player {
    text-align: left;
}
#ssxx .u-player .number {
    color: #666;
    font-weight: bold;
}
#ssxx .u-player .role {
    color: #888;
    margin-left: 5px;
}