123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- .ZupOne {
- width: 100%;
- height: 100%;
- position: relative;
- :global {
- .file_upIcon {
- 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;
- }
- .file_img {
- width: 100px;
- height: 126px;
- position: relative;
- margin-top: 10px;
- .file_closeBox {
- position: absolute;
- right: -10px;
- top: -10px;
- z-index: 99;
- background-color: rgba(0, 0, 0, 0.8);
- width: 20px;
- height: 20px;
- border-radius: 50%;
- font-size: 16px;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .file_lookBox {
- width: 100%;
- background-color: rgba(0, 0, 0, .6);
- color: #fff;
- display: flex;
- justify-content: space-around;
- &>a {
- color: #fff !important;
- }
- font-size: 16px;
- }
- }
- .fileInfo {
- display: flex;
- align-items: center;
- font-size: 16px;
- .clearCover {
- margin-left: 20px;
- cursor: pointer;
- font-size: 16px;
- }
- &>a {
- color: black;
- }
- }
- .fileBoxRow_r_tit {
- height: 46px;
- margin-top: 5px;
- 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;
- }
- }
- }
|