/* ===== 哎呀好网企业服务网 - 补充样式 ===== */
/* 主要使用 Tailwind CSS CDN，本文件仅包含 Tailwind 无法覆盖的细微调整 */

/* 移动端底部导航安全区域 */
.safe-area-pb {
    padding-bottom: env(safe-area-inset-bottom);
}

/* details/summary 在移动端隐藏默认标记 */
details summary::-webkit-details-marker {
    display: none;
}
details summary {
    list-style: none;
}

/* 移动端 details 打开时旋转箭头 */
details[open] > summary svg.lucide-chevron-down {
    transform: rotate(180deg);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 选中文本颜色 */
::selection {
    background-color: #ea580c;
    color: #ffffff;
}
