/* 验证弹窗遮罩 */
.verify-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.verify-mask.behavior-verify-show {
    display: flex;
}
/* 验证弹窗 */
.verify-popup {
    background: #fff;
    border-radius: 12px;
    width: 380px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.verify-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.verify-header h3 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.verify-target {
    display: flex;
    align-items: center;
    gap: 8px;
}
.verify-target-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.verify-content {
    padding: 16px;
}
.verify-image {
    width: 100%;
    height: 240px;
    background: #f5f5f5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-image: url('https://picsum.photos/348/240');
    background-size: cover;
    background-position: center;
}
.verify-item {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 2px solid #409eff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.verify-item.clicked {
    background: #409eff;
    color: #fff;
    transform: scale(0.95);
}
.verify-footer {
    padding: 12px 20px;
    border-top: 1px solid #e5e6eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.verify-actions {
    display: flex;
    gap: 12px;
}
.verify-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}
.verify-action-btn:hover {
    background: #e5e6eb;
}
.verify-confirm-btn {
    padding: 8px 24px;
    background: #409eff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.verify-confirm-btn:disabled {
    background: #c0c4cc;
    cursor: not-allowed;
}
.verify-confirm-btn:hover:not(:disabled) {
    background: #337ecc;
}
.verify-brand {
    font-size: 12px;
    color: #999;
    text-align: right;
    padding: 8px 20px;
}
