.framer-1vkf2jb-container,.framer-4iybr3-container,.framer-15zx9xn-container,.framer-mls9b8-container,.framer-deg2q7,.framer-1u6oxfh,.framer-1gdkh20-container{
    display: none !important;
}
.framer-lxism3{
    cursor: pointer !important;
}
.framer-lxism3 > div > img{
    object-fit: initial !important;
}
.framer-1nvgwj4{
    justify-content: center !important;
}
.framer-1nvgwj4 .framer-1lpwfbp-container,
.framer-1nvgwj4 .framer-1sea0on-container {
    display: none !important;
}
.framer-LnxDQ.framer-hskt6a.framer-v-hskt6a.framer-1sjxc8r img{
    object-fit: initial !important;
}
.framer-LnxDQ.framer-hskt6a{
    width: 179px !important;
    height: 75px !important;
}


/* 遮罩层 */
.modal-overlay {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹窗内容 */
.modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    width: 90%;
    color: #fff;
    max-width: 400px;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header h3 {
    margin: 0 0 30px;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.wallet-list {
    display: grid;
    gap: 12px;
}

.wallet-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.wallet-item:hover {
    border-color: #f55832;
}

.wallet-icon {
    width: 32px;
    height: 32px;
    background: #ddd;
    border-radius: 8px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
}
.wallet-icon img{
    width: 100%;
}

.wallet-name {
    font-size: 16px;
    font-weight: 500;
}
/* Toast 提示框 */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #111;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: #00aaff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
}

.toast-message {
    font-size: 14px;
    opacity: 0.9;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: -65px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}
.toast-close:hover {
    background: none;
    box-shadow:none;
}

