#divbox {
    position: fixed;
    width: auto;
    height: 70%;
    display: none;
    z-index: 11999;
    text-align: center;
}

    #divbox img {
        transform: scale(1,1);
        transition: all 0.6s;
        width: auto;
        height: 100%;
    }

        #divbox img:hover {
            transform: translateY(-30px);
        }

.remain_time, .close {
    font-size: 14PX;
    color: #fff;
}

.close {
    cursor: pointer;
}

/* 半透明的遮罩层 */
#overlay {
    background: #000;
    filter: alpha(opacity=40); /* IE的透明度 */
    opacity: 0.4; /* 透明度 */
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000; /* 此处的图层要大于页面 */
    display: none;
    _background-color: #a0a0a0; /* 解决IE6的不透明问题 */
}
