返回 AiToEarn
image.module.scss
1 .image {
2 display: flex;
3 flex-direction: column;
4 width: 100%;
5 height: 100%;
6 :global {
7 .image-wrapper {
8 width: 1200px;
9 margin: 0 auto;
10 height: 100%;
11 min-height: 0;
12 box-sizing: border-box;
13 padding: 15px 0;
14 display: flex;
15 @media (max-width: 1450px) {
16 width: 90%;
17 }
18 }
19 .image-footer {
20 border-top: 1px solid var(--grayColor3);
21 padding: 15px 0;
22 text-align: center;
23 button {
24 margin-right: 20px;
25 &:last-of-type {
26 margin-right: 0;
27 }
28 }
29 }
30 }
31 }
32
33 .imageLeftSetting {
34 width: 65%;
35 display: flex;
36 flex-direction: column;
37 overflow: auto;
38 height: 100%;
39 min-height: 0;
40 box-sizing: border-box;
41 padding: 25px 20px 0 0;
42 border-right: 1px solid var(--grayColor3);
43 :global {
44 .imageLeftSetting-upload {
45 width: 100%;
46 display: flex;
47 justify-content: center;
48 border-bottom: 1px solid var(--grayColor3);
49 padding-bottom: 30px;
50 margin-bottom: 25px;
51 }
52 .imageLeftSetting-commonPar {
53 height: 100%;
54 &-titles, &-item {
55 display: flex;
56 align-items: center;
57 justify-content: space-between;
58 font-size: var(--fs-sm);
59 margin-bottom: 30px;
60 & > label {
61 flex-shrink: 0;
62 }
63 }
64 &-item {
65 textarea {
66 height: 150px;
67 resize: none;
68 }
69 }
70 }
71 }
72 }
73
74 .imageRightSetting {
75 width: 45%;
76 box-sizing: border-box;
77 margin-left: 20px;
78 :global {
79 .imageRightSetting-title {
80 text-align: left;
81 font-size: var(--fs-sm);
82 margin: 25px 0 5px 0;
83 }
84
85 .ant-steps {
86 margin-top: 30px;
87 .ant-steps-item {
88 height: 70px;
89 }
90 .ant-steps-item-title {
91 color: #222 !important;
92 font-weight: 900;
93 }
94 .ant-steps-item-description {
95 color: var(--grayColor7) !important;
96 font-size: var(--fs-xs);
97 }
98 }
99 }
100 }
101
101 lines Plain Text