﻿/* 弹窗广告css 2018-8-29 */
html, body{ margin:0; height:100%; }
#qgg_popup{
    position: fixed;
    top: 0; left: 0;
    /* display: none; */
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgba(36, 36, 36, 0.8);
    z-index:999;
    transition: 0.6s ease-in-out;
    opacity: 0;
}
 
.qgg_popup.open{
    opacity: 1;
}

.qgg_popup_box { 
    z-index: 10; 
    position: absolute;
    top: 0; left: 0; bottom: 20px; right: 0;
    width: 560px;
    height: 760px;
    margin: auto;
    text-align: center; 
	
} 
.qgg_popup_close{
    position: relative;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #999;
    float: right;
    font-size: 24px;
    text-align: center;
    border-radius: 50%;
    line-height: 36px;
    font-weight: bold;
	
}
 
.qgg_popup_close:hover,
.qgg_popup_close:focus {
    color: black;
    cursor: pointer;
}
 
.qgg_popup_img{
    position:relative;
    top: 36px;
    left: 50px;
    width:560px;
    height:800px;
    border-radius: 15px;
	z-index:999;
}
@media (max-width: 640px){
    .qgg_popup_close{ display: none; }
}