backup: 线上最终版本全量备份
包含所有线上运行的改动: - 荷官端倒计时卡顿修复(CountdownService TTL+10/前端watchdog) - 停止下注debounce防重复(8个handle.js) - 洗码量规则重写(单边/双边/开和不计/百家乐+龙虎) - 龙虎和局不杀庄闲(全额退回) - 日志系统(Logger工具类/日志查看/清理脚本) - 好路提醒异常处理(WaybillRemindService try-catch) - 扫牌器连接改进(ScanConnectService) - 牛牛/三卡开牌修复 - .gitignore更新/.DS_Store清理
This commit is contained in:
@@ -288,8 +288,6 @@ body{
|
||||
|
||||
.canvas-box canvas{
|
||||
background: #fff;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
@@ -585,13 +583,12 @@ body{
|
||||
|
||||
.countdown{
|
||||
display: none;
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
width: 210px;
|
||||
height: 210px;
|
||||
/*background: rgba(21, 34, 34, 0.71);*/
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
bottom: 22vh;
|
||||
right: 1vw;
|
||||
}
|
||||
.countdown .roll{
|
||||
position: absolute;
|
||||
@@ -611,12 +608,12 @@ body{
|
||||
|
||||
.countdown .num{
|
||||
color: #fff;
|
||||
font-size: 60px;
|
||||
font-size: 28px;
|
||||
position: relative;
|
||||
font-weight: 500;
|
||||
z-index: 999;
|
||||
text-align: center;
|
||||
line-height: 210px;
|
||||
line-height: 80px;
|
||||
text-shadow: 0px 1px 0px #555;
|
||||
}
|
||||
|
||||
@@ -1051,28 +1048,57 @@ body{
|
||||
}
|
||||
|
||||
.countdown{
|
||||
/*background: url(../new_img/countdown.png) no-repeat center center;*/
|
||||
height: 100vh;
|
||||
width: 60%;
|
||||
overflow: hidden;
|
||||
-webkit-background-size: 100%;
|
||||
background-size: 100%;
|
||||
position:absolute;
|
||||
float: left;
|
||||
display: block;
|
||||
opacity: 0;
|
||||
margin-left: 1vw;
|
||||
top:50%;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.countdown .num{
|
||||
line-height: 60vh;
|
||||
font-size: 60vh;
|
||||
color: #000000;
|
||||
opacity: 0.4;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.result-box{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.bottom-row{
|
||||
display: flex;
|
||||
width: 100%;
|
||||
gap: 4px;
|
||||
}
|
||||
.table-data .limit-box{
|
||||
flex: 1;
|
||||
padding: 0 2.5%;
|
||||
}
|
||||
.result-area{
|
||||
width: 40%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 12vh;
|
||||
background: rgba(0,0,0,0.15);
|
||||
border-radius: 6px;
|
||||
padding: 4px;
|
||||
}
|
||||
.result-area-timer{
|
||||
font-size: 4vw;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
background: rgba(0,0,0,0.6);
|
||||
border-radius: 50%;
|
||||
width: 7vw;
|
||||
height: 7vw;
|
||||
line-height: 7vw;
|
||||
margin-bottom: 6px;
|
||||
display: none;
|
||||
}
|
||||
.result-area-img{
|
||||
text-align: center;
|
||||
}
|
||||
.result-area-img img{
|
||||
max-width: 100%;
|
||||
max-height: 14vh;
|
||||
}
|
||||
|
||||
.section .head .box .list .date span{
|
||||
margin-right: 10px;
|
||||
|
||||
Reference in New Issue
Block a user