| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .error-tip {
- height: 14px;
- padding: 0 34px;
- margin-top: 4px;
- font-size: 14px;
- line-height: 14px;
- color: red;
- }
- .error-top-hidden {
- visibility: hidden;
- }
- .field {
- & :deep(.el-input__wrapper) {
- --el-input-height: 46px;
- --el-input-border-radius: 23px;
- --el-input-text-color: #333;
- padding: 0 32px;
- margin-top: 12px;
- background-color: #f3f5fa;
- box-shadow: none;
- }
- }
- .upload-wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 260px;
- padding: 24px 16px 20px;
- background: #f3f5fa;
- border: 1px dashed #dedfe2;
- border-radius: 10px;
- }
- .title {
- font-size: 16px;
- color: #000;
- text-align: center;
- }
- .placeholder {
- width: 80px;
- margin: auto 0;
- & img {
- width: 100%;
- }
- }
- .drap-tip {
- font-size: 16px;
- & span {
- color: var(--primary-color);
- cursor: pointer;
- }
- }
- .max-size-tip {
- margin-top: 16px;
- font-size: 14px;
- }
- .drop-active {
- border-color: var(--primary-color);
- opacity: 0.4;
- }
- .upload-error-tip {
- color: red;
- }
- .preview-img {
- width: 200px;
- height: 120px;
- object-fit: cover;
- cursor: pointer;
- }
|