feat: complete web app features and fix encoding

This commit is contained in:
赵杰 Jie Zhao (雄狮汽车科技)
2025-11-02 22:23:10 +08:00
parent 8b5063a092
commit f65abdef0f
15 changed files with 1542 additions and 5 deletions

View File

@@ -191,6 +191,34 @@
color: #333;
}
/* 导出按钮样式 */
.export-buttons {
display: flex;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.btn-export {
padding: 10px 20px;
background: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 0.9em;
transition: all 0.3s;
}
.btn-export:hover {
background: #218838;
transform: translateY(-2px);
}
.btn-export:active {
transform: translateY(0);
}
/* 响应式设计 */
@media (max-width: 768px) {
.wheel-container {