/*遮罩层*/
#message-tip-wrapper {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	text-align: center;
	z-index: 100;
	display: none;
	font-size: 14px;
}

#message-tip-wrapper .message-tip {
	position: absolute;
	top: 20px;
	right: 25px;
}

#message-tip-wrapper .message-tip .highlight {
	color: #6833cf;
	font-weight: 500;
}

#message-tip-wrapper .message-tip .arrow {
	top: -8px;
	right: 0;
	position: absolute;
	width: 20px;
}

#message-tip-wrapper .message-tip .message {
	top: 0;
	right: 0;
	/*position: absolute;*/
	width: 160px;
	border-radius: 6px;
}
/*遮罩层结束*/

/* 顶部打开 */
.mobile-goapp-wrapper {
	background: hsla(0, 0%, 97.6%, 0.9);
	width: 100%;
	display: block;
	position: fixed;
	top: 0;
	z-index: 11;
}

.mobile-goapp-wrapper .mobile-goapp {
	height: 40px;
    padding: 5px 14px;
    margin: 0 auto;
}

.mobile-goapp-wrapper .mobile-goapp .logo {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background: url(/static/logo.jpg) no-repeat 50%;
	background-color: #008c3e;
	background-size: cover;
	float: left;
}

.mobile-goapp-wrapper .mobile-goapp .text-wrapper{
	display: flex;	
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.mobile-goapp-wrapper .mobile-goapp .text {
	display: flex;	
	flex-direction: column;
	justify-content: space-between;
    padding: 3px 0;
    padding-left: 5px;
}

.mobile-goapp-wrapper .mobile-goapp .text .title {
	font-size: 14px;
	color: #262626;
}

.mobile-goapp-wrapper .mobile-goapp .text .info {
	font-size: 12px;
	color: #262626;
	opacity: 0.4;
}

.mobile-goapp-wrapper .mobile-goapp .open {
	width: 90px;
	height: 32px;
	line-height: 32px;
	color: #fff;
	background: #008c3e;
	text-align: center;
	font-size: 13px;
	border-radius: 2px;
	position: relative;
}

.mobile-goapp-wrapper .weight-bold {
	font-weight: 500;
}
/* 顶部打开结束 */