king
2024-03-21 a9b02f6862522b54d0824152017bf2acfec2af7b
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.picture-control-model {
  .ant-tabs-tabpane {
    padding-left: 3px;
    padding-right: 3px;
  }
  .picture-plus {
    float: right;
    font-size: 16px;
  }
  .image-video-box {
    position: relative;
    padding-top: 75%;
    box-shadow: 0 0 2px #bcbcbc;
    .image-video-box-body {
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      .video-react-big-play-button {
        display: none;
      }
      .video-react-control-bar {
        display: none;
      }
    }
    .image-video-control {
      position: absolute;
      top: 0;
      left: 0px;
      right: 0px;
      bottom: 0px;
      background: rgba(255, 255, 255, 0.8);
      padding-top: 30%;
      text-align: center;
      opacity: 0;
      transition: all 0.3s;
      .anticon {
        font-size: 20px;
        cursor: pointer;
      }
      .anticon-copy {
        color: rgb(38, 194, 129);
        margin-right: 15px;
      }
      .anticon-edit {
        color: #1890ff;
        margin-right: 15px;
      }
      .anticon-delete {
        color: #ff4d4f;
      }
    }
  }
  .image-video-box:hover {
    .image-video-control {
      opacity: 1;
    }
  }
  .image-video-remark {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 2px;
    height: 35px;
  }
  .ant-pagination {
    text-align: right;
  }
  .icon-wrap {
    text-align: center;
    margin-bottom: 24px;
    >.anticon {
      font-size: 34px;
      margin-bottom: 5px;
    }
  }
}
.picture-edit-model {
  .ant-modal {
    .ant-modal-body {
      min-height: 200px;
    }
  }
}