
/* Start the loader code, first, let's align it the center of screen */
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-mos-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align:center;
/* disable selection and cursor changes */
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor:default;
}

/* Text align it the center of screen and connect the looped animation for 2 seconds */
.text{
	position: absolute;
	left: -1.3em;
	top: -1.7em;
	-webkit-animation: text 2s infinite;
	-moz-animation: text 2s infinite;
	-moz-animation: text 2s infinite;
	-ms-animation: text 2s infinite;
	-o-animation: text 2s infinite;
	animation: text 2s infinite;
}

/* Set for the first layer vertical position */
.vertical{
	position:absolute;
	top: -1.84em;
	left: -0.4em;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* Set for the second layer horizontal position */
.horizontal{
	position:absolute;
	top:0em;
	left:0em;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* The next two classes do mirror for animation */
.circlesup{
	position:absolute;
	top: -4.7em;
	right: 12.1em;
}

.circlesdwn{
	position:absolute;
	top:2.5em;
	right:-13.5em;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* Create a container for our circles, rotate it 45 degrees and set animation*/
.circle {
	position: absolute;
	width: 15em;
	height: 15em;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: orbit 2s infinite;
	-moz-animation: orbit 2s infinite;
	-moz-animation: orbit 2s infinite;
	-ms-animation: orbit 2s infinite;
	-o-animation: orbit 2s infinite;
	animation: orbit 2s infinite;
	z-index:5;
} 

/* Style's of our circles */
.circle:after {
	content: '';
	position: absolute;
	width: 2em;
	height: 2em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	background:#fff;/* Pick a color 1*/

}

.circle:nth-child(2) {
	-webkit-animation-delay: 100ms; 
	-moz-animation-delay: 100ms; 
	-ms-animation-delay: 100ms; 
	-o-animation-delay: 100ms; 
	animation-delay: 100ms;
	z-index:4;
}

.circle:nth-child(2):after  {
	background: #56bebf; /* Pick a color 2*/
	-webkit-transform: scale(0.8,0.8);
	-moz-transform: scale(0.8,0.8);
	-ms-transform: scale(0.8,0.8);
	-o-transform: scale(0.8,0.8);
	transform: scale(0.8,0.8);
}

.circle:nth-child(3) {
	-webkit-animation-delay: 225ms; 
	-moz-animation-delay: 225ms; 
	-ms-animation-delay: 225ms; 
	-o-animation-delay: 225ms; 
	animation-delay: 225ms; 
	z-index:3;
}

.circle:nth-child(3):after  {
	background: #ffa489; /* Pick a color 3*/
	-webkit-transform: scale(0.6,0.6);
	-moz-transform: scale(0.6,0.6);
	-ms-transform: scale(0.6,0.6);
	-o-transform: scale(0.6,0.6);
	transform: scale(0.6,0.6);
}

.circle:nth-child(4) {
	-webkit-animation-delay: 350ms; 
	-moz-animation-delay: 350ms; 
	-ms-animation-delay: 350ms; 
	-o-animation-delay: 350ms; 
	animation-delay: 350ms; 
	z-index:2;
}

.circle:nth-child(4):after  {
	background: #ff6d37; /* Pick a color 4*/
	-webkit-transform: scale(0.4,0.4);
	-moz-transform: scale(0.4,0.4);
	-ms-transform: scale(0.4,0.4);
	-o-transform: scale(0.4,0.4);
	transform: scale(0.4,0.4);
}


.circle:nth-child(5) {
	-webkit-animation-delay: 475ms; 
	-moz-animation-delay: 475ms; 
	-ms-animation-delay: 475ms; 
	-o-animation-delay: 475ms; 
	animation-delay: 475ms; 
	z-index:1;
}

.circle:nth-child(5):after  {
	background: #DB2F00; /* Pick a color 5*/
	-webkit-transform: scale(0.2,0.2);
	-moz-transform: scale(0.2,0.2);
	-ms-transform: scale(0.2,0.2);
	-o-transform: scale(0.2,0.2);
	transform: scale(0.2,0.2);
}

/* Animation keys */
@-webkit-keyframes orbit {
	0%		{ -webkit-transform:rotate(45deg); } 

	5%		{ -webkit-transform:rotate(45deg);
			  -webkit-animation-timing-function: ease-out; } 

	70%		{ -webkit-transform:rotate(405deg); 
			  -webkit-animation-timing-function: ease-in; }

	100%	{ -webkit-transform:rotate(405deg); } 
}

@-moz-keyframes orbit {
	0%		{ -moz-transform:rotate(45deg); } 

	5%		{ -moz-transform:rotate(45deg);
			  -moz-animation-timing-function: ease-out; } 

	70%		{ -moz-transform:rotate(405deg); 
			  -moz-animation-timing-function: ease-in; }

	100%	{ -moz-transform:rotate(405deg); } 
}
@-ms-keyframes orbit {
	0%		{ -ms-transform:rotate(45deg); } 

	5%		{ -ms-transform:rotate(45deg);
			  -ms-animation-timing-function: ease-out; } 

	70%		{ -ms-transform:rotate(405deg); 
			  -ms-animation-timing-function: ease-in; }

	100%	{ -ms-transform:rotate(405deg); } 
}

@-o-keyframes orbit {
	0%		{ -o-transform:rotate(45deg); } 

	5%		{ -o-transform:rotate(45deg);
			  -o-animation-timing-function: ease-out; } 

	70%		{ -o-transform:rotate(405deg); 
			  -o-animation-timing-function: ease-in; }

	100%	{ -o-transform:rotate(405deg); } 
}

@keyframes orbit { 
	0%		{ transform:rotate(45deg); } 
	
	5%		{ transform:rotate(45deg);
			  animation-timing-function: ease-out; } 

	70% 	{ transform:rotate(405deg); 
			  animation-timing-function: ease-in; }

	100%	{ transform:rotate(405deg); } 
}


@-webkit-keyframes text {
	0%		{-webkit-transform:scale(0.2,0.2);
			 -webkit-animation-timing-function: ease-out; } 

	40%,60%{ -webkit-transform:scale(1,1); 
			  -webkit-animation-timing-function: ease-out;  }

	70%,100%{ -webkit-transform:scale(0.2,0.2);  } 
}

@-moz-keyframes text {
	0%		{-moz-transform:scale(0.2,0.2);
			 -moz-animation-timing-function: ease-out; } 

	50%		{ -moz-transform:scale(1,1); 
			  -moz-animation-timing-function: ease-out;  }

	60%		{ -moz-transform:scale(1,1); 
			-moz-animation-timing-function: ease-out;  }

	100%	{ -moz-transform:scale(0.2,0.2);  } 	
}

@-mos-keyframes text {
	0%		{-mos-transform:scale(0.2,0.2);
			 -mos-animation-timing-function: ease-out; } 

	50%		{ -mos-transform:scale(1,1); 
			  -mos-animation-timing-function: ease-out;  }

	60%		{ -mos-transform:scale(1,1); 
			  -mos-animation-timing-function: ease-out;  }

	100%	{ -mos-transform:scale(0.2,0.2);  } 
}

@-o-keyframes text {
	0%		{ -o-transform:scale(0.2,0.2);
			  -o-animation-timing-function: ease-out; } 

	50%		{ -o-transform:scale(1,1); 
			  -o-animation-timing-function: ease-out;  }

	60%		{ -o-transform:scale(1,1); 
			  -o-animation-timing-function: ease-out;  }

	100%	{ -o-transform:scale(0.2,0.2);  } 
}

@keyframes text {
	0%		{ transform:scale(0.2,0.2);
			  animation-timing-function: ease-out; } 

	50%		{ transform:scale(1,1); 
			  animation-timing-function: ease-out;  }

	60%		{ transform:scale(1,1); 
			  animation-timing-function: ease-out;  }

	100%	{ transform:scale(0.2,0.2);  } 
}

/***************第4部分***************/

	.app-loading__pic span[data-v-9f53f930]:nth-child(2){width:278px!important;}



.app-loading[data-v-9f53f930]{position:fixed;top:0;left:0;z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;
-webkit-animation:PicNoen-data-v-9f53f930 3s cubic-bezier(.5,0,0,1) both;animation:PicNone-data-v-9f53f930 4.5s cubic-bezier(.5,0,0,1) both
}
.app-loading__mask[data-v-9f53f930]{position:absolute;top:0;left:0;width:100%;height:100%;background:url(99.png);}
.app-loading__content[data-v-9f53f930]{z-index:100000;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.app-loading__content[data-v-9f53f930],.app-loading__pic[data-v-9f53f930]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.app-loading__pic span[data-v-9f53f930]{position:absolute;display:block;will-change:transform,opacity;}
.app-loading__pic span svg[data-v-9f53f930]{height:100%}
.app-loading__pic span[data-v-9f53f930]:first-child{width:55px;-webkit-animation:leftPicIn-data-v-9f53f930 3s cubic-bezier(.5,0,0,1) both;animation:leftPicIn-data-v-9f53f930 3s cubic-bezier(.5,0,0,1) both}
.app-loading__pic span[data-v-9f53f930]:nth-child(2){width:240px;-webkit-animation:rightPicIn-data-v-9f53f930 3s cubic-bezier(.5,0,0,1) both;animation:rightPicIn-data-v-9f53f930 3s cubic-bezier(.5,0,0,1) both}
.app-loading__pic{top: -26px;left: -16px}



.app-loading__dot[data-v-9f53f930]{position:absolute;display:block;margin:auto;width:70px;height:70px;-webkit-animation:dotRouteIn-data-v-9f53f930 2.3s;animation:dotRouteIn-data-v-9f53f930 2.3s;will-change:transform;opacity: 0}
@-webkit-keyframes dotRouteIn-data-v-9f53f930{0%{opacity: 0}
	50%{opacity: 1}
to{opacity: 0}
}
@keyframes dotRouteIn-data-v-9f53f930{0%{opacity: 0}
	50%{opacity: 1}
to{opacity: 0}
}


@-webkit-keyframes leftPicIn-data-v-9f53f930{0%{opacity:0}
50%{opacity:0;-webkit-transform:translateX(-79px);transform:translateX(-79px);}
87%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
to{-webkit-transform:translateX(-79px);transform:translateX(-79px)}
}
@keyframes leftPicIn-data-v-9f53f930{0%{opacity:0}
50%{opacity:0;-webkit-transform:translateX(0) scale(0.3);transform:translateX(0) scale(0.3);}
87%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%);}
to{-webkit-transform:translateX(-50%) translateY(-100PX)   scale(1);transform:translateX(-50%) translateY(-100PX)  scale(1);}
}


@-webkit-keyframes rightPicIn-data-v-9f53f930{0%{opacity:0}
87%{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}
to{opacity:1;-webkit-transform:translateX(-34px);transform:translateX(-34px)}
}
@keyframes rightPicIn-data-v-9f53f930{0%{opacity:0}
87%{opacity:0;-webkit-transform:translateX(-50%) translateY(100PX);transform:translateX(-50%) translateY(100PX)}
to{opacity:1;-webkit-transform:translateX(-50%) translateY(15PX);transform:translateX(-50%) translateY(15PX)}
}



@-webkit-keyframes PicNone-data-v-9f53f930{	0%{display: block;opacity: 1;top: 0}
	80%{display: block;opacity: 1;top: 0}

to{top: -1000px;;opacity: 0;display: none}
}
@keyframes PicNone-data-v-9f53f930{
	0%{display: block;opacity: 1;top: 0}
	80%{display: block;opacity: 1;top: 0}

to{top: -1000px;;opacity: 0;display: none}
}






@media(max-width:970px){.app-loading__content img[data-v-9f53f
	930]{height:25px}
}
@media(max-width:750px){.app-loading__content img[data-v-9f53f930]{height:20px}
}



@-webkit-keyframes dotZoomIn-data-v-9f53f930{0%{bottom:100%;width:20px;height:20px;opacity:0;-webkit-transform:translateY(-50px);transform:translateY(-50px)}
10%{bottom:100%;opacity:0;-webkit-transform:translateY(-50px);transform:translateY(-50px)}
30%{bottom:100%;opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}
80%{bottom:100%;width:10px;height:10px;opacity:1}
to{bottom:0;opacity:0}
}
@keyframes dotZoomIn-data-v-9f53f930{0%{bottom:100%;width:20px;height:20px;opacity:0;-webkit-transform:translateY(-50px);transform:translateY(-50px)}
10%{bottom:100%;opacity:0;-webkit-transform:translateY(-50px);transform:translateY(-50px)}
30%{bottom:100%;opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}
80%{bottom:100%;width:10px;height:10px;opacity:1}
to{bottom:0;opacity:0}
}

