/* 文件：/css/liquid-glass.css */

/* 底部导航玻璃效果 */
.glass-bottom-nav {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* 确保原有样式不冲突 */
.ceo-app-footer-fixed {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 导航链接样式重置 */
.ceo-app-footer-fixed a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
}

/* 图标和文字样式调整 */
.ceo-app-footer-fixed .icon {
    position: relative;
    z-index: 3;
}

.ceo-app-footer-fixed .text {
    position: relative;
    z-index: 3;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* 确保移动端显示正确 */
@media (max-width: 768px) {
    .glass-bottom-nav {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
}