 .zero-upload-container {
   display: flex;
   width: 100%;

   .move {
     // width: 42px;
     height: 60px;
     margin-right: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
   }


   .ant-upload-list {
     width: 100%;
   }

   .ant-upload-list-picture-card-container {
     width: 100%;
     margin: 0;
   }

   .ant-upload-list-item {
     width: 100%;
     height: 100%;
   }

   .ant-upload-list-item-info::before {
     left: 0;
   }

   .upload {
     width: 100%;
     height: 60px;
     text-align: center;
     border: 1px solid #e0e0e0;
     border-radius: 2px;
     position: relative;

     img {
       width: 100%;
       height: 100%;
       object-fit: contain;
     }

     .imgModal {
       display: none;
     }

     &:hover {
       .imgModal {
         display: flex;
         align-items: center;
         justify-content: center;
         position: absolute;
         width: 100%;
         height: 100%;
         left: 0;
         top: 0;
         background: rgba(0, 0, 0, 0.3);
       }
     }
   }

   .uploading {
     width: 100%;
     height: 60px;
     border: 1px dotted #e0e0e0;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 2px;
     background-color: #f5f6f7;
   }

 }