1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .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: 98;
- 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;
- .uploaderText {
- font-size: 14px;
- color: #999999;
- margin-top: 8px;
- }
- }
- .uploadImg {
- width: 100%;
- height: 100%;
- border-radius: 10px;
- overflow: hidden;
- }
- }
|