/* 前端页面美化 - 可添加任意样式 */
body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
/* 子比主题卡片美化 */
.zibll-wrapper .card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* 按钮动画 */
button, .button {
    transition: all 0.3s ease;
}
button:hover, .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}