 /* 提示消息容器 */
        .toast-container {
            position: fixed !important;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20000 !important;
            display: flex;
            flex-direction: column;
            gap: 12px;
            pointer-events: none;
        }

        /* 提示消息样式 */
         .toast-container .toast {
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 10px;
            width: auto;
        }
		.toast:not(.show) {
			display: block !important; 
		}
				 .toast-container .toast.visible {
            opacity: 1;
            transform: translateY(0);
        }

         .toast-container .toast.error {
            background: rgba(239, 68, 68, 0.9);
            color: white;
            border: 1px solid rgba(185, 28, 28, 0.3);
        }

         .toast-container .toast.success {
            background: rgba(16, 185, 129, 0.9);
            color: white;
            border: 1px solid rgba(5, 150, 105, 0.3);
        }
		.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;  /* 小尺寸 */
    height: 40px;
}

.loading-spinner::after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 4px;
    border-radius: 50%;
    border: 3px solid #333;
    border-color: #00adb5 transparent #00adb5 transparent; /* 修改颜色 */
    animation: loading 1.2s linear infinite;
}

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

	.pagination_div {
	display: flex;
	align-items: center;
	gap: 7px;
	width: 100%;padding-bottom:0px
	}
	.pagination_div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
   
    font-family: 'Inter', system-ui, sans-serif;
}
	.total-info .total{
	color:#1890ff;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: 'Segoe UI', sans-serif;
	background: linear-gradient(45deg, #1890ff, #4ecdc4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 
	2px 2px 4px rgba(0,0,0,0.1),
	0 4px 12px rgba(0,0,0,0.15);
	position: relative;
	display: inline-block; font-weight: 600;padding:0px 10px

	}
	.pagination_divs .total {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1890ff;
	position: relative;

	}
	.total-info {
	flex-shrink: 0;
	margin-right: auto; /* 将总信息固定在左侧 */
	}
		.pagination a {
		text-decoration: none;
		background-color: #fff;
		padding: 8px 16px;
		border: 1px solid #ddd;
		color: #333;
		border-radius: 4px;
		transition: background-color 0.3s;
	}
	.pagination .active span {
		background-color: #1890ff;
		color: white;
		border: 1px solid #1890ff;
		padding: 8px 16px;
		border-radius: 4px;
	}
	.pagination a:hover:not(.active) {
		background-color: #f5f5f5;
	}
	.pagination .active {
		background-color: #1890ff;
		color: white;
		border-color: #1890ff;
	}	.pagination {
	 margin: 10px 0; 
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 8px;
	border-radius: 4px;
	;#padding-right:95px
	}
	.pagination {

    list-style: none;
    display: flex;
    gap: 6px;
    border-radius: 6px;
}
.pagination_div .gotospan {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #4b5563;
    margin-left: 10px;
}.pagination_div .goto {
    width: 45px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s ease;
}.pagination_div em {
    min-width: 50px;
    height: 36px;
    background-color: #3b82f6;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}