#date>.wui-date {
    width: 100%;
}

#loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-border {
    position: relative;
    /* 为伪元素定位提供基准 */
    border: 2px solid red !important;
    /* 添加红色边框以突出显示 */
}

.pulse-border::after {
    content: '👇';
    /* 使用手指标识 */
    position: absolute;
    top: -30px;
    /* 将箭头定位在元素上方的边框之外 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: red;
    animation: bounce 0.5s infinite alternate;
    /* 添加一个简单的弹跳动画 */
}

.level-tip {
    color: red;
    display: none;
    margin-top: 6px;
    text-indent: 1rem;
}


@keyframes bounce {
    from {
        transform: translateX(-50%) translateY(0);
    }

    to {
        transform: translateX(-50%) translateY(-5px);
    }
}



/* 收款方账号信息按钮样式 */
.payment-info-container {
    margb-bottom: 10px;
    text-align: left;
}

.payment-info-btn {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.payment-info-btn:hover {
    background-color: #138496;
}

.payment-info-btn i {
    margin-right: 5px;
}

/* 自定义文件上传控件样式 */
.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 45px;
    /* 与其他输入框保持一致的高度 */
    font-size: 14px;
    color: #999;
    /* 与其他输入框保持一致的颜色 */
}

.file-label:hover {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.file-label i {
    margin-right: 8px;
    color: #6c757d;
}

.file-text {
    flex: 1;
    width: 80px;
    white-space: nowrap;      /* 防止文本换行 */
    overflow: hidden;         /* 隐藏溢出的文本 */
    text-overflow: ellipsis;  /* 显示省略号 */
    margin-left: -12px;
}

/* 文件选中后的样式 */
.file-selected .file-label {
    border-color: #28a745;
    color: #000000;
}

.file-selected .file-label i {
    color: #000000;
}

/* 弹窗样式 */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.payment-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    top: -10%;
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.payment-modal-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.payment-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal-close:hover {
    color: #333;
}

.payment-info {
    line-height: 1.6;
}

.payment-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.payment-item strong {
    color: #333;
    display: inline-block;
    width: 100px;
}

.payment-item span {
    color: #666;
    font-family: 'Courier New', monospace;
}

.payment-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.payment-warning i {
    margin-right: 8px;
    color: #f39c12;
}
/* 文件上传和按钮的容器样式 */
.upload-container {
    display: flex;
    align-items: center;
    gap: 15px; /* 控件之间的间距 */
}

/* 文件上传控件占据剩余空间 */
.custom-file-upload {
    flex: 1;
}

/* 收款方账号信息按钮容器 */
.payment-info-container {
    flex-shrink: 0; /* 防止按钮被压缩 */
    margin-bottom: 8px;
}

/* 响应式设计：在小屏幕上垂直排列 */
@media (max-width: 768px) {
    .upload-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .payment-info-container {
        margin-top: 10px;
    }
}
/* 支付通知区域样式 */
.payment-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    color: #856404;
}

.payment-notice p {
    margin: 0;
    line-height: 1.5;
}

.payment-notice strong {
    color: #d63031;
}

.p-split{
    height: 0.5rem;
}