@charset "utf-8";

#popupModule{
	width: 12.5rem;
	height:5.5rem;
	background-color:#f1f1f1;
	position: fixed;
	left: 0;
	right: 0;
	margin:0 auto;
	z-index:9999999888;
	border-top-left-radius:0.2rem;
	border-top-right-radius:0.2rem;
	display: none;
	-webkit-animation: callApp 1s ease forwards;
    animation: callApp 1s ease forwards;
    transform:translateZ(0);
}
.popupModuleTop{
	height: 1.5rem;
	display: flex;
	justify-content:space-between;
	padding:0 0.5rem;
}
.popupModuleTop li{
	/*flex:0%;*/
}
.popupModuleTop li:first-child{
	color:#333;
	font:bold 0.5rem/1.5rem "宋体";
}
.popupModuleTop li:last-child{
	color:#666;
	font:0.43rem/1.5rem "宋体";
	text-align: right;
}
.popupModuleTop li:last-child span{
	background:url(//static.m1905.cn/homepage2020/H5/images/arrowPopup.png) no-repeat;
	display: inline-block;
	width: 0.2rem;
	height: 0.33rem;
	background-size: cover;
	margin-left:0.183rem;
}
.popupModuleBottom{
	background-color:#fff;
	height: 3.97rem;
	padding:0 0.83rem;
	display: flex;
	align-items:center;
}
.popupModuleBottom li:first-child{
	margin-right: 1.5rem;
	width:6.5rem;
	display: flex;
	justify-content:space-between;
}
.popupModuleBottom li:first-child img:first-child{
	width: 2.02rem;
	height: 2.02rem;
}
.popupModuleBottom li:first-child img:last-child{
	width: 3.96rem;
	height: 2.03rem;
}
.popupModuleBottom a{
	display: inline-block;
	width: 2.67rem;
	height: 1rem;
}
.popupModuleBottom a img{
	width: 2.67rem;
	height: 1rem;
}
.wakeUpAppModule{
	position: fixed;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99999;
	display: none;
	width: 78%;
	height: auto;
	-webkit-animation: callApp1 .5s linear forwards;
	animation: callApp1 .5s linear forwards;
}
.wakeUpAppModule img{
	width: 100%;
}
.backToTop{
	bottom: 2.47rem;
}
@-webkit-keyframes callApp {
	0% {
		bottom: -100px
	}

	to {
		bottom: 0
	}
}

@keyframes callApp {
	0% {
		bottom: -100px
	}

	to {
		bottom: 0
	}
}

@-webkit-keyframes callApp1 {
	0% {
		bottom: -100px
	}

	to {
		bottom: 20px
	}
}

@keyframes callApp1 {
	0% {
		bottom: -100px
	}

	to {
		bottom: 20px
	}
}