web异常待修复:屏蔽统计

This commit is contained in:
Alex Yang
2025-11-24 13:09:16 +08:00
parent 86faca036d
commit ce4a8d8127
5 changed files with 389 additions and 73 deletions

View File

@@ -377,6 +377,45 @@ tr:hover {
background-color: #f8f9fa;
}
/* 百分比条样式 */
.count-cell {
position: relative;
}
.count-number {
position: relative;
z-index: 2;
display: inline-block;
}
.percentage-text {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
z-index: 2;
font-size: 12px;
color: #bdc3c7;
}
.percentage-bar-container {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: 1;
overflow: hidden;
border-radius: 4px;
opacity: 0.2;
}
.percentage-bar {
height: 100%;
transition: width 0.5s ease;
border-radius: 4px;
}
/* 分页控件样式 */
.pagination-controls {
background-color: #ffffff;