/*****************************************************/
/*
/*	foot.php
/*
/*****************************************************/
#foot
{
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 75px;
	box-sizing: border-box;
	z-index: 5;
	background-image: url(../../img/foot_bg.png?ver=<?=$_version?>);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-color: transparent;
	max-width: 800px;
	margin: 0px auto;
}
#foot_tabs
{
	height: 100%;
	box-sizing: border-box;
	display: flex;
	padding: 10px 10px 5px;
	justify-content: space-between;
}
.foot_tab
{
	height: 100%;
	width: 17%;
	display: flex;
	box-sizing: border-box;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	justify-content: center;
	align-items: center;
	color: transparent;
}
.foot_tab[tar="more"]
{
	background-image: url(../../img/foot_more.png?ver=<?=$_version?>);
}
.foot_tab[tar="mission"]
{
	background-image: url(../../img/foot_mission.png?ver=<?=$_version?>);
}
.foot_tab[tar="chat"]
{
	background-image: url(../../img/foot_chat.png?ver=<?=$_version?>);
}
.foot_tab[tar="rank"]
{
	background-image: url(../../img/foot_rank.png?ver=<?=$_version?>);
}
.foot_tab[tar="contact"]
{
	background-image: url(../../img/foot_contact.png?ver=<?=$_version?>);
}
.foot_tab[tar="gift"]
{
	background-image: url(../../img/foot_gift.png?ver=<?=$_version?>);
}
.foot_tab[tar="mall"]
{
	width: 105px;
	position: relative;
}
.foot_tab[tar="mall"]::before
{
	content:" ";
	position: absolute;
	bottom: -6px;
	width: 105px;
	height: 105px;
	background-image: url(../../img/foot_login.png?ver=<?=$_version?>);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
}
#foot_popups
{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 6;
	display: none;
}
#foot_popup_box
{
	max-width: 800px;
	height: 100%;
	margin: 0px auto;
	background-image: url(../../img/popup/popups_bg_bottom.png);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
.foot_popup
{
	height: calc(100% - 100px);
/* 
	background-image:
		url(../../img/popup/popups_bg_gold.png),
		url(../../img/popup/popups_bg_top.png);
 */
	background-image: url(../../img/popup/popups_bg_top.png);
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
#foot_popups_close
{
	width: 120px;
	height: 60px;
	box-sizing: border-box;
	position: absolute;
	left: calc(50% - 60px);
	bottom: 25px;
	cursor: pointer;
	background-image: url(../../img/popup/popups_close.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.foot_popup_caption
{
	width: 100%;
	height: 100px;
	background-image: url(../../img/popup/popup_rank.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-origin: content-box;
	padding-top: 15px;
}
@media screen and (min-width:800px)
{
	.foot_popup_caption
	{
		padding-top: 40px;
	}
	#foot_popups_close
	{
		bottom: 6px;
	}
}

