/* public/assets/css/custom.css */

:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #f3f4f6;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --container-width: 1280px;
}


ul, ol {
    list-style: none;
}

/* 新增1520px容器宽度 */

/* 方法A：直接覆盖（最简单） */
@media (min-width: 1520px) {
    .container {
        width: 1500px !important;
    }
}

/* 方法B：更精细的控制 */
.container {
    /* 保持原有的响应式设置 */
}

@media (min-width: 1520px) {
    .container {
        width: 1500px;
        max-width: 1500px;
    }

    /* 如果需要，可以扩展网格系统 */
    .col-xl-1 { width: 8.33333333%; }
    .col-xl-2 { width: 16.66666667%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.33333333%; }
    .col-xl-5 { width: 41.66666667%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.33333333%; }
    .col-xl-8 { width: 66.66666667%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.33333333%; }
    .col-xl-11 { width: 91.66666667%; }
    .col-xl-12 { width: 100%; }
}

/* 优化6列布局的样式 */
.col-xs-2 img,
.col-sm-2 img,
.col-md-2 img,
.col-lg-2 img {
    transition: transform 0.3s ease;
}

.col-xs-2:hover img,
.col-sm-2:hover img,
.col-md-2:hover img,
.col-lg-2:hover img {
    transform: scale(1.05);
}

/* 小屏幕上的文字调整 */
@media (max-width: 768px) {
    .col-xs-2 h5,
    .col-xs-4 h5,
    .col-xs-6 h5 {
        font-size: 12px;
        margin-top: 5px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* 确保图片容器在小屏幕上正常显示 */
.embed-responsive-4by3 {
    margin-bottom: 8px;
}

.list-links a{
    margin-right: 15px;
    line-height: 2;
}


#floatbtn {
    width: 50px;
    height: auto;
    position: fixed;
    bottom: 10px;
    z-index: 80;
    /* 在屏幕中央偏右42%位置，然后向左移动按钮宽度的一半实现居中 */
    left: calc(50% + 40vw - 25px);
    /* 解释：
       50% = 屏幕中心点
       + 42vw = 向右移动屏幕宽度的42%
       - 25px = 向左移动按钮宽度的一半（居中修正）
    */
    transform: translateX(0); /* 保持水平位置 */
}

/* 小屏幕适配 */
@media (max-width: 768px) {
    #floatbtn {
        left: calc(50% + 25vw - 25px);
    }
}

@media (max-width: 576px) {
    #floatbtn {
        left: auto;
        right: 20px;
    }
}

/*导航样式修改*/
.navbar-nav > li > a{
    font-size: 16px;
}

@media (min-width: 768px) {
    .navbar-white .navbar-nav > li > a:hover,
    .navbar-white .navbar-nav > li > a:focus {
        color: #007bff;
        border-bottom: solid 3px dodgerblue;
    }
    .navbar-white .navbar-nav > .active > a,
    .navbar-white .navbar-nav > .active > a:hover,
    .navbar-white .navbar-nav > .active > a:focus {
        background-color: inherit;
        color: #007bff;
    }
}
/* 通过更长的选择器链来增加特异性 */
.focus-img > .row > div a > span.embed-responsive .intro {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent) !important;
    opacity: 1 !important;
    padding: 15px 10px !important;
    height: auto !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-overflow: clip !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.focus-img > .row > div a:hover > span.embed-responsive .intro {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.embed-responsive img{
    border-radius: 5px;
    height: auto !important;
}

/******************** icon.css ********************/

.i-p1,.i-p2{_margin-top:5px;background-image:url(../img/keyborad.png)}
.i_alt,.i_arrows,.i_ctrl,.i_down,.i_end,.i_enter,.i_esc,.i_left,.i_lr,.i_mousedrag,.i_mouseleft,.i_mousemove,.i_right,.i_shift,.i_space,.i_tab,.i_ud,.i_up,.i_wasd{display:inline-block;vertical-align:middle;height:28px;line-height:99em;background:url(../img/keyborad.png) no-repeat;margin-right:5px;overflow:hidden}
.i_mouseleft{width:16px;background-position:-2px -10px}
.i_mousedrag{width:21px;background-position:-2px -100px}
.i_mousemove{width:19px;background-position:-2px -70px}
.i_space{width:65px;background-position:-2px -294px}
.i_ctrl{width:39px;background-position:-2px -211px}
.i_enter{width:48px;background-position:-2px -156px}
.i_alt{width:33px;background-position:-2px -129px}
.i_shift{width:48px;background-position:-2px -184px}
.i_tab{width:33px;background-position:-2px -238px}
.i_end{width:33px;background-position:-2px -266px}
.i_wasd{width:40px;background-position:-2px -516px}
.i_esc{width:33px;background-position:-2px -581px}
.i_left{width:20px;background-position:-2px -375px}
.i_right{width:20px;background-position:-2px -402px}
.i_up{width:20px;background-position:-2px -320px}
.i_down{width:20px;background-position:-2px -347px}
.i_ud{width:41px;background-position:-2px -457px}
.i_lr{width:41px;background-position:-2px -429px}
.i_arrows{width:40px;background-position:-2px -549px}
.howto .i_key{display:inline-block;vertical-align:middle;width:21px;height:21px;margin-right:5px;padding-top:6px;background:url(../img/keyborad.png) -1px -485px no-repeat;font:700 9px/12px Verdana,Sans-serif;text-align:center;color:#0090eb;text-shadow:0 2px 1px #fff}

.icon{display:inline-block;width:15px;height:15px;overflow:hidden;margin:0 5px;vertical-align:middle;background-repeat:no-repeat}
.i-p1{width:54px;height:16px;background-position:-2px -617px}
.i-p2{width:54px;height:16px;background-position:-2px -647px}
.i-medal{width:12px;height:17px;background-position:-286px -210px}
.i-backold{width:8px;height:10px;background-position:-347px -237px}

.flash_icon1{display:inline-block;background-image:url(../img/icon2.png);background-repeat:no-repeat;margin:0 2px;vertical-align:-7px;font-style:normal}
.fil_key_mouseleft{width:17px;height:24px;background-position:0 -4px}
.fil_key_mouseright{width:17px;height:24px;background-position:0 -33px}
.fil_key_mousedrag{width:23px;height:24px;background-position:0 -88px}
.fil_key_mousemove{width:20px;height:24px;background-position:0 -88px}
.fil_key_touch{width:18px;height:24px;background-position:0 -2556px}
.fil_key_touchtop{width:12px;height:24px;background-position:0 -2584px}
.fil_key_touchbottom{width:12px;height:24px;background-position:0 -2613px}
.fil_key_touchleft{width:24px;height:24px;background-position:0 -2640px}
.fil_key_touchright{width:24px;height:24px;background-position:0 -2668px}
.fil_key_space{width:78px;height:24px;background-position:0 -284px}
.fil_key_enter{width:56px;height:24px;background-position:0 -144px}
.fil_key_ctrl{width:44px;height:24px;background-position:0 -200px}
.fil_key_alt{width:38px;height:24px;background-position:0 -116px}
.fil_key_shift{width:56px;height:24px;background-position:0 -172px}
.fil_key_tab{width:44px;height:24px;background-position:0 -228px}
.fil_key_end{width:44px;height:24px;background-position:0 -256px}
.fil_key_wasd{width:58px;height:35px;background-position:0 -480px}
.fil_key_arrows{width:58px;height:35px;background-position:0 -519px}
.fil_key_ud{width:52px;height:24px;background-position:0 -452px}
.fil_key_lr{width:52px;height:24px;background-position:0 -424px}
.fil_key_up{width:24px;height:24px;background-position:0 -312px}
.fil_key_down{width:24px;height:24px;background-position:0 -340px}
.fil_key_left{width:24px;height:24px;background-position:0 -368px}
.fil_key_right{width:24px;height:24px;background-position:0 -396px}
.fil_key_esc{width:44px;height:24px;background-position:0 -558px}
.fil_key_0{width:24px;height:24px;background-position:0 -586px}
.fil_key_1{width:24px;height:24px;background-position:0 -614px}
.fil_key_2{width:24px;height:24px;background-position:0 -640px}
.fil_key_3{width:24px;height:24px;background-position:0 -668px}
.fil_key_4{width:24px;height:24px;background-position:0 -696px}
.fil_key_5{width:24px;height:24px;background-position:0 -722px}
.fil_key_6{width:24px;height:24px;background-position:0 -750px}
.fil_key_7{width:24px;height:24px;background-position:0 -778px}
.fil_key_8{width:24px;height:24px;background-position:0 -804px}
.fil_key_9{width:24px;height:24px;background-position:0 -832px}
.fil_key_q{width:24px;height:24px;background-position:0 -860px}
.fil_key_w{width:24px;height:24px;background-position:0 -888px}
.fil_key_e{width:24px;height:24px;background-position:0 -916px}
.fil_key_r{width:24px;height:24px;background-position:0 -944px}
.fil_key_t{width:24px;height:24px;background-position:0 -972px}
.fil_key_y{width:24px;height:24px;background-position:0 -1000px}
.fil_key_u{width:24px;height:24px;background-position:0 -1028px}
.fil_key_i{width:24px;height:24px;background-position:0 -1056px}
.fil_key_o{width:24px;height:24px;background-position:0 -1084px}
.fil_key_p{width:24px;height:24px;background-position:0 -1112px}
.fil_key_a{width:24px;height:24px;background-position:0 -1140px}
.fil_key_s{width:24px;height:24px;background-position:0 -1168px}
.fil_key_d{width:24px;height:24px;background-position:0 -1196px}
.fil_key_f{width:24px;height:24px;background-position:0 -1224px}
.fil_key_g{width:24px;height:24px;background-position:0 -1252px}
.fil_key_h{width:24px;height:24px;background-position:0 -1280px}
.fil_key_j{width:24px;height:24px;background-position:0 -1308px}
.fil_key_k{width:24px;height:24px;background-position:0 -1336px}
.fil_key_l{width:24px;height:24px;background-position:0 -1364px}
.fil_key_z{width:24px;height:24px;background-position:0 -1392px}
.fil_key_x{width:24px;height:24px;background-position:0 -1420px}
.fil_key_c{width:24px;height:24px;background-position:0 -1448px}
.fil_key_v{width:24px;height:24px;background-position:0 -1476px}
.fil_key_b{width:24px;height:24px;background-position:0 -1504px}
.fil_key_n{width:24px;height:24px;background-position:0 -1532px}
.fil_key_m{width:24px;height:24px;background-position:0 -1560px}
.fil_key_p1{width:67px;height:22px;background-position:0 -1894px}
.fil_key_p2{width:67px;height:22px;background-position:0 -1920px}
.fil_key_p3{width:67px;height:22px;background-position:0 -1946px}
.fil_key_p4{width:67px;height:22px;background-position:0 -1972px}
.fil_key_p5{width:67px;height:22px;background-position:0 -1998px}
.fil_key_pageup{width:78px;height:24px;background-position:0 -2024px}
.fil_key_pagedown{width:98px;height:24px;background-position:0 -2052px}
.fil_key_insert{width:66px;height:24px;background-position:0 -2080px}
.fil_key_delete{width:70px;height:24px;background-position:0 -2108px}
.fil_key_home{width:65px;height:24px;background-position:0 -2136px}
.fil_key_f1{width:38px;height:24px;background-position:0 -2164px}
.fil_key_f2{width:38px;height:24px;background-position:0 -2192px}
.fil_key_f3{width:38px;height:24px;background-position:0 -2220px}
.fil_key_f4{width:38px;height:24px;background-position:0 -2248px}
.fil_key_f5{width:38px;height:24px;background-position:0 -2276px}
.fil_key_f6{width:38px;height:24px;background-position:0 -2304px}
.fil_key_f7{width:38px;height:24px;background-position:0 -2332px}
.fil_key_f8{width:38px;height:24px;background-position:0 -2360px}
.fil_key_f9{width:38px;height:24px;background-position:0 -2388px}
.fil_key_f10{width:48px;height:24px;background-position:0 -2416px}
.fil_key_f11{width:48px;height:24px;background-position:0 -2444px}
.fil_key_f12{width:48px;height:24px;background-position:0 -2472px}
.fil_key_capslock{width:95px;height:24px;background-position:0 -2500px}
.fil_key_numlock{width:91px;height:24px;background-position:0 -2528px}


/******************** Play Page ********************/

.play_page{width:1520px;margin:10px auto 0;display:flex;flex-direction:row;}
.play_page .col_0{margin-right:30px;}
.play_page aside{width:300px;margin-left:30px;}
@media only screen and (max-device-width: 1599px), (max-width: 1599px) {
    .play_page{width:1410px;}
}
@media only screen and (max-device-width: 1439px), (max-width: 1439px) {
    .play_page{width:1210px;}
}

.play_tag a{display:inline-block;color:#999;margin-right:.5em}
.game-des{font-size:14px;line-height:1.8;}

.play-hd{float:left;position:relative;height: 70px;padding-left:80px;font-size:12px;color:#999;line-height: 1.3em}
.play-hd .litpic{width:70px;height:70px;border-radius:7px;position: absolute;top: 0;left: 0}
.play-hd h1{line-height:1em;font-size:16px;margin:0.1em 0 .5em;color:#39f;}
.play-hd a{color: #999}

#rank{position: absolute;bottom: 0;z-index: -1}
#phone{display: none;}
#phone:hover #qrcode{display: block;}
#qrcode{display:none;position:absolute;width:50px;height:50px;z-index:99999;left:-20px;bottom:-50px}


.playbox{display: inline-block;padding-right: 320px;position: relative;}
.playbox::after {content: "";display: table;clear: both}
.playbox .play-main{min-width: 890px;display: inline-block;box-sizing: border-box;background: #000;border-radius: 1rem;}

.play_c{margin:0 auto;position: relative;overflow: hidden;border-radius:3px 3px 0px 0px;}

#play{position:relative}
#player-game{width:100%;height:100%;position:absolute;z-index:500;left:0px;top:0px}

.player-box{clear:both;position:relative;min-height:300px;max-width:1000px;margin:0 auto;}
.player-box:before,.player-box:after{content: " "}
.player-box:after{clear:both}
.player-box{*zoom:1}
#player{overflow:hidden;vertical-align:middle}

#player{position:absolute;left:-10000px;width:0;height:0}

.play_kaideng{position:absolute;top:20px;left:50%;width:65px;line-height:24px;color:#fff;z-index:1;cursor:pointer;display:none}
.play_kaideng:hover{background:#444}
.play_kaideng svg{float:left}
.play_game_close .play_kaideng{display:block}

.play_game.play_full_screen{width:auto!important;height:auto!important;}

.play_game{transition: width 0.3s ease, height 0.3s ease;
    transform-origin: top left;}

.play_full_screen{position:fixed;inset:0;;background:#000!important;z-index:999}


.play_game_close{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;z-index:999}
.play_game_close #gameobj{position:absolute;top:0;left:0;bottom:0;right:0;}
.play_game #gameobj{ position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}


.game_wanfa{padding:22px 0;}
.game_wanfa_p1{color:#0090eb;line-height:24px;padding:2px 0}
.game_wanfa_p2{padding:2px 0;line-height:30px}
.game_wanfa_p2 .flash_icon_box{display:inline-block;height:24px;padding:0 6px 0 0}
.game_wanfa_ft1 .game_wanfa_p2{padding:6px 0}

.play_top{position: relative;}
.play_hd{position: relative;float: left;width:150px;height:100px;margin-right:20px;box-sizing:border-box;color: #999;}
.play_hd a{color:#999}
.play_hd .litpic{position: absolute;bottom:-80px;width:70px;height: 70px;border-radius:8px;}
.play_hd .fm{width:150px;height:100px;border-radius:4px;position:absolute;left:0;}
.play_hd .info{position: absolute;bottom:-30px;left:80px;height:1.5em;width:150px;line-height:1.5em;}

.play_info{padding-left:170px}
.play_info h1{line-height:1.5;margin-bottom:8px;font-size:16px;color:#39f;overflow: hidden;}
.play_info h2{line-height:1.5;margin:8px 0;font-size:14px;color: #555}
.play_info .shuoming{font-size:12px;line-height:1.5em;}


.game-caozuo{clear: none;margin-top:10px;}
.position{font-size:12px;}

.playbox{padding-right:0;}
.playbox .play-main{min-width:940px;border-radius:0;display: block;}


.play_load{display:flex;justify-content: center;align-items:center; text-align:center;font-size:14px;position:absolute;inset:0;z-index:0}

.loading {text-align: center;display:none}
.loading-dot {width:20px;height:20px;border-radius:50%;display: inline-block;margin:0 16px;animation: bounce 0.8s infinite ease-in-out;}
.loading-dot:nth-child(1) {background-color: #007bff;}
.loading-dot:nth-child(2) {background-color: #dc3545;animation-delay: 0.2s;}
.loading-dot:nth-child(3) {background-color: #28a745;animation-delay: 0.4s;}
@keyframes bounce {0%   { transform: scale(1); }50%  { transform: scale(1.5); }100% { transform: scale(1); }}


.css-1dd18ox {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 4;
    letter-spacing: 1px;
    transition: color 0.5s ease, text-shadow 0.5s ease, letter-spacing 0.3s ease;
}

.start-btn {
    z-index: 9999;
    color: #fff;
    text-transform: capitalize;
    font-size: 2em;
    font-weight: 800;
    cursor: pointer;
    transform: perspective(1px) translateZ(0px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-box-align: center;
    align-items: center;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    border-radius: 50px;
    padding: 10px 22px;
    gap: 12px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.start-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.8s;
}

.start-btn:hover::after {
    left: 120%;
}

.start-btn:hover{
    background: linear-gradient(135deg, #6a7de0 0%, #6f5ca6 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    filter: brightness(1.05);
}






.play_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 1rem 0;*/
}

.play_foot h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 1rem;
}

.play_foot .litpic {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}


.play-ctrl{font-size:1.2rem;text-align:center;display:block;}
.play-ctrl li{padding:1rem 1.4rem;cursor:pointer;border-radius:0.4rem;float:left;font-size:14px;}
.play-ctrl i{color:#444;font-size:1.6rem}
.play-ctrl li:hover{background: #ddd;}
.play-ctrl li:hover i{}
.play-ctrl .digg{display: inline-block;color: #888}

/* Game Info */
.game_info {
    margin-bottom: 1rem;

    position: relative;

}

.game_info h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.game_info h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}
.play_tags{margin-top:20px;}
.play_tags a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-color);
    color: var(--text-light);
    border-radius: 9999px;
    font-size: 1.2rem;
    margin: 0 0.5rem 0.5rem 0;
    transition: all 0.2s;
}

.play_tags a:hover {
    background: var(--primary-color);
    color: white;
}




.game-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    z-index: 10;
    background: transparent;
    gap: 12px;
}

.css-qvgq1o {height: 150px;border-radius: 7px; box-shadow: 0 7px 10px 4px rgba(93, 107, 132, 0.3);}
.css-1dd18ox {font-weight: 700; font-size: 28px; color: #fff; text-align: center; text-shadow: 1px 1px 0 #000;}

#mobile-nav{display:none}
.play-m{display:none}

/* @media (max-width: 1024px) and (pointer: coarse) {...} */
@media (max-width: 1024px) {

    .play_c.mobile,.play_c.mobile #gameobj{width:100%!important;height:100%!important;position:fixed;inset:0;z-index:1;border-radius:0}
    .play_c.mobile #gameobj{z-index:2;transform:translate(0,0);}

    #mobile-nav{display:flex;align-items:center;background:#fff;border-radius:0 16px 16px 0;box-shadow:0px 7px 10px 4px #5d6b844d;height:40px;overflow:hidden;position:fixed;left:0;top:0;transform:translateY(var(--mobileNavDragY,24px));width:64px;z-index:11;--mobileNavDragY:136px;}
    #mobile-nav i{font-size:14px;}
    #mobile-nav img{height:25px;}


    .play_page{width:auto;max-width:576px;box-sizing:border-box;padding:0 .2rem;}

    ._18ytbs8j14l{display:none;}
    .play_foot{display:none;}
    .game-start{display:none}

    .play_c{display:none}
    .play-m{display:block;width:100%;border-radius:.2rem;aspect-ratio: 3 / 2;position:relative;overflow:hidden;}
    .play-m img{width:100%;filter: blur(.1rem);  position: absolute;inset: 0;margin: auto;}
    .play-m i{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);background-color:#fff;border-radius: 50%;width: 60px;height: 60px;display: flex;align-items:center;justify-content: center;font-size: 30px;box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);}

}



.play_load{flex-direction: column;color:#fff;}


.fullBody{overflow: hidden;}
.play_game_ctr{position:absolute;top:0;width:100%;height:30px;line-height:30px;overflow:hidden;display:none;z-index:10000;color:#fff;background:none}
.play_game_ctr a{color: #fff}
.play_full_screen .play_game_ctr{display:block}
.play_game_ctr{display:none}
.flash_tit,.play_game_ctr h2{font-size:12px;line-height:30px}
.play_game_ctr ul{float:right;overflow:hidden;font-size: 14px;}
.play_game_ctr ul li{float:left;position:relative;line-height:30px;padding:0 8px 0;cursor:pointer;user-select: none;}
.play_game_ctr ul li:hover{color:#000;background-color:#fff;}

.jsQR{display:none}
#qr{display:none;position:absolute;z-index:9;bottom:40px;left: -28px;}

.jsQR:hover #qr{display:block;}


.play-ctrl .diggbox{padding:1rem 1.4rem;cursor:pointer;border-radius:0.4rem;float:left;font-size:14px;}
.play-ctrl .diggbox:hover{background: #ddd;}
.digg_num,.digg_act{display:inline-block!important;font-size:1.6rem}
.digg_percent_num{display:none}
