123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .uploader-section {
- margin: 10px 0;
- height: 145px;
- border: 1px dashed #ccc;
- border-radius: 10px;
- box-sizing: border-box;
- position: relative;
- &.uploader-section-value {
- border: none;
- }
- .img-close {
- position: absolute;
- top: 4px;
- right: 4px;
- z-index: 199;
- font-size: 16px;
- // background-color: #333;
- color: #fff;
- width: 20px;
- height: 20px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- }
- .col-uploader {
- width: 100%;
- height: 100%;
- align-items: center;
- display: flex;
- justify-content: center;
- }
- :global {
- .van-uploader {
- width: 100%;
- height: 100%;
- align-items: center;
- display: flex;
- justify-content: center;
- }
- .van-uploader__wrapper,
- .van-uploader__input-wrapper {
- display: flex;
- align-items: center;
- justify-content: center;
- width: inherit;
- height: inherit;
- }
- }
- .uploader {
- // width: 300px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- height: 100%;
- .uploaderText {
- font-size: 14px;
- color: #999999;
- margin-top: 8px;
- }
- }
- .uploadImg {
- width: 100%;
- height: 100%;
- // border-radius: 10px;
- overflow: hidden;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 99;
- }
- video {
- background: rgba(0, 0, 0, 0.6);
- }
- }
|