.posters_img_add {
  
  width: 49.2%;
  box-sizing: border-box;
  display: inline-block;
  height: 80px;
  overflow: hidden;
  cursor: pointer;

}  
  
.posters_img_add img{
    
  max-width: 400px;

}

.posters_modal {
    
  max-height: 620px;
  max-width: 480px;
  width: 100%;
  height: 100%;
    
}
  
@media (max-width: 620px) {
  
  .posters_modal {
    
    max-height: 100%;
    max-width: 100%;
  
  }
    
}

.posters_modal_title {
    
  font-size: 18px;
  padding: 18px;
  box-sizing: border-box;
  font-weight: bold;

}

.posters_modal_title span{
  
  position: relative;
  top: -2px;
  cursor: pointer;
  float: right;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  background-color: #E5F1FF;
    
}

.posters_modal_container {
    
  height: 86%;
  padding: 14px;
    
}
  
.posters_show {
  
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #DEEBF6;
  border-radius: 15px;
  border: 1px #E8EFF3 solid;
  
}

.posters_show img{
  
  max-width: 100%;
  
}

.posters_show_content {
  
  position: absolute;
  padding: 15px;
  color: white;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10;
  border: none;
  outline: none;
  resize: none;
  
}

@media (max-height: 590px) {
    
  .posters_modal_container {
      
    height: 84%;    
    
  }

}

@media (max-width: 650px) {
    
  .posters_show img{
      
    max-width: 380px;    
    
  }
  
  .posters_show {
      
    height: 200px; 
    
  }
  
  .posters_show_content {
    
    font-size: 16px;
    padding: 12px;
    
  }

}