﻿.world-cup-container {
    background: #1C2232 url("../images/lobby/page_bg.png?1") 0 0 no-repeat;
    background-size: 100%;
}

.world-cup-content {
    width: 1200px;
    margin: 0 auto;
    padding: 34px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.world-cup-content * {
    box-sizing: border-box;
}

.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-title {
    width: 472px;
    height: auto;
}


.hero-section {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 18px;
}

.video-player-wrapper {
    flex: 1;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.countdown-wrapper {
    width: 413px;
    height: 360px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    /*gap: 45px;*/
    background: #242A3F;
    padding: 0 19px 36px;
    border-radius: 20px;
    box-sizing: border-box;
    margin-left: 20px;
}

.countdown-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #C8A96F;
    border-radius: 20px 0 20px 0;
    white-space: nowrap;
    height: 44px;
    line-height: 44px;
    margin: 36px 0 45px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.countdown-number {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    /*background: linear-gradient(180deg, #424242 0%, #353535 49%, #2a2a2a 51%, #222222 100%);*/
    padding: 0 14px;
    min-width: 90px;
    text-align: center;
    /*box-shadow: */
    /*0 4px 8px rgba(0, 0, 0, 0.4),*/
    /*inset 0 1px 0 rgba(255, 255, 255, 0.1),*/
    /*inset 0 -1px 0 rgba(0, 0, 0, 0.3);*/
    position: relative;
    /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);*/
    box-sizing: border-box;
}

.countdown-number,
.countdown-number-flip {
    background: url("../images/lobby/num-bg.png") 0 0 no-repeat;
    background-size: 100% 100%;
    line-height: 75px;
    height: 75px;
    border-radius: 10px;
    max-width: 90px;
    /*background: linear-gradient(180deg, #FFFFFF 39.62%, #BABABA 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /*-webkit-text-stroke: 0.39px #000000;*/
}

.countdown-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(255, 255, 255, 0.03) 100%);
    /*box-shadow: 0px 0.39px 0.31px 0px #626262;*/
    transform: translateY(-50%);
}

.countdown-number-flip {
    width: 80px;
    position: relative;
    perspective: 400px;
    box-sizing: border-box;
}

.flip-card-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    /*background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 49%, #222222 51%, #1a1a1a 100%);*/
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: */
    /*0 4px 8px rgba(0, 0, 0, 0.4),*/
    /*inset 0 1px 0 rgba(255, 255, 255, 0.1),*/
    /*inset 0 -1px 0 rgba(0, 0, 0, 0.3);*/
}

.flip-card-top,
.flip-card-bottom {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.flip-card-top {
    top: 0;
    background: linear-gradient(180deg, #424242 0%, #353535 100%);
    transform-origin: bottom;
    border-radius: 10px 10px 0 0;
    z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flip-card-top .flip-number {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: 10;
}

.flip-card-bottom {
    bottom: 0;
    background: linear-gradient(180deg, #2a2a2a 0%, #222222 100%);
    transform-origin: top;
    border-radius: 0 0 10px 10px;
    z-index: 1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flip-card-bottom .flip-number {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-number {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flip-card-top.flipping {
    animation: flipTop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 3;
}

.flip-card-bottom.flipping {
    animation: flipBottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 2;
}

@keyframes flipTop {
    0% {
        transform: perspective(400px) rotateX(0deg);
    }

    100% {
        transform: perspective(400px) rotateX(-90deg);
    }
}

@keyframes flipBottom {
    0% {
        transform: perspective(400px) rotateX(90deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
    }
}

.countdown-label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.countdown-slogan {
    text-align: center;
    margin-top: 30px;
}

.slogan-main {
    font-size: 26px;
    color: #999999;
    margin-bottom: 4px;
    letter-spacing: 20%;
}

.slogan-sub {
    font-size: 16px;
    line-height: 24px;
    color: #999999;
}

.ad-banner {
    width: 100%;
    height: auto;
    cursor: pointer;
    margin-bottom: 50px;
}

.ad-banner img,
.ad-img {
    width: 100%;
    height: auto;
    display: block;
}

.gift-title-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.gift-title-img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.promo-section,
.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    width: 100%;
}

.promo-card {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 0 15px 15px 15px;
    overflow: hidden;
}

.promo-card:hover {
    transform: scale(1.02);
}

.promo-card img,
.promo-img {
    width: 100%;
    height: auto;
    display: block;
}

.worldcup-activity-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 28px;
}

.worldcup-activity-banners .activity-banner-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.worldcup-activity-banners img {
    display: block;
    width: 100%;
    height: auto;
}

.section-block {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 30px;
}

.news-section .section-header {
    margin-top: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

.section-header .update-time {
    margin-left: auto;
    font-size: 16px;
    color: #ffffff;
    margin-right: 20px;
}

.section-icon {
    width: 26px;
    height: 26px;
}

.more-link {
    background: #C8A96F33;
    width: 120px;
    height: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.3s;
    border-radius: 0 30px 30px 8px;
}

.more-link:hover {
    color: #ffffff;
}

.arrow-right {
    font-size: 20px;
}

.match-red-list {
    width: 100%;
}

.match-red-list ul {
    width: 100%;
    display: flex;
    column-gap: 16px;
}

.match-red-list ul li {
    display: flex;
    column-gap: 10px;
    background: #262E44;
    border-radius: 9px;
    padding: 12px;
    box-shadow: 0 4.49px 8.97px 0 #0000001A;
    width: 390px;
}

.match-red-list ul li .rr {
    width: 75%;
}

.match-red-list ul li .img-header {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    margin: 12px auto;
}

.match-red-list ul li .text {
    font-size: 16px;
    color: #C2CAEC;
    margin-bottom: 12px;
}

.match-red-list ul li .tag {
    display: block;
    background: url("../images/lobby/tag-bg.png") 0 0 no-repeat;
    background-size: 100% 100%;
    width: 74px;
    height: 18px;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.match-red-list ul li .top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 8px;
}

.match-red-list ul li .level {
    background: #4D4DFF;
    min-width: 73px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #E1E9FF;
}

.match-red-list ul li .lv {
    font-size: 14px;
    color: #C6A45E;
}

.match-red-list .team-list {
    background: #25293D;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
    justify-content: center;
}

.match-red-list .team-list .team-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
}

.match-red-list .team-list .team-img img {
    max-width: 100%;
    max-height: 100%;
}

.match-red-list .team-list .item p {
    font-size: 14px;
    color: #E1E9FF;
    text-align: center;
    width: 7em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-red-list .team-list .vs {
    font-size: 27px;
    color: #E1E9FF;
    margin: 0 12px;
}

.match-red-list .info {
    background: #25293D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    color: #9EA7C4;
    margin-top: 8px;
    border-radius: 2px 8px 2px 8px;
}

.match-red-list .info img {
    width: 14px;
    vertical-align: text-top;
}

.match-red-list .info .time {
    font-size: 14px;
    color: #9EA7C4;
}


.video-list-wrapper {
    width: 95%;
    position: relative;
}

.video-list-wrapper .swiper-next-btn {
    right: -5%;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 150px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000000;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

.video-recommend {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.video-recommend img {
    height: 24px;
    width: auto;
}

.video-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
    z-index: 2;
}

.hot-icon {
    width: 18px !important;
    height: 18px !important;
    position: static;
    background: none;
}

.heat-count {
    font-size: 14px;
    color: #ffffff;
}

.duration {
    margin-left: auto;
    font-size: 14px;
    color: #ffffff;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.video-item:hover .video-play-overlay {
    opacity: 1 !important;
}

.video-play-overlay .play-icon {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
}

.video-title-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.video-title {
    flex: 1;
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.video-time {
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
    position: absolute;
    bottom: 3px;
    right: 0;
}

.news-list-wrapper {
    width: 95%;
    position: relative;
}

.news-list-static {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.news-list-static .news-item {
    min-width: 0;
}

.news-list-wrapper .swiper-next-btn {
    right: -5%;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.news-thumb {
    width: 100%;
    height: 160px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.news-title {
    flex: 1;
    font-size: 16px;
    color: #ffffff;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/

    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.news-time {
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
}

.news-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-btn {
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #B69F73;
    border-radius: 0 15px 15px 15px;
    background: transparent;
    color: #B69F73;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.3s;
}

.detail-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.swiper-next-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.swiper-next-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.swiper-next-btn .arrow-right {
    font-size: 24px;
    color: #ffffff;
}

.standings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
}

.group-card {
    background: #262E44;
    border-radius: 0 15px 15px 15px;
    overflow: hidden;
}

.group-header {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 10px;
    background: #C8A96F66;
}

.group-name {
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.group-stats-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-left: auto;
    width: 152px;
}

.group-stats-header span {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.group-teams {
    padding: 0;
}

.group-teams .team-row {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 10px;
}

.group-teams .team-row:first-child {
    border-top: none;
}

.group-teams .team-info {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.group-teams .rank {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.group-teams .team-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

.group-teams .team-name {
    font-size: 14px;
    color: #ffffff;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 152px;
}

.team-stats span {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.group-content,
.knockout-content {
    width: 100%;
}

.knockout-content>* {
    box-sizing: border-box;
}

.knockout-bracket-index {
    width: 100%;
    height: 720px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.30);
    position: relative;
    overflow: hidden;
}

.knockout-bracket-index .knockout-bracket-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.knockout-bracket-index .bracket-group {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.knockout-bracket-index .bracket-group-8 {
    z-index: 50;
}

.knockout-bracket-index .bracket-group-8-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.knockout-bracket-index .bracket-group-left,
.knockout-bracket-index .bracket-group-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.knockout-bracket-index .bracket-group-4 {
    width: 720px;
    height: 490px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 40;
}

.knockout-bracket-index .bracket-group-4-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.knockout-bracket-index .bracket-group-2 {
    width: 660px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
}

.knockout-bracket-index .bracket-group-2-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.knockout-bracket-index .bracket-group-1 {
    width: 190px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.knockout-bracket-index .bracket-group-1-content {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.knockout-bracket-index .match-wrapper {
    position: relative;
}

.knockout-bracket-index .match-box {
    width: 190px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    height: 150px;
    box-sizing: border-box;
}

.knockout-bracket-index .match-box-final {
    height: 240px;
    margin-top: 58px;
    padding-top: 80px;
    justify-content: space-evenly;
    gap: 5px;
}

.knockout-bracket-index .match-trophy {
    width: 82px;
    height: 127px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.knockout-bracket-index .match-box-header {
    text-align: center;
}

.knockout-bracket-index .match-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 4px;
}

.knockout-bracket-index .match-date {
    color: #999;
    font-size: 14px;
}

.knockout-bracket-index .match-box-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.knockout-bracket-index .team-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.knockout-bracket-index .team-slot .team-flag {
    width: 50px;
    height: 30px;
    object-fit: cover;
}

.knockout-bracket-index .team-slot .team-flag.team-flag-pending {
    object-fit: contain;
}

.knockout-bracket-index .team-seed {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
}

.knockout-bracket-index .match-score {
    flex-shrink: 0;
}

.knockout-bracket-index .vs-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.knockout-bracket-index .score-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.knockout-bracket-index .match-line {
    position: absolute;
    z-index: 20;
}

.knockout-bracket {
    padding: 40px;
    text-align: center;
}

.coming-soon {
    font-size: 18px;
    color: #999999;
}

.download-content {
    display: flex;
    justify-content: center;
    border-radius: 24px;
    padding: 119px 0 0 34%;
}

.download-qrcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-tip {
    margin-top: 30px;
    font-size: 16px;
    color: #333;
}

.qrcode-box {
    position: relative;
    width: 175px;
    height: 175px;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
    margin: 20px auto;
}

.qrcode-box .icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.download-qrcode {
    width: 100%;
    height: 100%;
}

.save-qrcode-btn {
    width: 93%;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background: linear-gradient(180deg, #E6C45E 0%, #B48B10 100%);
    border: none;
    border-radius: 0 0 14px 14px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-bottom: 22px;
}

.save-qrcode-btn:hover {
    opacity: 0.9;
}

.download-link-row {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #333;
}

.copy-link {
    font-size: small;
    color: #C8A96F;
    cursor: pointer;
}

.copy-link:hover {
    text-decoration: underline;
}

.section-title-bar {
    display: flex;
    align-items: center;
    padding: 0 26px;
    gap: 10px;
    width: 100%;
    height: 60px;
    background: url('../images/lobby/bg_video_title.png') center center no-repeat;
    background-size: cover;
    border-radius: 0 20px 0 0;
}

.section-title-bar img {
    width: 22px;
    height: 16px;
}

.section-title-bar h2 {
    font-size: 24px;
    font-weight: 500;
}

.section-title-bar .update-time {
    margin-left: auto;
    font-size: 20px;
}

.media-section {
    width: 100%;
    position: relative;
}

.media-slider {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    width: auto;
}

.media-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.media-thumb {
    width: 100%;
    height: 150px;
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-recommend {
    position: absolute;
    top: 10px;
    left: 10px;
}

.media-recommend img {
    height: 26px;
    width: auto;
}

.media-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.30);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
}

.media-info-bar .hot-icon {
    width: 18px;
    height: 18px;
}

.media-info-bar .heat,
.media-info-bar .duration {
    font-size: 14px;
    color: #ffffff;
}

.media-info-bar .duration {
    margin-left: auto;
}

.media-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.media-card:hover .media-play-overlay {
    opacity: 1;
}

.play-icon {
    width: 48px !important;
    height: 48px !important;
}

.media-title {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.media-time {
    font-size: 14px;
    color: #999999;
}

.next-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.events-section {
    width: 100%;
}

.events-content {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.30);
}

.events-tabs {
    display: flex;
    height: 80px;
    background: #262E44;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #999999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #ffffff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B69F73;
}

.tab-btn img {
    width: 20px;
    margin-right: 6px;
    filter: brightness(0.7);
    vertical-align: -3px;
}

.tab-btn.active img {
    filter: brightness(1);
}

.video-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-dialog-content {
    position: relative;
    width: 80%;
    max-width: 1200px;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-dialog-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-dialog-content video {
    width: 100%;
    height: auto;
    display: block;
}

.video-dialog-info {
    padding: 20px;
    background: #000000;
    color: #ffffff;
}

.video-dialog-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.video-dialog-meta {
    font-size: 14px;
    color: #999999;
}

.download-section {
    height: 500px;
    width: 100%;
    background: url('../images/lobby/bg_download01.png') center top no-repeat;
    background-size: 1200px auto;
    margin-top: 50px;
}

.download-left {
    width: 618px;
    background: url('../images/download/bg_download.png') center center no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-logo img {
    width: 180px;
    height: auto;
}

.download-title {
    font-size: 28px;
    font-weight: 600;
}

.download-features {
    display: flex;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item img {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-size: 16px;
}

.download-apps {
    display: flex;
    gap: 16px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-btn img {
    width: 24px;
    height: 24px;
}

.download-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.share-card,
.qrcode-card {
    flex: 1;
    background: url('../images/download/bg_link.png') center center no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-link {
    font-size: 24px;
    font-weight: 500;
}

.copy-btn,
.save-btn {
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, #D02443 0%, #FF6E3F 100%);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.copy-btn:hover,
.save-btn:hover {
    opacity: 0.9;
}

.qrcode-img-small {
    width: 80px;
    height: 80px;
}


.d-flex {
    display: flex;
    align-items: center;
}

.d-flex-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.full {
    width: 100%;
}

.hide {
    display: none;
}

.line-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.worldcup-group-match {
    flex: 0 0 324px;
    width: 324px;
    height: 692px;
    overflow-y: auto;
    margin-left: 0;
    padding-top: 2px;
    box-sizing: border-box;
}

.worldcup-group-match::-webkit-scrollbar {
    width: 0;
}

.group-match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.group-match-swiper .swiper-next-btn {
    background: transparent;
    right: 0;
    width: 30px;
    height: 30px;
}

.group-match-card {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    position: relative;
    background: #262E44;
    border-radius: 0 20px 20px 20px;
    padding: 12px 12px 14px;
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
}

.group-match-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 10px solid #262E44;
}

.worldcup-group-match .group-match-card.active::before {
    border-bottom: 8px solid #B69F73;
}

.gm-card-top p:first-child {
    color: #ccc;
}

.gm-card-top .js-play-match {
    cursor: pointer;
}

.gm-card-top a {
    background: #1E2231;
    color: #fff;
    width: 70px;
    height: 20px;
    border-radius: 0 30px 30px 8px;
    text-decoration: none;
    font-size: 12px;
}

.gm-card-game .item {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 4px;
}

.group-match-card .gm-card-game .item {
    flex-direction: column;
}

.group-match-card .gm-card-game .item.vs {
    flex-direction: initial;
}

.group-match-card .gm-result .item.active {
    background: #C8A96F;
}

.group-match-card .gm-result .item.active span,
.group-match-card .gm-result .item.active p {
    color: #fff;
}

.gm-card-game .item img {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.gm-card-game .item.vs span {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.gm-card-game p {
    width: 6em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.gm-result {
    column-gap: 5px;
}

.gm-result .item {
    width: 33.33%;
    background: #fff;
    border-radius: 0 10px 14px 14px;
    padding: 4px;
    text-align: center;
}

.gm-result .item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.gm-result .item p {
    font-size: 12px;
    color: #999;
}

.more-link.new_a {
    background: #C8A96F66;
    width: 120px;
    height: 30px;
    border-radius: 0 24px 24px 8px;
    font-size: 16px;
    color: #fff;
}

.more-link.new_a img {
    width: 14px;
    height: 14px;
    margin-left: 8px;
}

.guess-ball {
    width: 100%;
    display: flex;
    column-gap: 15px;
    margin-bottom: 50px;
}

.guess-ball>.item {
    flex: 1;
    background: url("../images/lobby/cq-title_bg.png") 0 0 no-repeat;
    background-size: 100% 100%;
    padding: 10px;
    cursor: pointer;
}

.guess-ball>.item .title {
    background: url("../images/lobby/cq-bg.png") 0 0 no-repeat;
    background-size: 100% 100%;
    width: 100%;
    max-width: 350px;
    height: 46px;
    font-size: 20px;
    font-weight: 500;
    color: #1B2A88;
    line-height: 56px;
    text-indent: 56px;
}

.guess-ball>.item>p {
    font-size: 16px;
    color: #fff;
    padding: 16px 12px 8px;
}

.guess-ball-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 12px 18px;
}

.guess-ball-team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.guess-ball-team.is-home {
    justify-content: flex-end;
}

.guess-ball-team.is-away {
    justify-content: flex-start;
}

.guess-ball-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.guess-ball-team-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guess-ball-vs {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.guess-ball .gm-result {
    column-gap: 5px;
}

.guess-ball .gm-result .item {
    background: #181C2A;
    border-radius: 0 10px 14px 14px;
    padding: 5px 2px;
    flex: 1;
}

.guess-ball .gm-result .item span {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.guess-ball .gm-result .item p {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
    padding-top: 3px;
}

.guess-ball .gm-result .item.active {
    background: #C8A96F;
}

.guess-ball .gm-result .item.active p {
    color: #fff;
}

.expert-picks {
    background: #262E44;
    border-radius: 10px;
    padding: 30px 20px;
    font-size: 16px;
    color: #fff;
}

.expert-picks .title-text {
    text-align: center;
    padding-bottom: 30px;
}

.expert-picks .title-text span {
    margin: 0 5px;
}

.expert-reconment {
    column-gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.expert-reconment .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 460px;
    height: 170px;
    box-sizing: border-box;
    background: #161616 url("../images/lobby/expert-0.png?v=1") 0 0 no-repeat;
    background-size: 100% 100%;
    padding: 15px 10px;
    text-align: center;
    border-radius: 0 15px 15px 15px;
}

.expert-reconment .item.active {
    background:
        url("../images/lobby/expert-top-icon.png?v=1") right top / 80px no-repeat,
        url("../images/lobby/expert-bottom-icon.png?v=1") right bottom / 40px no-repeat,
        url("../images/lobby/expert-1.png?v=1") 0 0 / cover no-repeat;
}

.expert-reconment .item img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
}

.expert-reconment .item p {
    margin-bottom: 8px;
    line-height: 22px;
}

.expert-reconment .item p.result {
    font-weight: 500;
}

.expert-reconment .item span {
    color: #999;
    line-height: 22px;
}

.expert-reconment .status {
    padding-top: 0;
}

.expert-reconment .vs {
    font-size: 24px;
    font-weight: 500;
    line-height: 21px;
}

.expert-picks .join_order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    opacity: 1;
    background: linear-gradient(180deg, #F4DE99 0%, #DDC478 100%);
    border-radius: 0 15px 15px 15px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    margin: 30px auto;
}

.expert-picks .join_order.disabled {
    opacity: .55;
}

.expert-list-swiper .expert-list {
    cursor: pointer;
}

.expert-reconment .item .name,
.expert-reconment .item .result {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.expert-list-swiper .expert-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: url("../images/lobby/expert-list.png?v=2") 0 0 no-repeat;
    background-size: 100% 100%;
    padding: 34px 12px 18px;
}

.expert-list-swiper .expert-list.active {
    background-image: url("../images/lobby/expert-list-act.png?=v1");
}

.expert-list-swiper .expert-list .match-stage {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 92px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
}

.expert-list-swiper .expert-list .item {
    font-size: 14px;
    color: #fff;
    width: 35%;
    text-align: center;
}

.expert-list-swiper .expert-list img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 10px;
}

.expert-list-swiper .expert-list p {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.star-players-tabs {
    background: #262E44;
    width: 100%;
    border-radius: 10px;
    padding: 30px 20px 20px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.star-players-tabs__nav {
    overflow: hidden;
}

.star-players-tabs__nav-item img {
    width: 85px;
    height: 85px;
    border: 1px solid transparent;
    border-radius: 100px;
    background: #0000004D;
}

.star-players-tabs__nav-item p {
    position: relative;
    z-index: 2;
    background: #282828;
    border-radius: 0 11px 11px 11px;
    width: 100%;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    margin-top: -14px;
    margin-bottom: 8px;
}

.star-players-tabs__nav-item span {
    font-size: 12px;
    color: #8A90A2;
}

.star-players-tabs__nav-item.is-active img {
    border: 1px solid #C8A96F;
}

.star-players-tabs__nav-item.is-active p {
    background: #C8A96F;
    color: #3F330F;
}

.star-players-tabs__panel {
    display: none;
}

.star-players-tabs__panel.is-active {
    display: block;
}

.star-players-tabs__content {
    overflow: hidden;
    margin-top: 20px;
}

.star-players-tabs .group-match-card {
    background: #00000080;
    margin-top: 0;
    padding: 20px 10px;
    grid-gap: 20px;
}

.star-players-tabs .gm-card-game .item img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.star-players-tabs .gm-card-top {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}

.star-players-tabs .gm-card-game .item {
    flex-direction: column;
}

.star-players-tabs .gm-result .item {
    background: #333;
    border-radius: 0 14px 14px 14px;
}

.star-players-tabs .gm-card-game .item.vs {
    width: 33%;
    flex-direction: initial;
}

.star-players-tabs .gm-card-game .item.vs.status {
    flex-direction: column;
}

.gm-card-game .item.vs {
    white-space: nowrap;
}

.star-players-tabs .gm-result .item span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.star-players-tabs .gm-result .item p {
    font-size: 12px;
    color: #fff;
    padding-top: 5px;
}

.star-players-tabs .gm-card-game .item.vs.status span:last-child {
    font-size: 12px;
    color: #8A90A2;
}

.star-players-tabs__content .group-match-card::before {
    display: none;
}

.star-players-tabs .swiper-pagination {
    bottom: 5px !important;
}

.star-players-tabs .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.star-players-tabs .swiper-pagination-bullet-active {
    width: 12px;
    background: #fff;
}

.worldcup-profit {
    width: 100%;
}

.section-rr {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    padding-left: 20px;
    padding-top: 1px;
}

.section-rr span {
    color: #fff;
}

.section-rr .imgs {
    display: flex;
    align-items: center;
    margin: 0 8px 0 6px;
}

.section-rr .imgs img {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    margin-left: -6px;
}

.danmaku-wrap {
    position: relative;
    width: 100%;
    height: 186px;
    overflow: hidden;
    margin-bottom: 30px;
}

.danmaku-wrap .track {
    position: absolute;
    left: 0;
    width: 100%;
    height: 44px;
    overflow: visible;
}

.danmaku-wrap .track:nth-child(1) {
    top: 0;
}

.danmaku-wrap .track:nth-child(2) {
    top: 74px;
}

.danmaku-wrap .track:nth-child(3) {
    top: 148px;
}

.danmaku-wrap .item {
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding: 4px;
    border-radius: 999px;
    background: #00000066;
    color: #fff;
    font-size: 16px;
    will-change: transform;
    animation-name: moveLeft;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.danmaku-wrap .item img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 100px;
    flex-shrink: 0;
    margin-right: 5px;
}

.danmaku-wrap .amount {
    font-size: 18px;
    color: #C8A96F;
    padding-top: 2px;
}

@keyframes moveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--move-distance)));
    }
}

.video-new-wrapper {
    background: url("../images/lobby/world-video-bg.png?2") 0 0 no-repeat;
    background-size: 100% 100%;
    padding: 26px;
    border-radius: 20px;
    box-sizing: border-box;
}

.video-new-wrapper .main-video {
    display: block;
    width: 100%;
    height: auto;
    min-height: 640px;
    border-radius: 20px;
    background: #000;
}

.video-new-wrapper .top-info {
    display: flex;
    align-items: center;
    column-gap: 35px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 22px;
    display: none;
}

.video-new-wrapper .top-info .d-flex {
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.video-new-wrapper .top-info .logo {
    width: 20px;
    height: 31px;
}

.video-new-wrapper .top-info .icon-live {
    display: block;
    width: 52px;
    height: 18px;
}

.video-new-wrapper .gm-card-game .item {
    min-width: 200px;
    column-gap: 10px;
    width: 100%;
}

.video-new-wrapper .gm-card-game .item:nth-child(1) {
    justify-content: flex-end;
}

.video-new-wrapper .gm-card-game .item:nth-child(3) {
    justify-content: initial;
}

.video-new-wrapper .gm-card-game .item.vs {
    min-width: initial;
    width: auto;
    margin: 0 44px;
}

.video-new-wrapper .gm-card-game .item p {
    width: initial;
}

.video-new-wrapper .gm-card-game .item img {
    margin: 0;
}

.popup-betting-tc {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.popup-betting-tc .popup-betting-body {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background: #1E2231;
    width: 360px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    color: #fff;
}

.popup-betting-tc .title {
    background: #242A3F;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-betting-tc .icon-ml {
    width: 30px;
    margin-right: 4px;
}

.popup-betting-tc .icon-close {
    width: 28px;
    margin-left: 10px;
    cursor: pointer;
}

.popup-betting-tc .icon-arrow {
    width: 16px;
}

.popup-betting-tc .icon-arrow.up {
    transform: rotate(180deg);
}

.popup-betting-tc .rr {
    position: relative;
}

.popup-betting-tc .section-select {
    display: flex;
    align-items: center;
    column-gap: 4px;
    width: 158px;
    font-size: 14px;
    color: #ADB1C9;
    background: #303857;
    border-radius: 6px;
    padding: 7px 6px 7px 8px;
    cursor: pointer;
    white-space: nowrap;
}

.section-select-drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 8px;
    z-index: 1001;
    width: 142px;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: left;
    grid-gap: 8px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.section-select-drop p:hover,
.section-select-drop p.active {
    color: #2A93FF;
}

.section-select-drop::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    z-index: 1001;
    transform: translateY(-50%);
    border-bottom: 8px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.popup-betting-tc .list-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    padding: 10px 10px 24px;
}

.popup-betting-tc .roundInfo {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    background: #313958;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    color: #9EA7C4;
}

.popup-betting-tc .roundInfo p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.popup-betting-tc .roundInfo em {
    font-size: 12px;
}

.popup-betting-tc .guess-balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    color: #ADB1C9;
    font-size: 14px;
}

.popup-betting-tc .guess-balance-row .js-user-balance {
    color: #E1E9FF;
    font-size: 16px;
    font-weight: 600;
}

.popup-betting-tc .form {
    background: #313958;
    border-radius: 6px;
    border: 1px solid #404455;
    padding: 13px 8px;
}

.popup-betting-tc .form .icon {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-right: 2px;
}

.popup-betting-tc .form-input {
    background: transparent;
    flex: 1;
}

.popup-betting-tc .form-input input {
    background: transparent;
    outline: 0;
    border: 0;
    font-size: 14px;
    color: #E1E9FF;
}

.popup-betting-tc .form-input input::placeholder,
.popup-betting-tc .form-input span {
    font-size: 14px;
    color: #999;
}

.popup-betting-tc .text {
    font-size: 14px;
    color: #999;
}

.popup-betting-tc .text2 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.popup-betting-tc .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 22px;
}

.popup-betting-tc .btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #475277 0%, #3C4564 100%);
    border-radius: 6px;
    width: 100%;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.popup-betting-tc .btns button.active {
    background: linear-gradient(180deg, #FFD06E 0%, #B78F3C 100%);
    color: #fff;
}

.popup-betting-tc .btns button.btn1 {
    background: linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%);
}

.popup-betting-tc .title2 {
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    padding: 16px 10px 8px;
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
}

.popup-betting-tc .title2 p {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.popup-betting-tc .title2 .icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.popup-betting-tc .info {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 14px;
}

.popup-betting-tc .info .row {
    display: flex;
    align-items: center;
}

.popup-betting-tc .info span {
    margin-right: 24px;
}

.popup-betting-tc .section-select-drop {
    display: none;
}

.popup-betting-tc .amount-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.popup-betting-tc .amount-list a {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #303857;
    border-radius: 6px;
    color: #E1E9FF;
    font-size: 14px;
}

.popup-betting-tc .keyboard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.08fr;
    grid-template-rows: repeat(4, 40px);
    gap: 6px;
}

.popup-betting-tc .keyboard .key {
    border: none;
    border-radius: 6px;
    background: #303857;
    font-size: 20px;
    font-weight: 500;
    color: #E1E9FF;
    cursor: pointer;
}

.popup-betting-tc .keyboard .key:hover {
    background: #C8A96F;
}

.popup-betting-tc .keyboard .key-delete,
.popup-betting-tc .keyboard .key-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-betting-tc .keyboard .key-delete img {
    width: 23px;
}

.popup-betting-tc .keyboard .key-image img {
    width: 20px;
}

.popup-betting-tc .keyboard .key-max {
    grid-column: 4;
    grid-row: 2 / 4;
    font-size: 14px;
}

.popup-betting-tc .popup-betting-content {
    border-top: 1px solid #404455;
    padding: 16px 14px 0;
}

.popup-betting-tc h2 {
    font-size: 20px;
    font-weight: 600;
    color: #E1E9FF;
    text-align: center;
    padding: 18px 14px 12px;
}

.popup-betting-tc h2 img {
    width: 22px;
    margin-right: 8px;
    vertical-align: middle;
}

.popup-betting-tc .popup-betting-content h3 {
    display: flex;
    column-gap: 10px;
    border-left: 3px solid #C8A96F;
    padding-left: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #E1E9FF;
}

.popup-betting-tc .roundName,
.popup-betting-tc .p-text {
    color: #8A90A2;
    font-size: 13px;
    text-align: center;
}

.popup-betting-tc .popup-betting-content .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-betting-tc .popup-betting-content .amount,
.popup-betting-tc .popup-betting-content .amount2 {
    font-size: 18px;
    font-weight: 700;
}

.popup-betting-tc .c-yellow,
.popup-betting-tc .c-yellow-2 {
    color: #FFC964;
}

.popup-betting-tc .popup-betting-content .btns {
    display: flex;
    border-top: 1px solid #404455;
    margin-top: 24px;
    margin-left: -14px;
    margin-right: -14px;
}

.popup-betting-tc .popup-betting-content .btns button,
.popup-betting-tc .popup-betting-content>button {
    flex: 1;
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #C8A96F;
    font-size: 16px;
    cursor: pointer;
}

.popup-betting-tc .popup-betting-content .btns button.cancel {
    color: #E1E9FF;
    border-right: 1px solid #404455;
}

.popup-betting {
    position: fixed;
    inset: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.popup-betting .popup-betting-body {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background: #2A314C;
    width: 360px;
    max-height: 86vh;
    overflow: hidden;
    border-radius: 8px;
    padding: 20px 14px;
    font-size: 14px;
    color: #E1E9FF;
}

.popup-betting h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

.popup-betting h2 img {
    width: 22px;
    margin-right: 8px;
    vertical-align: middle;
}

.popup-betting .p-text {
    font-size: 12px;
    color: #8A90A2;
    padding-bottom: 16px;
    text-align: center;
}

.popup-betting .popup-betting-content {
    border-top: 1px solid #404455;
    padding-top: 16px;
}

.popup-betting .popup-betting-content h3 {
    display: flex;
    column-gap: 10px;
    border-left: 3px solid #C8A96F;
    padding-left: 8px;
    margin-bottom: 10px;
    font-size: 16px;
}

.popup-betting .roundName {
    color: #8A90A2;
    padding-left: 10px;
}

.popup-betting .roundInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #475277;
    border-radius: 6px;
    margin: 16px auto;
    padding: 10px;
    color: #9EA7C4;
}

.popup-betting .roundInfo .ll p,
.popup-betting .roundInfo-list .roundInfo .name {
    color: #E1E9FF;
    font-weight: 600;
}

.popup-betting .roundInfo .rr p,
.popup-betting .roundInfo-list .roundInfo .payout {
    font-size: 18px;
}

.popup-betting .c-yellow,
.popup-betting .c-yellow-2,
.color-yellow {
    color: #C8A96F !important;
}

.color-green {
    color: #49AA51 !important;
}

.color-red {
    color: #EE504C !important;
}

.popup-betting .popup-betting-content .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-betting .popup-betting-content .amount,
.popup-betting .popup-betting-content .amount2 {
    font-size: 18px;
    font-weight: 700;
}

.popup-betting .popup-betting-content .btns {
    display: flex;
    border-top: 1px solid #404455;
    margin: 24px -14px 0;
}

.popup-betting .popup-betting-content .btns button,
.popup-betting .popup-betting-content>button {
    flex: 1;
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #C8A96F;
    font-size: 16px;
    cursor: pointer;
}

.popup-betting .popup-betting-content button.cancel {
    color: #E1E9FF;
    border-right: 1px solid #404455;
}

.popup-betting-box {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 1000;
    width: 430px;
    max-width: 96vw;
    max-height: 92vh;
    overflow: hidden;
    transform: translate(-50%, 100%);
    background: #181c2a;
    border-radius: 16px 16px 0 0;
    transition: transform .3s ease;
}

.popup-betting-box.show {
    transform: translate(-50%, 0);
}

.popup-betting-box .title {
    height: 44px;
    padding: 10px 14px;
    background: #C8A96F;
    border-radius: 16px 16px 0 0;
    font-size: 18px;
}

.popup-betting-box .title img {
    width: 24px;
    height: 24px;
}

.popup-betting-box .title .name {
    margin-left: 8px;
}

.popup-betting-box .title .cg {
    margin-left: 16px;
    padding: 2px 8px;
    border-radius: 37px;
    background: #fff;
    color: #C8A96F;
    font-size: 12px;
}

.popup-betting-box .betting-body,
.popup-betting-box .betting-wrapper,
.popup-betting-box .info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-betting-box .betting-body {
    margin: 10px 12px;
    color: #8A90A2;
}

.popup-betting-box .betting-wrapper {
    max-height: 75vh;
    overflow-y: auto;
}

.popup-betting-box .info,
.chuan-list {
    position: relative;
    background: #242A3F;
    border-radius: 8px;
    padding: 10px;
}

.popup-betting-box .info .icon-delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 20px;
}

.popup-betting-box .h3-text {
    color: #E1E9FF;
    font-weight: 600;
}

.popup-betting-box .payout {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.popup-betting-box .form-amount,
.chuan-list .form-input {
    border: 1px solid #C8A96F;
    border-radius: 8px;
    padding: 10px;
}

.popup-betting-box .form-amount input,
.chuan-list .form-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #E1E9FF;
}

.popup-betting-box .amount-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.popup-betting-box .amount-list a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #303857;
    border-radius: 8px;
    color: #E1E9FF;
}

.popup-betting-box .keyboard {
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1.08fr;
    grid-template-rows: repeat(4, 44px);
    gap: 6px;
}

.popup-betting-box .keyboard.show {
    display: grid;
}

.popup-betting-box .keyboard .key {
    border: 0;
    border-radius: 8px;
    background: #303857;
    color: #E1E9FF;
    font-size: 22px;
    cursor: pointer;
}

.popup-betting-box .keyboard .key:hover {
    background: #C8A96F;
}

.popup-betting-box .keyboard .key-max {
    grid-column: 4;
    grid-row: 2 / 4;
    font-size: 14px;
}

.popup-betting-box .betting-btn {
    display: flex;
    gap: 8px;
}

.popup-betting-box .betting-btn button {
    flex: 1;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #9EA5B0;
    color: #fff;
}

.popup-betting-box .betting-btn button:first-child {
    flex: 0 0 28%;
    background: #181c2a;
    border-color: #C8A96F;
    color: #C8A96F;
}

.popup-betting-box .betting-btn button.active {
    background: #C8A96F;
}

.popup-betting-box .total,
.chuan-list .row,
.chuan-list .row .ll,
.chuan-list .row .rr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.popup-betting-box .total {
    height: 28px;
    padding: 0 15px;
    background: #1D1D1D;
    color: #8A90A2;
}

.chuan-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chuan-list .form-input {
    width: 150px;
    background: #ffffff08;
    border: 0;
}

.chuan-list .form-input .js-parlay-amount {
    display: block;
    min-height: 18px;
    color: #E1E9FF;
}

.chuan-list .form-input .js-parlay-amount.is-empty {
    color: #8A90A2;
}

.chuan-list .form-input .js-parlay-amount.is-current {
    color: #C8A96F;
}

.popup-betting .roundInfo-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px auto;
}

.popup-betting .roundInfo-list.is-scroll {
    max-height: 258px;
    overflow-y: auto;
}

.popup-betting .roundInfo-list .roundInfo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
}

.slide-box-cg {
    position: fixed;
    top: 60%;
    right: 24px;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #C8A96F;
    cursor: pointer;
}

.slide-box-cg span {
    position: absolute;
    top: -3px;
    right: -3px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 100px;
    background: #D02443;
    color: #fff;
    font-size: 11px;
}

/* 热门专家推荐 */
.hot-zj-recomment {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    column-gap: 24px;
    margin-bottom: 50px;
}

.hot-zj-recomment .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    max-width: 120px;
    width: 120px;
}

.hot-zj-recomment .item .head-img {
    position: relative;
    width: 60px;
    height: 60px;
}

.hot-zj-recomment .item .head-img .hd {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.hot-zj-recomment .item .head-img span {
    position: absolute;
    z-index: 2;
    right: -8px;
    top: 0;
    background: #EE504C;
    font-size: 12px;
    color: #fff;
    border-radius: 100px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-zj-recomment .item .head-img .vip {
    position: absolute;
    z-index: 2;
    left: -8px;
    bottom: 0;
    width: 16px;
    height: 16px;
}

.hot-zj-recomment .item .head-img .vip-text {
    position: absolute;
    z-index: 2;
    left: -10px;
    bottom: -2px;
    min-width: 28px;
    height: 16px;
    padding: 0 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, #E8C98E 0%, #B69F73 100%);
    color: #221807;
    font-size: 10px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    font-style: normal;
}

.hot-zj-recomment .item p {
    width: 100%;
    font-size: 16px;
    color: #fff;
    margin: 12px 0;
    white-space: nowrap;
    /* 涓嶆崲琛?*/
    overflow: hidden;
    /* 瓒呭嚭闅愯棌 */
    text-overflow: ellipsis;
    /* 鏄剧ず鐪佺暐鍙?*/
    text-align: center;
}

.hot-zj-recomment .item button {
    display: block;
    background: #B69F73;
    min-width: 66px;
    padding: 0 10px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 0 11px 11px 11px;
    font-size: 12px;
    color: #fff;
}

.hot-zj-recomment .item button.is-fire {
    background: #D02443;
}

.wc-app-dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
}

.wc-app-dialog-overlay.show {
    display: flex;
}

.wc-app-dialog {
    position: relative;
    width: 400px;
    height: 224px;
    padding: 36px 44px 32px;
    background: #29324f;
    border-radius: 10px;
    color: #e9efff;
    text-align: center;
}

.wc-app-dialog-title {
    margin: -11px 10px 24px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}

.wc-app-dialog-text {
    margin: 0 0 34px;
    color: #8A90A2;
    font-size: 16px;
    /* line-height: 1.55; */
}

.wc-app-dialog-btn {
    display: block;
    width: 240px;
    height: 44px;
    margin: 0 auto;
    border-radius: 8px;
    background: #d2b170;
    color: #fff;
    font-size: 16px;
    line-height: 44px;
    text-decoration: none;
}

.wc-app-dialog-close {
    position: absolute;
    top: 12px;
    right: 17px;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.wc-app-dialog-close::before,
.wc-app-dialog-close::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: #e9efff;
}

.wc-app-dialog-close::before {
    transform: rotate(45deg);
}

.wc-app-dialog-close::after {
    transform: rotate(-45deg);
}