123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- .uploadFile {
- :global {
- .n-upload-dragger {
- padding: 0;
- border: none;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #FFFFFF;
- border: 1px solid #DCE2F1;
- border-radius: 20px;
- &:hover {
- border-color: #198CFE;
- }
- }
- }
- .uploadBtn {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- width: 433px;
- height: 275px;
- font-weight: 600;
- font-size: max(15px, 13Px);
- color: #131415;
- span {
- padding-top: 13px;
- display: block;
- text-align: center;
- font-weight: 400;
- font-size: max(13px, 11Px);
- color: #131415;
- }
- .iconUploadAdd {
- width: 50px;
- height: 50px;
- margin-bottom: 27px;
- }
- }
- }
- .uploadHeader {
- padding: 0 27px;
- display: flex;
- .headerItem {
- position: relative;
- padding: 17px 0 13px;
- font-weight: 600;
- font-size: max(18px, 14Px);
- color: #131415;
- &::after {
- content: '';
- display: inline-block;
- position: absolute;
- bottom: 0;
- width: 100%;
- left: 0;
- height: 3px;
- background: #198CFE;
- }
- }
- }
- .uploadContainer {
- text-align: center;
- height: 538px;
- background-color: #F7F8F9;
- display: flex;
- align-items: center;
- justify-content: center;
- :global {
- .n-upload {
- width: auto;
- }
- .cropper-view-box {
- outline-color: #198CFE !important;
- outline-width: 2px !important;
- }
- .cropper-point {
- width: 5px !important;
- height: 5px !important;
- }
- .cropper-bg {
- background-image: none !important;
- }
- .cropper-modal {
- background-color: #F7F8F9;
- opacity: 0.7;
- }
- }
- }
- .imgCropperSection {
- width: 633px;
- height: 407px;
- // overflow: hidden;
- img {
- max-width: 100%;
- }
- }
- .uploadBtnGroup {
- padding: 17px 27px;
- display: flex;
- justify-content: space-between;
- :global {
- .n-button {
- border-radius: 8px;
- font-size: max(15px, 13Px);
- min-width: 97px;
- }
- }
- }
|