/* 右侧礼佛图标容器 - 固定定位 */
.pray-icon-wrap {
    position: fixed;
    right: 2px;
    bottom: 130px;
    z-index: 110000;
}
/* 礼佛图标样式 */
.pray-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
 background-color: rgba(254, 249, 231, 0.8);
    border: 2px solid #dbdada;
    color: #a1a1a1;
    text-align: center;
    line-height: 27px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.pray-icon:hover {
    transform: scale(1.1);
}
/* 遮罩层 */
.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 99990;
}
/* 居中菜单容器 - 默认隐藏 */
.menu-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
}
/* 佛堂风格菜单 */
    /* 佛堂风格菜单 - 浅金底色 金色边框 */
    .menu-list {
        list-style: none;
        background-color: #fef9e7;
        border: 1px solid #f5d76e;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
        width: 340px;
        padding: 12px;
        box-sizing: border-box;
        margin: 0;
        
        /* 🔥 终极方案：纯CSS网格，强制2列，谁都覆盖不了 */
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    /* 强制2列 */
    .menu-list li {
        width: auto !important;
        height: 60px;
        line-height: 60px;
        border: 1px solid #f5d76e;
        border-radius: 8px;
        font-size: 16px;
        color: #8b6914;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: center;
        background: #fffdf5;
        box-sizing: border-box;
        display: block !important;
    }
.menu-list li:hover {
    background-color: #fff3cd;
    border-color: #b8860b;
    color: #b8860b;
    transform: translateY(-2px);
}
/* 链接样式 */
.menu-list a {
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    color: inherit !important;
}
/* 手机端适配 */
@media (max-width: 400px) {
    .menu-list {
        width: 90vw !important;
    }
}