* {
	padding: 0;
	margin: 0;
}

.container {
	height: 100vh;
	min-width: 1200px;
}

button {
	border: none;
	background-color: transparent;
	outline: none;
	white-space: nowrap;
	transition: all 0.2s;
}

button:hover {
	opacity: 0.5;
}

/* 自定义弹窗 */
.confirm-dialog-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: 1000;
}

.confirm-dialog {
	background: white;
	padding: 12px 12px 0;
	border-radius: 8px;
	min-width: 300px;
	max-width: 90%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	box-sizing: border-box;
}

.dialog-header {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}

.dialog-content {
	margin: 1.5625rem 0;
	text-align: center;
}

.dialog-buttons {
	display: flex;
	gap: 10px;
	margin-top: 1.25rem;
	border-top: 1px solid #ededee;
}

.dialog-button {
	padding: 3px 0.9375rem;
	font-size: 0.875rem;
	border-radius: 0.1875rem;
	flex: 1;
	border: none;
	background-color: transparent;
	height: 3.125rem;
	font-size: 0.875rem;
	cursor: pointer;
	transition: opacity 0.2s;
}

.dialog-button:hover {
	opacity: 0.8;
}

.confirm-button {
	color: var(--primary-color);
}

.cancel-button {
	background-color: transparent;
	border-right: 1px solid #ededee;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


:root {
	--primary-color: #75b239;
	--primary-font-size: 14px;
	--span-color: rgba(0, 0, 0, .85);
}