@charset "utf-8";
/* CSS Document */
.lb-bg{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.lb-box{
    position:relative;
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    width:100%;
    max-width:800px;
    margin:auto;   /* 讓左右永遠平均 */
}

.lb-img{
    width:100%;
    height:auto;
}

.lb-btn-area{
    margin-top:10px;
	border-radius:10px;
}

.lb-btn-area button{
    padding:10px 25px;
    font-size:16px;
    cursor:pointer;
	
}

.lb-close{
    position:absolute;
    right:10px;
    top:5px;
    font-size:22px;
    cursor:pointer;
}

/* 手機優化 */
@media (max-width:600px){
	
	.lb-box{
    position:relative;
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    width:90%;
    max-width:600px;
	margin:auto;   /* 讓左右永遠平均 */
}

.lb-img{
    width:100%;
    height:auto;
}

   

    .lb-btn-area button{
        width:100%;
        font-size:18px;
    }

}