.d_loading_btn {
	display:inline-flex;
	align-items:center;
	box-sizing:border-box;
	height:32px;
	padding:0 20px;
	border-radius:4px;
	border:1px solid #3D82F2;;
	font-size:14px;
	font-weight:400;
  background: #3D82F2;
color: #fff;
}
.d_loading_btn:hover {
    box-shadow: 0 0 6px rgba(148, 193, 255, .8);
}
.d_loading_btn.loading {
	padding:0 12px;
  cursor: no-drop;
}
.d_loading_btn.loading::before {
	content:'';
	width:18px;
	height:18px;
	margin:1px 6px 0 0;
	background:url(../images/icon-20251029-loading.png) no-repeat center;
	background-size:18px 18px;
	animation:spin 1s linear infinite;
}
@keyframes spin {
	0% {
	transform:rotate(0deg);
}
100% {
	transform:rotate(360deg);
}
}
