<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,body{
    overscroll-behavior: none;
}
.minigame-poppup {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 1vh;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    transition: all .2s ease-in-out;
}

.minigame-poppup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 2000000003;
}

.minigame-poppup canvas {
    max-width: 100%;
    max-height: 100%;;
    width: auto !important;
    height: auto !important;
}

.layout-mini-game-menu-box {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    transition: all .2s;
    z-index: 2000000001;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.layout-mini-game-menu-box.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.mini-game-menu-box {
    position: fixed;
    right: 0px;
    transition: all .2s;
    z-index: 2000000002;
    bottom: 125px;
    display: flex;
    justify-content: end;
    align-items: end;
}

.mini-game-menu-box.active {
    width: 250px;
    height: 220px;
}

.mini-game-menu-box .mini-game-menu-box-container {
    width: 110px;
    height: 110px;
    position: relative;
}

.mini-game-menu-box .main-icon-box {
    cursor: pointer;
    width: 110px;
    height: 110px;
    position: relative;
    z-index: 12;
}

.mini-game-menu-box .main-icon {
    background-image: url('../images/bg_mini_game.png');
    background-size: cover;
    animation: rotateInfinityIcon 30s linear infinite;
}

@keyframes rotateInfinityIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mini-game-menu-box .icon-new {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 5px;
    top: 10px;
    z-index: 12;
    -webkit-transform: rotate(345deg);
    transform: rotate(345deg);
    pointer-events: none;
}

.mini-game-menu-box .icon-new img {
    width: 100%;
    position: relative;
    animation: heartBeat .7s ease-in-out infinite reverse;
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
}

.mini-game-menu-box .list-menu-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 110px;
    z-index: -1;
    pointer-events: none;
}

.mini-game-menu-box .list-menu-link img {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    transition: all .2s;
    transition-delay: 0;
    z-index: -1;
    transform: scale(.8);
    pointer-events: none;
}

.mini-game-menu-box .list-menu-link img:hover {
    transform: scale(1);
}
.mini-game-menu-box.active .list-menu-link{
    z-index: 12;
    pointer-events: all;
}
.mini-game-menu-box.active .list-menu-link img {
    display: inline-block;
    opacity: 1;
    z-index: 11;
    pointer-events: all;
}

.mini-game-menu-box .list-menu-link img:nth-child(1) {
    left: 0px;
    bottom: 0px;
}

.mini-game-menu-box.active .list-menu-link img:nth-child(1) {
    left: 0px;
    bottom: 120px;
}

.mini-game-menu-box .list-menu-link img:nth-child(2) {
    left: -40px;
    bottom: 0px;
}

.mini-game-menu-box.active .list-menu-link img:nth-child(2) {
    left: -100px;
    bottom: 85px;
}

.mini-game-menu-box .list-menu-link img:nth-child(3) {
    left: -40px;
    bottom: 0px;
}

.mini-game-menu-box.active .list-menu-link img:nth-child(3) {
    left: -135px;
    bottom: -10px;
}

.minigame-action-content-box-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: all .2s;
    z-index: 2000000005;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.minigame-action-content-box-wrapper.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.minigame-action-content-box {
    width: calc(100vw - 30px);
    max-width: 900px;
    background: white;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.3);
}

.minigame-action-content-box .close-item {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
    background: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    z-index: 2000000020;
}

.minigame-action-content-box .close-item::before,
.minigame-action-content-box .close-item::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    top: 4px;
    right: 19px;
    background: white;
    transform: rotate(45deg);
    pointer-events: none;
}

.minigame-action-content-box .close-item::after {
    transform: rotate(-45deg);
    right: auto;
    left: 19px;
}

.minigame-action-content-box .title-item {
    font-size: 18px;
    background-color: #f2f2f2;
    font-weight: bold;
    color: #5e5e5e;
    padding: 8px 20px;
    border-top: solid 1px rgba(0, 0, 0, .125);
    border-bottom: solid 1px rgba(0, 0, 0, .125);
    margin-bottom: 1px;
    border-radius: 15px 15px 0px 0px;
    text-align: center;
}

.minigame-action-content-box .main-content {
    padding: 12px;
    overflow: auto;
    height: 75vh;
    font-size: .4rem;
}

.minigame-action-content-box .main-content::-webkit-scrollbar {
    width: 8px;
}

.minigame-action-content-box .main-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.minigame-action-content-box .main-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 18px;
}

.minigame-action-content-box .main-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.item-minigame-bet-history {
    border-bottom: 0.02667rem solid #f2f5f7;
    background-color: #fff;
    margin-bottom: 0.26667rem;
}

.item-minigame-bet-history .info .van-image__img {
    cursor: pointer;
}
.item-minigame-bet-history .info .name {
    background-color: #fb4e4e;
    color: #fff;
    font-size: .4rem;
    max-width: 4rem;
}
.item-minigame-bet-history .info .name.type-taixiu-1 {
    background-color: #1b1a1a;
}

.item-minigame-bet-history .info .name .type {
    height: 100%;
    padding: 0 0.13333rem;
}

.item-minigame-bet-history .info .OrderNumber {
    font-size: .4rem;
    min-width: 3.73333rem;
    max-width: 5.33333rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.item-minigame-bet-history .info .money {
    color: #fb4e4e;
    font-size: .40667rem;
    font-weight: 600;
}

.item-minigame-bet-history .info .money.action {
    color: #5cba47;
}

.item-minigame-bet-history .info .money.null,
.item-minigame-bet-history .info .money.cancel {
    color: #999;
}

.item-minigame-bet-history .info .time {
    font-size: .37333rem;
    color: #999;
}

.xoc-dia-card{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: solid 1px #cdcbcb;
    margin-right: 5px;
}

.xoc-dia-card.type-card-1{
    background: #fb4e4e;
}
.xoc-dia-card.type-card-2{
    background: #fff;
}
/* #minigame.game-ready{
    position: absolute;
    max-width: 100%;
} */
/* .minimage-poppup-body{
    width: 1000px;
    height: 1000px;
} */
#minigame{
    position: relative;
    text-align: center;
    top: 0!important;
    left: 0!important;
    height: 100%;
    padding-bottom: 5px;
    width: 100vw;
    max-width: 1000px;
    max-height: 100vh;
}
.mini-game-volume-button{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2000000004;
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, .2);
}
.mini-game-volume-button .content-button{
    position: relative;
    background-color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    color: #1b1a1a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.mini-game-volume-button .item-line-volume{
    position: absolute;
    width: 2px;
    height: 25px;
    background-color: #1b1a1a;
    top: 5px;
    right: 16px;
    transform: rotate(45deg);
    display: none;
}
.mini-game-volume-button.mute .item-line-volume{
    display: block;
}
    

@media (max-width: 1366px){
    #minigame.game-ready{
        position: relative;
        text-align: center;
        top: 0!important;
        left: 0!important;
        height: 100%;
    }
}
@media (max-width: 767px){
    .mini-game-menu-box {
        right: -10px;
        transform: scale(.75);
        bottom: 105px;
    }
    .mini-game-menu-box.active {
        width: auto;
        height: auto;
    }
}</pre></body></html>