123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .Z3upFiles {
- position: relative;
- width: 100%;
- height: 100%;
- :global {
- .Z3files {
- width: 500px;
- // padding-top: 6px;
- .Z3filesRow {
- display: flex;
- margin-top: 5px;
- justify-content: space-between;
- align-items: center;
- font-size: 16px;
- border-bottom: 1px dashed #999;
- padding-bottom: 5px;
- .Z3files1 {
- width: calc(100% - 130px);
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .Z3files2 {
- display: flex;
- width: 120px;
- justify-content: flex-end;
- &>span {
- cursor: pointer;
- }
- a {
- color: black;
- }
- }
- }
- }
- .fileTit {
- margin-top: 14px;
- 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;
- }
- }
- .lookNone {
- position: relative;
- top: 4px;
- left: 10px;
- }
- }
- }
|