body,html {
		padding:0;margin:0;height:100%;width:100%;background:black;
}

#mainContainer {
    z-index: 900;
    position: fixed;
}

#adContainer {
    width: 100%;
    height: 100%;
    background: black;
}

#div_iframe_game {
    width: 100%;
}

#iframe_game {
    width: 100%;
    height: 100%;
}

#game_banner {
    width: 100%;
    justify-content: center;
    display: flex;
    position: fixed;
		background:#fff;
}

#div_afc_Content{
	width: 100%; height: 100%; overflow: visible; z-index: 999; background: #3d88d6; position: absolute; top: 0px; left: 0px;
}

@media screen and (orientation:portrait) {
	#game-info{
		font-family: Roboto-Medium; font-size: 17px; position: relative; display: block; z-index: 999; color: #cccccc; padding: 2rem; top: 30px; margin: 0 auto; text-align: center;
	}
}
@media screen and (orientation:landscape) {
	#game-info{
		display: none;
	}
}

#button_afc_Content{
	margin: 0px auto 20px; position: relative; background: rgb(102, 102, 102); font-size: 1em; display: block; width: 40%; color: white; border: 0.125rem solid rgb(255, 255, 255); border-radius: 0.5rem;
}

.btn_afc_play_span{
	font-family: Roboto-Medium; font-size: 24px; position: relative; display: block; z-index: 9;
}

#afc_progress{
	width: 100%; height: 100%; border-radius: 0.5rem; position: absolute; left: 0px; top: 0px; background: #009a44;
}

#afc_section{
	position: relative; background-position: center center; background-repeat: no-repeat; background-size: 100%; width: 100%; text-align: center; display: block;
}

#div_afc_adContainer{
	overflow: hidden; background: rgb(255, 255, 255); display: block;
}

.img_tap_game {

    opacity: 0.1;                                   /* 不透明度 */
    overflow: hidden;                               /* 溢出隐藏 */
   /* margin: 25% auto; */                              /* 外边距 */
  
    /* IE10、Firefox and Opera，IE9以及更早的版本不支持 */
    animation-name: breath;                         /* 动画名称 */
    animation-duration: 1200ms;                         /* 动画时长3秒 */
    animation-timing-function: ease-in-out;         /* 动画速度曲线：以低速开始和结束 */
    animation-iteration-count: infinite;            /* 播放次数：无限 */
 
    /* Safari and Chrome */
    -webkit-animation-name: breath;                 /* 动画名称 */
    -webkit-animation-duration: 1200ms;                 /* 动画时长3秒 */
    -webkit-animation-timing-function: ease-in-out; /* 动画速度曲线：以低速开始和结束 */
    -webkit-animation-iteration-count: infinite;    /* 播放次数：无限 */
}
 
@keyframes breath {
    from { opacity: 0.1; }                          /* 动画开始时的不透明度 */
    50%  { opacity:   1; }                          /* 动画50% 时的不透明度 */
    to   { opacity: 0.1; }                          /* 动画结束时的不透明度 */    
}
 
@-webkit-keyframes breath {
    from { opacity: 0.1; }                          /* 动画开始时的不透明度 */
    50%  { opacity:   1; }                          /* 动画50% 时的不透明度 */
    to   { opacity: 0.1; }                          /* 动画结束时的不透明度 */
}
