/* 背景图懒加载 */
.lazy-background{}
/* 弹出样式 */
.default-msg-popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	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;
	color: #333;
	font-size: 16px;
}
.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;
	font-size: 16px;
}
/* 动画过度 */
/* 旋转 */
.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: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.item-get-up-in:nth-child(2){
	transition: transform 1s .4s ease-in-out, opacity 1s .4s ease-in-out;
}
.item-get-up-in:nth-child(3){
	transition: transform 1s .8s ease-in-out, opacity 1s .8s ease-in-out;
}
.item-get-up-in:nth-child(4){
	transition: transform 1s 1.2s ease-in-out, opacity 1s 1.2s ease-in-out;
}
.item-get-up-in:nth-child(5){
	transition: transform 1s 1.6s ease-in-out, opacity 1s 1.6s ease-in-out;
}
.item-get-up-in:nth-child(6){
	transition: transform 1s 2s ease-in-out, opacity 1s 2s ease-in-out;
}
.item-get-up-in:nth-child(7){
	transition: transform 1s 2.4s ease-in-out, opacity 1s 2.4s ease-in-out;
}
.item-get-up-in:nth-child(8){
	transition: transform 1s 2.8s ease-in-out, opacity 1s 2.8s ease-in-out;
}
.item-get-up-in:nth-child(9){
	transition: transform 1s 3.2s ease-in-out, opacity 1s 3.2s ease-in-out;
}
.item-get-up-in:nth-child(10){
	transition: transform 1s 3.6s ease-in-out, opacity 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 2s 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;
}

/* 表单 */
/* 自定义select */
.yg-select{
	display: flex;
	align-items: center;
	flex-direction: row;
	font-size: 14px;
	color: #333333;
}
.yg-select label{
	font-weight: 400;
	margin-right: 10px;
}
.yg-select select{
	display: none;
}
.yg-select .select-box{
	border-radius: 3px;
	border: 1px solid #DBDBDB;
	height: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 10px;
	cursor: pointer;
	position: relative;
}
.yg-select .select-box span{
	font-weight: 400;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.yg-select .select-box i{
	margin-left: 10px;
}
.yg-select .select-box ul{
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 2px);
	min-width: 100%;
	max-height: 200px;
	overflow-y: auto;
	z-index: 999;
}
.yg-select .select-box.active ul{
	display: block;
	background-color: #fff;
	box-shadow: 0 0 5px 3px rgba(0,0,0,0.1);
}
.yg-select .select-box.active ul li{
	white-space: normal;
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
}
.yg-select .select-box.active ul li:hover{
	background-color: #F0F3FF;
}
.yg-select .select-box.active ul li.active{
	background-color: #F0F3FF;
}

@media screen and (max-width:767px){
	.item-get-up-in{
		transition: none;
	}
	.item-get-in{
		transition: none;
	}
	.item-scale-in{
		transition: none;
	}
	.item-row-up-in{
		transition: none;
	}
	.opacity-in{
		transition: none;
	}
	.item-get-close{
		transition: none;
	}
}