.verifycode {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 100%;
	height: 100vh;
	display: none;
	background: rgba(var(--bs-black-rgb), .3);
	transition: all .5s;
}

.verifycode-panel {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 338px;
	border-radius: 6px;
	background-color: #FFFFFF;
	transform: translate(-50%, -50%);
}

.verifycode-hd {
	width: 100%;
	height: 40px;
	text-align: left;
	padding: 0 15px;
	border-bottom: 1px solid var(--bs-gray-200);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.verifycode-hd .verifycode-title {
	font-size: 14px;
}


.verifycode-hd .close {
	color: #c0c4cc;
	cursor: pointer;
}

.verifycode-hd .close:hover {
	color: #909399
}

.verifycode-main {
	padding: 15px;
}

.verifycode-box {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.verifycode-canvas {
	width: 100%;
	height: 160px;
	overflow: hidden;
}

.verifycode-canvas-panel {
	width: 100%;
	height: 100%;
}

.verifycode-canvas-panel img {
	width: 100%;
	height: 100%;
}

.verifycode-canvas-panel canvas {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 22;
}

.verifycode-refresh {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 99;
	margin: 10px;
}

.verifycode-refresh i {
	color: rgba(0,0,0,.25);
	cursor: pointer;
	display: block;
	line-height: 1;
}

.verifycode-refresh i:hover {
	color: #6c757d;
}

.verifycode-tips {
	position: absolute;
	left: 0;
	bottom: -36px;
	z-index: 100;
	width: 100%;
	margin: 0;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.verifycode-tips .erroy {
	background: rgba(246, 78, 84, 0.75);
}

.verifycode-tips .success {
	background: rgba(12, 202, 138, 0.75);
}

.verifycode-tips span {
	width: 100%;
	height: 36px;
	display: block;
	line-height: 36px;
}

.verifycode-tips span {
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
}

.slider-tips {
	bottom: 0;
}

.verifycode-area {
	position: relative;
	width: 100%;
	margin-top: 16px;
}

.verifycode-track {
	border-radius: 20px;
	background: #F0F0F0;
}

.verifycode-text {
	font-size: 12px;
	color: #212529;
	line-height: 36px;
	margin: 0;
	text-align: center;
}

.verifycode-bar {
	position: absolute;
	width: 44px;
	height: 44px;
	left: 0;
	top: 50%;
	z-index: 12;
	text-align: center;
	line-height: 44px;
	cursor: pointer;
	transition: inherit;
	margin-top: -22px;
	border-radius: 50%;
	background-color: #FFFFFF;
	box-shadow: 0 21px 52px 0 rgba(82, 82, 82, .2);
}

.verifycode-bar i {
	color: #6c757d;
}

.verifycode-bar.verifycode-bar-normal {
	background-color: #0d6efd;
	box-shadow: 0 7px 18px -5px rgba(13, 110, 253, .75);
}

.verifycode-bar.verifycode-bar-normal i {
	color: #FFFFFF;
}

.verifycode-bar.verifycode-bar-error {
	background-color: #F64E54;
	box-shadow: 0 7px 18px -5px rgba(246, 78, 84, .75);
}

.verifycode-bar.verifycode-bar-success {
	background-color: #0CCA8A;
	box-shadow: 0 7px 18px -5px rgba(12, 202, 138, .75);
}

.hidden {
	display: none;
}