.my_upload {
  margin: 20px 0;
}
.my_upload .imgs {
  display: inline-block;
}
.my_upload .imgs .img {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 120px;
  height: 120px;
  border-radius: 6px;
}
.my_upload .imgs .img:hover .close {
  display: block;
}
.my_upload .imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my_upload .imgs .img .close {
  display: none;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 20px;
  height: 20px;
  background: url(../images/img/close.png) no-repeat center center rgba(0, 0, 0, 0.5);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 1;
}
.my_upload .upload_input {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 120px;
  height: 120px;
  overflow: hidden;
}
.my_upload .upload_input #my_upload_file {
  margin-left: -100px;
  width: 200px;
  height: 200px;
  opacity: 0;
  cursor: pointer;
}
.my_upload .upload_input .my_upload_file {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 40px;
  width: 120px;
  height: 120px;
  text-align: center;
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: #aeaeae;
}
.my_upload .my_upload_btn {
  display: none;
  margin: 20px 0;
}
.my_upload .my_upload_btn button {
  width: 98px;
  height: 34px;
  background-color: #2398d6;
  border-radius: 8px;
  text-align: center;
  line-height: 34px;
  color: white;
}
