/* 背景图懒加载 */
.lazy-background{}
/* 弹出样式 */
.default-msg-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgb(0, 0, 0,.3);
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.default-msg-popup .inner{
	background: #fff;
	border-radius: 10px;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}
.default-msg-popup .inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 200px;
	padding: 10px 0;
	padding-top: 15px;
}
.default-msg-popup .inner .fa {
	font-size: 46px;
}
.default-msg-popup .inner p{
	padding: 10px;
	text-align: center;
}
.default-msg-popup .inner .pic{
	width: 80%;
	margin: 0 auto;
	margin-bottom: 15px;
}
.default-msg-popup .buts{
	display: flex;
	flex-direction: row;
	border-top: 1px solid #D9D9D9;
	width: 100%;
	justify-content: center;
	padding-top:10px ;
}
.default-msg-popup .buts>div{
	color: #007ca5;
	cursor: pointer;
	flex: 1;
	display: flex;
	margin: 0 5px;
	justify-content: center;
	align-items: center;
}
/* 动画过度 */
/* 旋转 */
.keep-rota{
	position: relative;
	transform-origin: center;
	animation: ERT 1s linear infinite;
}
@keyframes ERT {
	0% {transform: rotate(0deg);}
	0% {transform: rotate(360deg);}
}
.err-tips{
	box-sizing: border-box;
	border: 1px solid red !important;
}
/* 按升序升起出现 */
.item-get-up-in{
	position: relative;
	transition: all 1s ease-in-out;
	opacity: 0;
	transform: translateY(100px);
}
.item-get-up-in:nth-child(1){
	transition: all 1s ease-in-out;
}
.item-get-up-in:nth-child(2){
	transition: all 1s .4s ease-in-out;
}
.item-get-up-in:nth-child(3){
	transition: all 1s .8s ease-in-out;
}
.item-get-up-in:nth-child(4){
	transition: all 1s 1.2s ease-in-out;
}
.item-get-up-in:nth-child(5){
	transition: all 1s 1.6s ease-in-out;
}
.item-get-up-in:nth-child(6){
	transition: all 1s 2s ease-in-out;
}
.item-get-up-in:nth-child(7){
	transition: all 1s 2.4s ease-in-out;
}
.item-get-up-in:nth-child(8){
	transition: all 1s 2.8s ease-in-out;
}
.item-get-up-in:nth-child(9){
	transition: all 1s 3.2s ease-in-out;
}
.item-get-up-in:nth-child(10){
	transition: all 1s 3.6s ease-in-out;
}
.item-get-up-in.active{
	opacity: 1;
	transform: translateY(0px);
}
.item-get-up-in.clear-transition{
	transition:none;
}
/* 按升序升起出现 */
.item-get-in{
	position: relative;
	transition: all 1s ease-in-out;
	opacity: 0;
}
.item-get-in:nth-child(1){
	transition: all 1s ease-in-out;
}
.item-get-in:nth-child(2){
	transition: all 1s .4s ease-in-out;
}
.item-get-in:nth-child(3){
	transition: all 1s .8s ease-in-out;
}
.item-get-in:nth-child(4){
	transition: all 1s 1.2s ease-in-out;
}
.item-get-in:nth-child(5){
	transition: all 1s 1.6s ease-in-out;
}
.item-get-in:nth-child(6){
	transition: all 1s 2s ease-in-out;
}
.item-get-in:nth-child(7){
	transition: all 1s 2.4s ease-in-out;
}
.item-get-in:nth-child(8){
	transition: all 1s 2.8s ease-in-out;
}
.item-get-in:nth-child(9){
	transition: all 1s 3.2s ease-in-out;
}
.item-get-in:nth-child(10){
	transition: all 1s 3.6s ease-in-out;
}
.item-get-in.active{
	opacity: 1;
}
.item-get-in.clear-transition{
	transition:none;
}
/* 放大出现 */
.item-scale-in{
	position: relative;
	transition: all 1s ease-in-out;
	opacity: 0;
	transform: scale(.8);
}
.item-scale-in.active{
	opacity: 1;
	transform: scale(1);
}
.item-scale-in.clear-transition{
	transition:none;
}
/* 并排升起出现 */
.item-row-up-in{
	position: relative;
	transition: all 1s ease-in-out;
	opacity: 0;
	transform: translateY(100px);
}
.item-row-up-in.active{
	opacity: 1;
	transform: translateY(0px);
}
.item-row-up-in.clear-transition{
	transition:none;
}
/* 渐变出现 */
.opacity-in{
	transition: all 1.5s linear;
	opacity: 0;
}
.opacity-in.active{
	opacity: 1;
}
.opacity-in.clear-transition{
	transition:none;
}

/* 左右靠拢 */
.item-get-close{
	opacity: 0;
	transition: all 1s ease-in-out;
}
.get-close-left{
	transform: translateX(-120px);
}
.get-close-right{
	transform: translateX(120px);
}
.get-close-left.active{
	opacity: 1;
	transform: translateX(0px);
}
.get-close-right.active{
	opacity: 1;
	transform: translateX(0px);
}
.item-get-close.clear-transition{
	transition:none;
}