/* ===== footer ===== */
footer{
	height: 73px;
	position: relative;
}
/* 悬浮菜单 */
.floatingMenu_box {
	position: fixed;
	bottom: 0;
	z-index: 999;
	/* width: 375px; */
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-top: 1px solid #f3f3f3;
	/* border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px; */
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.menuList_box {
    padding: 0;
    text-align: center;
}

.menuList_box a {
	text-align: center;
	line-height: 18px;
	color: #000;
	position: relative;
}

.menuList_box a:focus {
	color: #000;
}

.menuList_box a:hover,
.menuList_box a:focus:hover {
	color: #5a73a4;
	/* font-weight: 600; */
}

.menuList_box a.active {
	color: #5a73a4;
	/* font-weight: 600; */
}
.franchisee_icon {
    position: absolute;
    top: -21px;
    left: -4.5px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

.menuList_icon {
	font-size: 30px;
}
.gmeLogo {
    width: 70px;
}
/* 返回顶部 */
.goTop {
	color: #5a73a4;
	position: fixed;
	bottom: 90px;
	right: 15px;
	z-index: 99;
	display: none;
}

.goTop:hover,
.goTop:focus:hover {
	color: #CC1919;
}

.goTop_icon {
	font-size: 24px;
	cursor: pointer;
}

/* 媒体查询css */
/* 手机 */
@media (max-width:768px) {

	/* ===== footer ===== */
	/* 悬浮菜单 */
	.floatingMenu_box {
		width: 100%;
		border-radius: initial;
	}
}
/* 平板 */
@media (min-width: 768px) and (max-width: 992px) {
	
}
/* 折叠手机或部分平板 */
@media (max-height: 540px) {
}
/* pc */
@media (min-width:1200px) {
	.gmeLogo {
	    width: 100px;
	}
	.menuList_box {
	    width: auto;
	}
	.floatingMenu_box {
	    justify-content: space-around;
	}
}