/*Lee dialog 1.0 http://www.xij.cn/blog/?p=68*/

#floatBoxBg{
    display:none;
    width:100%;
    height:100%;
    background:#000;
    position:absolute;
    top:0;
    left:0;
}

.floatBox{
    @media (-webkit-min-device-pixel-ratio: 1) {
        background-image: url(../images/popup.png);
      }
    
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        background-image: url(../images/popup@2x.png);
      }

    background-size: contain;
    width:317px;
    height:532px;
    position:absolute;
    top:50px;
    /*left:40%;*/
    z-index:1000;
    display: flex;
    flex-direction: column;
}

.floatBox .title{
    height:60px;
    padding:7px 10px 0;
    background:transparent;
    color:firebrick;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}

.floatBox .title h4{
    /*float:left;*/
    padding:0;
    margin:0;
    font-size:18px;
    font-family: GameFont;
}

.floatBox .title span{
    float:right;
    cursor:pointer;
}

.floatBox .content{
    padding-top:25px;
    padding-left:10px;
    padding-bottom:12px;
    padding-right:10px;
    background-color:transparent;
    overflow: scroll;
    width: 100%;
    height: 465px;
}

.close-button{
    background-color: transparent;
    display: flex;
    width: 100%;
    height: 53px;
    margin-top: 10px;
    justify-content: center;
}