| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .Z_upFileMore {
- position: relative;
- width: 100%;
- height: 100%;
- :global {
- .fileBoxRow_up {
- color: #a6a6a6;
- border-radius: 3px;
- cursor: pointer;
- font-size: 30px;
- width: 100px;
- height: 100px;
- border: 1px dashed #797979;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .fileImgListBox {
- display: flex;
- flex-wrap: wrap;
- margin-bottom: 10px;
- &>div {
- cursor: move;
- margin: 15px 20px 0px 0;
- }
- }
- .fileImgListBoxNo {
- &>div {
- cursor: default;
- }
- }
- .fileBoxRow_r_img {
- position: relative;
- .fileImgListLDBox {
- height: 26px;
- background-color: rgba(0, 0, 0, .6);
- color: #fff;
- display: flex;
- justify-content: space-around;
- font-size: 16px;
- &>a {
- color: #fff;
- }
- }
- .clearCover {
- cursor: pointer;
- position: absolute;
- z-index: 99;
- right: -10px;
- top: -10px;
- background-color: rgba(0, 0, 0, .8);
- width: 20px;
- height: 20px;
- border-radius: 50%;
- font-size: 16px;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .fileTit {
- font-size: 14px;
- color: rgb(126, 124, 124);
- .noUpThumb {
- position: relative;
- overflow: hidden;
- opacity: 0;
- transition: top .2s;
- color: #ff4d4f;
- top: -10px;
- }
- .noUpThumbAc {
- top: 0;
- opacity: 1;
- }
- }
- }
- }
|