zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.upload {
  height: auto;
  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    .upload-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      width: 90%;
      margin: 10px 0;
    }
  }
  .img-box {
    margin-bottom: 10px;
  }
  .form-box {
    display: flex;
    justify-content: space-around;
    width: 100%;
    .card {
      margin-right: 10px;
      &:last-child {
        margin-right: 0;
      }
      .el-form {
        width: 100%;
      }
    }
  }
}