
.loading-box {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #5683A9;
	position: absolute;
	z-index: 1999;
}
.isDwg{
  background-color: #111820;
}
#loading-logo {
	position: absolute;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	width: 35%;
	height: 35%;
	min-width: 250px;
}
.load-done {
	animation: fill-anm 0.8s ease forwards;
	/* 填充方式，不设置这个值有些文字比如画中间的一块会全部填充成白色 */
	fill-rule: evenodd;
}
.hide-loading-box {
	animation: hide-anm 0.4s ease-in forwards 0.4s;
}
#loading-logo g path {
	stroke: url(#linear);
	stroke-linecap: round;
	stroke-width: 40;
	filter: url(#blur);
	transition: stroke-dashoffset 0.2s ease;
	fill: url(#linear);
	fill-opacity: 0;
}
@keyframes fill-anm {
to {
		fill: url(#linear);
		fill-opacity: 1;
}
}
@keyframes hide-anm {
0% {
		opacity: 1;
}
100% {
		opacity: 0;
}
}

