.show-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000000000;
}

.show-confirm-modal {
    position: relative;
    background: white;
    border-radius: 1.2rem;
    padding: 2.4rem;
    min-width: 40rem;
    max-width: 50rem;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 
                0 0 3px rgba(255,255,255,0.6), 
                0 0 6px rgba(255,255,255,0.2);
}

.show-confirm-icon {
    position: absolute;
    top:1rem;
    left: 1rem;
    width: 4.8rem;
    height: 4.8rem;
    background: #ffeb3b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.6rem;
    font-size: 2.4rem;
}

.show-confirm-title {
    margin: 0 0 1.2rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.show-confirm-content {
    margin-bottom: 2.4rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    font-size: 1.4rem;
}

.show-confirm-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: space-around;
}

.show-confirm-cancel {
    padding: 1rem 2.4rem;
    border: 0.1rem solid #ddd;
    background: white;
    color: #666;
    border-radius: 0.6rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.show-confirm-cancel:hover {
    background: #f5f5f5;
}

.show-confirm-confirm {
    padding: 1rem 2.4rem;
    border: none;
    background: #42C3AF;
    color: white;
    border-radius: 0.6rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.show-confirm-confirm:hover {
    background:  #42C3ff;
}



.show-notify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000000000;
}

.show-notify-overlay .show-notify-modal {
    background: white;
    border-radius: 1.2rem;
    padding: 2.4rem;
    min-width: 40rem;
    max-width: 50rem;
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.1), 
                0 0 3rem rgba(255,255,255,0.3), 
                0 0 6rem rgba(255,255,255,0.2);
}

.show-notify-overlay .show-notify-icon {
    width: 4.8rem;
    height: 4.8rem;
    background: #52c41a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.6rem;
    font-size: 2.4rem;
    color: white;
}

.show-notify-overlay .show-notify-title {
    margin: 0 0 1.2rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.show-notify-overlay .show-notify-content {
    margin-bottom: 2.4rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    font-size: 1.4rem;
}

.show-notify-overlay .show-notify-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.show-notify-overlay .show-notify-confirm {
    padding: 1rem 2.4rem;
    border: none;
    background: #52c41a;
    color: white;
    border-radius: 0.6rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
    min-width: 12rem;
}

.show-notify-overlay .show-notify-confirm:hover {
    background: #73d13d;
}




.show-input-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000000;
}

.show-input-modal {
    background: white;
    border-radius: 1.2rem;
    padding: 2.4rem;
    min-width: 40rem;
    max-width: 50rem;
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.1), 
                0 0 3rem rgba(255,255,255,0.3), 
                0 0 6rem rgba(255,255,255,0.2);
}

.show-input-icon {
    width: 4.8rem;
    height: 4.8rem;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.6rem;
    font-size: 2.4rem;
    color: white;
}

.show-input-title {
    margin: 0 0 1.2rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.show-input-content {
    margin-bottom: 2.4rem;
}

.show-input-textarea {
    width: 100%;
    height: 12rem;
    padding: 1.2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

.show-input-textarea:focus {
    border-color: #1890ff;
}

.show-input-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.show-input-cancel {
    padding: 1rem 2.4rem;
    border: 0.1rem solid #ddd;
    background: white;
    color: #666;
    border-radius: 0.6rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.show-input-cancel:hover {
    background: #f5f5f5;
}

.show-input-confirm {
    padding: 1rem 2.4rem;
    border: none;
    background: #1890ff;
    color: white;
    border-radius: 0.6rem;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.show-input-confirm:hover {
    background: #40a9ff;
}





/*加载样式*/

/**
 * 显示/隐藏加载圈圈
 * @param {boolean} show 显示或隐藏
 * @param {object} options 配置选项
 */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading .spinner {
    animation: loading-spin 1s linear infinite;
}

.loading .colorful {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid #ff6b6b;
    border-right: 3px solid #4ecdc4;
    border-bottom: 3px solid #45b7d1;
    border-left: 3px solid #96ceb4;
    border-radius: 50%;
}

.loading .rainbow {
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    border-radius: 50%;
    position: relative;
}

.loading .rainbow::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    top: 8px;
    left: 8px;
}

.loading .multi {
    width: 60px;
    height: 60px;
    position: relative;
}

.loading .multi::before,
.loading .multi::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: loading-spin 1.5s linear infinite;
}

.loading .multi::before {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #ff6b6b;
    border-right: 3px solid #4ecdc4;
}

.loading .multi::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 3px solid transparent;
    border-bottom: 3px solid #45b7d1;
    border-left: 3px solid #96ceb4;
    animation-direction: reverse;
}

.loading .text {
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

@keyframes loading-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}