

/* ext-float 扩展浮层专用 */
.ext-float-more-btn {
    font-size: 24px;
    color: #333333;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

/* 遮罩层 */
.ext-float-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: ext-float-fadeIn 0.3s ease;
}

.ext-float-overlay.ext-float-active {
    display: block;
}

/* 底部弹出菜单 */
.ext-float-action-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    background-color: #fff;
    z-index: 1000;
    border-radius: 12px 12px 0 0;
    transition: bottom 0.3s ease;
    padding-bottom: env(safe-area-inset-bottom);
}

.ext-float-action-sheet.ext-float-active {
    bottom: 0;
}

.ext-float-action-sheet-menu {
    background-color: #fff;
    margin: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.ext-float-action-sheet-item {
    padding: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-bottom: 0.5px solid #e5e5e5;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    transition: background-color 0.2s;
}

.ext-float-action-sheet-item:last-child {
    border-bottom: none;
}

.ext-float-action-sheet-item:active {
    background-color: #f5f5f5;
}

/*.ext-float-action-sheet-item.ext-float-danger {
    color: #ff3b30;
}*/

.ext-float-action-sheet-cancel {
    background-color: #fff;
    margin: 8px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0;
}

.ext-float-action-sheet-gap {
    height: 8px;
    background-color: #f5f5f5;
}

.ext-float-cancel-btn {
    padding: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    transition: background-color 0.2s;
}

.ext-float-cancel-btn:active {
    background-color: #f5f5f5;
}