@charset "utf-8";
/* CSS Document */

.main img{
    width: 100%; 
}
.modal{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
}
.modal .container{
    position: absolute;
    width: 404px;
    height: 512px;
    background: #fff;
    left: 0;right: 0;top: 0;bottom: 0;
    margin: auto;
    box-sizing: border-box;
    padding: 1em;
    border-radius: 6px;
    
}
.modal .container .close{
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 30px;
    position: absolute;
    right: -15px;
    top: -15px;
    border: 2px solid #fff;
    cursor: pointer;
}