@uxda/appkit 4.0.3 → 4.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/.eslintrc.mjs +7 -7
  2. package/README.md +187 -187
  3. package/babel.config.js +12 -12
  4. package/package.json +75 -80
  5. package/project.config.json +15 -15
  6. package/project.tt.json +13 -13
  7. package/rollup.config.mjs +56 -56
  8. package/src/Appkit.ts +65 -65
  9. package/src/balance/api/endpoints.ts +126 -126
  10. package/src/balance/api/index.ts +82 -82
  11. package/src/balance/components/AccountView.vue +748 -748
  12. package/src/balance/components/BalanceCard.vue +205 -209
  13. package/src/balance/components/BalanceReminder.vue +85 -85
  14. package/src/balance/components/ConsumptionFilter.vue +218 -218
  15. package/src/balance/components/ConsumptionRules.vue +68 -68
  16. package/src/balance/components/DateFilter.vue +227 -226
  17. package/src/balance/components/DateRange.vue +78 -0
  18. package/src/balance/components/ListFilter.vue +64 -0
  19. package/src/balance/components/ListFilterPicker.vue +187 -0
  20. package/src/balance/components/SecondBalance.vue +71 -71
  21. package/src/balance/components/Tip.vue +45 -45
  22. package/src/balance/components/index.ts +13 -9
  23. package/src/balance/types.ts +91 -90
  24. package/src/components/bt-cropper/index.vue +774 -774
  25. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  26. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  27. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  28. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  29. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  30. package/src/components/bt-cropper/utils/ratio.js +3 -3
  31. package/src/components/bt-cropper/utils/tools.js +25 -25
  32. package/src/components/dd-area/index.vue +225 -225
  33. package/src/components/dd-icon/doc.md +21 -21
  34. package/src/components/dd-icon/index.vue +23 -23
  35. package/src/components/dd-notice-bar/index.vue +78 -78
  36. package/src/components/dd-search/doc.md +34 -34
  37. package/src/components/dd-search/index.vue +168 -168
  38. package/src/components/dd-selector/index.vue +124 -124
  39. package/src/components/dd-skeleton/doc.md +19 -19
  40. package/src/components/dd-skeleton/index.vue +36 -36
  41. package/src/components/ocr-id/index.vue +114 -114
  42. package/src/components/ocr-id/types.d.ts +12 -12
  43. package/src/global.ts +6 -6
  44. package/src/index.ts +89 -89
  45. package/src/main.scss +1 -1
  46. package/src/notice/api/endpoints.ts +17 -17
  47. package/src/notice/api/index.ts +82 -82
  48. package/src/notice/components/NoticeBanner.vue +243 -243
  49. package/src/notice/components/NoticeEntry.vue +99 -99
  50. package/src/notice/components/NoticeList.vue +315 -315
  51. package/src/notice/components/NoticePopup.vue +161 -161
  52. package/src/notice/components/index.ts +5 -5
  53. package/src/notice/components/useCommonList.ts +86 -86
  54. package/src/notice/components/useNotice.ts +35 -35
  55. package/src/notice/index.ts +1 -1
  56. package/src/notice/types.ts +25 -25
  57. package/src/payment/api/config.ts +7 -7
  58. package/src/payment/api/endpoints.ts +103 -103
  59. package/src/payment/api/index.ts +71 -71
  60. package/src/payment/components/AmountPicker.vue +93 -93
  61. package/src/payment/components/RechargeResult.vue +69 -69
  62. package/src/payment/components/RechargeView.vue +154 -154
  63. package/src/payment/components/RightsPicker.vue +105 -105
  64. package/src/payment/components/TradeView.vue +298 -298
  65. package/src/payment/components/UserAgreement.vue +234 -234
  66. package/src/payment/components/index.ts +22 -22
  67. package/src/payment/index.ts +5 -5
  68. package/src/payment/services/index.ts +16 -16
  69. package/src/payment/services/invoke-recharge.ts +25 -25
  70. package/src/payment/services/request-payment.ts +58 -58
  71. package/src/payment/types.ts +28 -28
  72. package/src/register/components/SelfRegistration.vue +254 -254
  73. package/src/register/components/index.ts +2 -2
  74. package/src/shared/components/AppDrawer.vue +58 -58
  75. package/src/shared/components/AppVerify.vue +98 -0
  76. package/src/shared/components/DeviceVersion.vue +68 -68
  77. package/src/shared/components/EmptyView.vue +33 -33
  78. package/src/shared/components/OcrIcon.vue +119 -0
  79. package/src/shared/components/PageHeader.vue +79 -79
  80. package/src/shared/components/index.ts +7 -5
  81. package/src/shared/composables/index.ts +7 -5
  82. package/src/shared/composables/useCountdown.ts +46 -46
  83. package/src/shared/composables/useCrypto.ts +76 -0
  84. package/src/shared/composables/useDragBox.ts +97 -97
  85. package/src/shared/composables/useEncode.ts +43 -43
  86. package/src/shared/composables/useSafeArea.ts +46 -46
  87. package/src/shared/composables/useTabbar.ts +24 -24
  88. package/src/shared/composables/useUpload.ts +55 -0
  89. package/src/shared/composables/useValidator.ts +31 -31
  90. package/src/shared/http/Http.ts +136 -136
  91. package/src/shared/http/index.ts +1 -1
  92. package/src/shared/http/types.ts +157 -157
  93. package/src/shared/index.ts +3 -3
  94. package/src/shared/weixin/payment.ts +38 -38
  95. package/src/styles/fonts.scss +2 -2
  96. package/src/styles/vars.scss +3 -3
  97. package/src/user/api/endpoints.ts +17 -17
  98. package/src/user/api/index.ts +87 -87
  99. package/src/user/components/LoginSetting.vue +114 -114
  100. package/src/user/components/UserBinding.vue +307 -307
  101. package/src/user/components/UserBindingSuccess.vue +80 -80
  102. package/src/user/components/UserEntry.vue +137 -142
  103. package/src/user/components/UserFeedback.vue +440 -440
  104. package/src/user/components/UserFeedbackEntry.vue +192 -192
  105. package/src/user/components/UserHeadCrop.vue +65 -65
  106. package/src/user/components/UserInfo.vue +632 -632
  107. package/src/user/components/UserResourceEmpty.vue +75 -75
  108. package/src/user/components/index.ts +21 -21
  109. package/src/user/index.ts +1 -1
  110. package/tsconfig.json +30 -30
  111. package/types/global.d.ts +21 -21
  112. package/types/vue.d.ts +10 -10
  113. package/dist/appkit.css +0 -2331
  114. package/dist/assets/asset-3B_CoPto +0 -1
  115. package/dist/assets/asset-DcH8Kg-2 +0 -1
  116. package/dist/index.js +0 -7176
package/dist/appkit.css DELETED
@@ -1,2331 +0,0 @@
1
- .amount-picker {
2
- padding: 14px 0 14px 14px;
3
- }
4
- .amount-picker .nut-grid-item__content {
5
- border: solid 2px transparent;
6
- background: linear-gradient(#f5f5f5, #f5f5f5) padding-box, linear-gradient(to bottom, rgba(204, 204, 204, 0.5333333333), rgba(204, 204, 204, 0.5333333333)) border-box;
7
- border-radius: 5px;
8
- }
9
- .amount-picker .tile {
10
- height: 80px;
11
- }
12
- .amount-picker .tile.selected .nut-grid-item__content {
13
- background: linear-gradient(#FFF7E3, #FEFDE6) padding-box, linear-gradient(to bottom, #efd082, #ffb877) border-box;
14
- }
15
- .amount-picker h4.token-line {
16
- background-image: url("https://cdn.ddjf.com/static/images/appkit/yundou.png");
17
- background-size: 20px;
18
- background-repeat: no-repeat;
19
- background-position: left center;
20
- padding-left: 24px;
21
- color: #FD6701;
22
- font-weight: 600;
23
- line-height: 25px;
24
- font-size: 18px;
25
- }
26
- .amount-picker h5 {
27
- line-height: 18px;
28
- color: #353535;
29
- font-weight: 600;
30
- opacity: 0.6;
31
- margin-top: 4px;
32
- font-size: 12px;
33
- }
34
- .agreement-doc {
35
- padding: 1em;
36
- font-size: 12px;
37
- }
38
- .agreement-doc .bold {
39
- font-weight: bold;
40
- }
41
- .agreement-doc h1 {
42
- font-size: 20px;
43
- margin-top: 1em;
44
- }
45
- .agreement-doc p {
46
- margin: 0;
47
- }
48
- .page-header {
49
- display: flex;
50
- position: relative;
51
- align-items: center;
52
- padding-top: var(--top);
53
- min-height: var(--height);
54
- }
55
- .page-header .page-title {
56
- position: absolute;
57
- font-size: 18px;
58
- height: var(--height);
59
- line-height: var(--height);
60
- top: var(--top);
61
- width: 100%;
62
- text-align: center;
63
- }
64
- .page-header .back-button {
65
- position: absolute;
66
- top: var(--top);
67
- left: 10px;
68
- width: var(--height);
69
- height: var(--height);
70
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDIiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCA0MiA0MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC4wMSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wLjk5OTg3OCA0MUw0MC45OTk5IDQxTDQwLjk5OTkgMUwwLjk5OTg3OCAxTDAuOTk5ODc4IDQxWiIgZmlsbD0iI0Q4RDhEOCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDEiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi45OTMzIDE4Ljk0NzdDMTEuODYzMyAyMC4wMTQ1IDExLjgxMiAyMS43OTU0IDEyLjg3ODggMjIuOTI1NUwyNy45MTA1IDM3LjEzNDVDMjguNjkyNSAzNy44NzM0IDI5LjkyNTUgMzcuODM4NCAzMC42NjQ0IDM3LjA1NjRDMzEuMzY4MSAzNi4zMTE2IDMxLjM2OTkgMzUuMTU3OSAzMC42OTI5IDM0LjQxMTRMMTYuNTAxMiAyMC45OTM5TDMwLjU4NTcgNy42OTc4NUMzMS4zMzA4IDYuOTk0NDkgMzEuMjk4MiA1LjcyNzk1IDMwLjY2NDkgNC45NDQwMkMyOS45NjE2IDQuMTk4OTUgMjguODA5OCA0LjEzMTI5IDI4LjAyNTkgNC43NjQ1MkwxMi45OTMzIDE4Ljk0NzdaIiBmaWxsPSJibGFjayIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDEiLz4KPC9zdmc+Cg==");
71
- background-size: 50%;
72
- background-repeat: no-repeat;
73
- background-position: center center;
74
- }
75
- .page-header.color-mode-dark {
76
- color: var(--text-color-dark-mode, #fff);
77
- }
78
- .page-header.color-mode-dark .back-button {
79
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDIiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCA0MiA0MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC4wMSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wLjk5OTg0NyA0MUw0MC45OTk4IDQxTDQwLjk5OTggMUwwLjk5OTg0NyAxTDAuOTk5ODQ3IDQxWiIgZmlsbD0iI0Q4RDhEOCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDEiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi45OTM0IDE4Ljk0NzVDMTEuODYzNCAyMC4wMTQzIDExLjgxMjEgMjEuNzk1MiAxMi44Nzg5IDIyLjkyNTJMMjcuOTEwNiAzNy4xMzQzQzI4LjY5MjcgMzcuODczMSAyOS45MjU2IDM3LjgzODIgMzAuNjY0NSAzNy4wNTYyQzMxLjM2ODIgMzYuMzExNCAzMS4zNyAzNS4xNTc2IDMwLjY5MyAzNC40MTExTDE2LjUwMTMgMjAuOTkzNkwzMC41ODU4IDcuNjk3NjFDMzEuMzMwOSA2Ljk5NDI0IDMxLjI5ODMgNS43Mjc3MSAzMC42NjUxIDQuOTQzNzdDMjkuOTYxNyA0LjE5ODcxIDI4LjgwOTkgNC4xMzEwNCAyOC4wMjYgNC43NjQyN0wxMi45OTM0IDE4Ljk0NzVaIiBmaWxsPSJ3aGl0ZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDEiLz4KPC9zdmc+Cg==");
80
- }
81
- .app-drawer {
82
- position: absolute;
83
- display: flex;
84
- flex-direction: column;
85
- }
86
- .app-drawer.open {
87
- height: 100vh;
88
- }
89
- .app-drawer .page-header {
90
- flex-grow: 0;
91
- background-color: #fff;
92
- }
93
- .app-drawer .drawer-body {
94
- flex-grow: 1;
95
- overflow: scroll;
96
- }
97
- .dd-notice-bar {
98
- position: fixed;
99
- top: 0;
100
- left: 0;
101
- z-index: 10;
102
- font-size: 13px;
103
- color: #ea5959;
104
- display: flex;
105
- align-items: center;
106
- justify-content: center;
107
- width: 100%;
108
- min-height: 30px;
109
- line-height: 18px;
110
- padding: 6px 18px;
111
- background: #ffe8d8;
112
- box-sizing: border-box;
113
- }
114
- .dd-notice-bar__close {
115
- width: 22px;
116
- height: 22px;
117
- display: flex;
118
- margin-right: -6px;
119
- margin-left: 6px;
120
- justify-content: center;
121
- align-items: center;
122
- }
123
- .dd-notice-bar__close-img {
124
- width: 10px;
125
- height: 10px;
126
- }
127
- .dd-notice-bar.close {
128
- justify-content: space-between;
129
- color: #fb970c;
130
- background: #fff2d8;
131
- }
132
- .dd-notice-bar.close .dd-notice-bar__txt {
133
- text-align: left;
134
- }
135
- .dd-notice-bar__txt {
136
- flex: 1;
137
- text-align: center;
138
- opacity: 0.8;
139
- display: flex;
140
- align-items: center;
141
- }
142
- .recharge-view {
143
- height: 100%;
144
- display: flex;
145
- flex-direction: column;
146
- }
147
- .recharge-view .flex-grow {
148
- flex-grow: 1;
149
- }
150
- .recharge-view .amount-footer {
151
- padding: 10px;
152
- padding-bottom: 20px;
153
- }
154
- .recharge-view .amount-footer .agreement {
155
- font-size: 12px;
156
- display: flex;
157
- justify-content: center;
158
- align-items: cebter;
159
- height: 40px;
160
- }
161
- .recharge-view .amount-footer .recharge-button {
162
- background: linear-gradient(90deg, #FFEBC1 0%, #FFD7A7 52.29%, #FFB875 100%);
163
- color: #353535;
164
- margin: 12px 0;
165
- border: 0;
166
- border-radius: 8px;
167
- }
168
- .recharge-view .amount-footer .nut-checkbox {
169
- line-height: 40px;
170
- }
171
- .recharge-view .amount-footer .nut-checkbox__label {
172
- margin-left: 8px;
173
- flex: flex;
174
- font-size: 12px;
175
- }
176
- .recharge-view .amount-footer .link {
177
- display: inline;
178
- color: #FD6701;
179
- }
180
- .recharge-result {
181
- background-color: #fff;
182
- height: 100vh;
183
- padding-top: 120px;
184
- box-sizing: border-box;
185
- }
186
- .recharge-result .content {
187
- display: flex;
188
- width: 100%;
189
- height: fit-content;
190
- flex-direction: column;
191
- justify-content: flex-start;
192
- align-items: center;
193
- }
194
- .recharge-result h2 {
195
- font-size: 16px;
196
- font-weight: bold;
197
- margin-top: 20px;
198
- }
199
- .recharge-result .caption {
200
- color: #353535;
201
- opacity: 0.5;
202
- margin-top: 8px;
203
- }
204
- .recharge-result .figure {
205
- width: 100px;
206
- height: 100px;
207
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIG9wYWNpdHk9IjAuMiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01MC41IDEwQzcyLjg2NzUgMTAgOTEgMjcuOTA4NiA5MSA1MEM5MSA3Mi4wOTE0IDcyLjg2NzUgOTAgNTAuNSA5MEMyOC4xMzI1IDkwIDEwIDcyLjA5MTQgMTAgNTBDMTAgMjcuOTA4NiAyOC4xMzI1IDEwIDUwLjUgMTBaIiBmaWxsPSIjOUFFMkNEIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNTAuNSAxOEM2OS4wMDE1IDE4IDg0IDMyLjU1MDggODQgNTAuNUM4NCA2OC40NDkyIDY5LjAwMTUgODMgNTAuNSA4M0MzMS45OTg1IDgzIDE3IDY4LjQ0OTIgMTcgNTAuNUMxNyAzMi41NTA4IDMxLjk5ODUgMTggNTAuNSAxOFoiIGZpbGw9IiNDQUZBRUMiLz4KPHBhdGggZD0iTTM3IDQ5LjVMNDcgNjBMNjcgMzkiIHN0cm9rZT0iIzNEQ0E5RCIgc3Ryb2tlLXdpZHRoPSI2IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE5LjEyMDQgMTYuMjkxOUw3Ljk5ODg0IDEyLjczMjFMMTUuOTI5NCA1LjA1ODk3TDE5LjEyMDQgMTYuMjkxOVoiIGZpbGw9IiNDQUZBRUMiLz4KPHBhdGggZD0iTTEyLjgzNCAyMy40NjQyTDguNTQ2MzEgMjcuNTc3OEw3LjEyNzY1IDIxLjgwNzhMMTIuODM0IDIzLjQ2NDJaIiBmaWxsPSIjQ0FGQUVDIi8+Cjwvc3ZnPgo=");
208
- }
209
- .recharge-result .back-button {
210
- margin-top: 40px;
211
- width: 128px;
212
- }
213
- .trade-picker {
214
- padding: 14px 0 14px 14px;
215
- }
216
- .trade-picker .nut-grid-item__content {
217
- border: solid 2px transparent;
218
- background: linear-gradient(#f5f5f5, #f5f5f5) padding-box, linear-gradient(to bottom, rgba(204, 204, 204, 0.5333333333), rgba(204, 204, 204, 0.5333333333)) border-box;
219
- border-radius: 5px;
220
- }
221
- .trade-picker .tile {
222
- height: 80px;
223
- position: relative;
224
- overflow: hidden;
225
- }
226
- .trade-picker .tile.selected .nut-grid-item__content {
227
- background: linear-gradient(#FFF7E3, #FEFDE6) padding-box, linear-gradient(to bottom, #efd082, #ffb877) border-box;
228
- }
229
- .trade-picker .tile .tag {
230
- position: absolute;
231
- left: 0;
232
- top: 0;
233
- background: linear-gradient(90deg, #FD6701 0%, #FF9349 100%);
234
- color: #fff;
235
- font-size: 10px;
236
- padding: 0 10px;
237
- line-height: 17px;
238
- height: 17px;
239
- border-radius: 10px 100px 100px 0px;
240
- }
241
- .trade-picker h4.token-line {
242
- color: #FD6701;
243
- font-weight: 600;
244
- line-height: 25px;
245
- font-size: 18px;
246
- }
247
- .trade-picker h5 {
248
- line-height: 18px;
249
- color: #353535;
250
- font-weight: 600;
251
- opacity: 0.6;
252
- margin-top: 4px;
253
- font-size: 12px;
254
- }
255
- @charset "UTF-8";
256
- .recharge-view2 {
257
- height: 100%;
258
- display: flex;
259
- flex-direction: column;
260
- }
261
- .recharge-view2 .flex-grow {
262
- flex-grow: 1;
263
- }
264
- .recharge-view2 .bean-buy {
265
- margin: 0 15px;
266
- padding: 10px;
267
- background: #FFFBF3;
268
- border-radius: 5px;
269
- display: flex;
270
- justify-content: space-between;
271
- align-items: center;
272
- }
273
- .recharge-view2 .bean-buy .left .title {
274
- color: #FD6701;
275
- font-size: 14px;
276
- font-weight: 600;
277
- line-height: 20px;
278
- margin-bottom: 6px;
279
- }
280
- .recharge-view2 .bean-buy .left .amount {
281
- color: #353535;
282
- font-size: 13px;
283
- line-height: 16px;
284
- background-image: url("https://cdn.ddjf.com/static/images/appkit/yundou.png");
285
- background-repeat: no-repeat;
286
- background-size: 16px 16px;
287
- padding-left: 24px;
288
- }
289
- .recharge-view2 .bean-buy .right {
290
- display: flex;
291
- align-items: center;
292
- }
293
- .recharge-view2 .bean-buy .right .amount {
294
- color: #353535;
295
- font-size: 15px;
296
- line-height: 20px;
297
- margin-right: 10px;
298
- }
299
- .recharge-view2 .bean-buy .right .icon {
300
- display: block;
301
- width: 16px;
302
- height: 16px;
303
- font-size: 0;
304
- }
305
- .recharge-view2 .amount-footer {
306
- padding: 10px 0;
307
- padding-bottom: 20px;
308
- }
309
- .recharge-view2 .amount-footer .agreement {
310
- font-size: 12px;
311
- display: flex;
312
- justify-content: center;
313
- align-items: cebter;
314
- height: 40px;
315
- }
316
- .recharge-view2 .amount-footer .buy-amount {
317
- display: flex;
318
- justify-content: space-between;
319
- align-items: center;
320
- padding: 0 10px;
321
- border-radius: 0px;
322
- box-shadow: 0px -5px 14px -5px rgba(0, 0, 0, 0.1); /* 上边框阴影 */
323
- }
324
- .recharge-view2 .amount-footer .buy-amount .left {
325
- width: 70%;
326
- color: #353535;
327
- font-size: 13px;
328
- }
329
- .recharge-view2 .amount-footer .buy-amount .left .amount {
330
- color: #FD6701;
331
- font-size: 20px;
332
- font-weight: 600;
333
- }
334
- .recharge-view2 .amount-footer .buy-amount .left .amount i {
335
- font-size: 14px;
336
- font-style: normal;
337
- }
338
- .recharge-view2 .amount-footer .buy-amount .recharge-button {
339
- background: linear-gradient(90deg, #FFEBC1 0%, #FFD7A7 52.29%, #FFB875 100%);
340
- color: #353535;
341
- margin: 12px 0;
342
- border: 0;
343
- border-radius: 8px;
344
- flex: 1;
345
- }
346
- .recharge-view2 .amount-footer .nut-checkbox {
347
- line-height: 40px;
348
- }
349
- .recharge-view2 .amount-footer .nut-checkbox__label {
350
- margin-left: 8px;
351
- flex: flex;
352
- font-size: 12px;
353
- }
354
- .recharge-view2 .amount-footer .link {
355
- display: inline;
356
- color: #FD6701;
357
- }
358
- .trade-dialog .nut-dialog__header {
359
- font-size: 16px;
360
- color: #262626;
361
- }
362
- .trade-dialog .item {
363
- font-size: 14px;
364
- color: #666666;
365
- line-height: 21px;
366
- }
367
- .trade-dialog .nut-dialog__footer-cancel {
368
- color: #353535 !important;
369
- border-color: #CCCCCC !important;
370
- }
371
- .trade-dialog .nut-dialog__footer-ok {
372
- border: none;
373
- color: #353535;
374
- background: linear-gradient(90deg, #FFEBC1 0%, #FFB875 100%);
375
- }
376
- page {
377
- --text-color: #333;
378
- --text-color-dark-mode: #eee;
379
- }
380
- .number {
381
- font-family: 'DIN alternate', 'Barlow Condensed', 'Roboto Condensed', sans-serif-condensed-light;
382
- }
383
- .account-card .card {
384
- background: #2f2f2f;
385
- border-radius: 10px;
386
- padding: 13px 20px;
387
- margin: 0;
388
- }
389
- .account-card .card .card-row {
390
- display: flex;
391
- justify-content: space-between;
392
- align-items: center;
393
- }
394
- .account-card .card .card-row .card-row-left {
395
- display: flex;
396
- flex-direction: column;
397
- }
398
- .account-card .card .card-row .card-row-left .bean-box {
399
- display: flex;
400
- align-items: center;
401
- }
402
- .account-card .card .card-row .card-row-left .bean-box .bean-icon-box {
403
- width: 20px;
404
- height: 20px;
405
- margin-right: 8px;
406
- }
407
- .account-card .card .card-row .card-row-left .bean-box .bean-icon-box .bean-icon {
408
- display: block;
409
- font-size: 0;
410
- width: 100%;
411
- height: 100%;
412
- }
413
- .account-card .card .card-row .card-row-left .bean-box .baan-name {
414
- color: #f3d59d;
415
- font-weight: 600;
416
- font-size: 11px;
417
- }
418
- .account-card .card .card-row .card-row-left .bean-nums {
419
- color: #fff;
420
- line-height: 22px;
421
- font-weight: 500;
422
- font-size: 16px;
423
- margin-top: 3px;
424
- }
425
- .account-card .card .card-row .desc {
426
- font-size: 10px;
427
- color: #ccc;
428
- line-height: 14px;
429
- }
430
- .account-card .card .line {
431
- margin: 6px 0px 8px 0px;
432
- height: 0.5px;
433
- background: rgb(195, 195, 195);
434
- opacity: 0.2;
435
- }
436
- .account-card .card .card-row-right .pay {
437
- padding: 0 8px;
438
- line-height: 18px;
439
- color: #ffd6a5;
440
- border: 1px solid #ffd6a5;
441
- border-radius: 9px;
442
- font-size: 12px;
443
- display: flex;
444
- align-items: center;
445
- }
446
- .account-card .card .card-row-right .pay .pay-icon {
447
- display: block;
448
- font-size: 0;
449
- width: 3.5px;
450
- height: 6px;
451
- margin-left: 6px;
452
- }
453
- .account-card .card .card-row-right .account-info-entry {
454
- display: flex;
455
- align-items: center;
456
- padding: 0 10px;
457
- height: 28px;
458
- line-height: 28px;
459
- border-radius: 14px;
460
- background: linear-gradient(90deg, #ffebc1 0%, #ffd7a7 52.29%, #ffb875 100%);
461
- }
462
- .account-card .card .card-row-right .account-info-entry .account-info-name {
463
- color: #975213;
464
- font-size: 13px;
465
- font-weight: 500;
466
- margin-right: 8px;
467
- }
468
- .account-card .card .card-row-right .account-info-entry .account-info-icon {
469
- width: 14px;
470
- height: 14px;
471
- border-radius: 7px;
472
- }
473
- .account-card .card .card-row-right .account-info-entry .account-info-icon .icon {
474
- display: block;
475
- font-size: 0;
476
- width: 100%;
477
- height: 100%;
478
- }
479
- .consumption-filter {
480
- height: 100%;
481
- display: flex;
482
- flex-direction: column;
483
- width: 100%;
484
- }
485
- .consumption-filter-title {
486
- position: relative;
487
- height: 44px;
488
- line-height: 44px;
489
- font-size: 17px;
490
- color: #353535;
491
- background: #f5f5f5;
492
- text-align: center;
493
- }
494
- .consumption-filter-content {
495
- flex: 1;
496
- margin: 15px;
497
- overflow-y: scroll;
498
- color: #353535;
499
- font-size: 13px;
500
- }
501
- .consumption-filter-content .title {
502
- opacity: 0.6;
503
- line-height: 18px;
504
- }
505
- .consumption-filter-content .info {
506
- display: grid;
507
- grid-template-columns: 1fr 1fr 1fr;
508
- grid-gap: 10px;
509
- margin: 10px 0;
510
- }
511
- .consumption-filter-content .info-item {
512
- height: 30px;
513
- line-height: 30px;
514
- border: 1px solid #ccc;
515
- border-radius: 6px;
516
- text-align: center;
517
- }
518
- .consumption-filter-content .info .current {
519
- border-radius: 5px;
520
- border: 1px solid #EFD082;
521
- background: linear-gradient(180deg, #FFF7E3 0%, #FEFDE6 100%);
522
- }
523
- .consumption-filter-btn {
524
- margin: 0 15px;
525
- display: flex;
526
- justify-content: space-between;
527
- align-items: center;
528
- }
529
- .consumption-filter-btn .btn {
530
- flex: 1;
531
- height: 40px;
532
- line-height: 40px;
533
- text-align: center;
534
- border: 1px solid #ccc;
535
- box-sizing: border-box;
536
- color: #666;
537
- font-size: 16px;
538
- border-radius: 6px;
539
- }
540
- .consumption-filter-btn .confirm {
541
- margin-left: 11px;
542
- color: #000;
543
- border: none;
544
- background: linear-gradient(90deg, #ffebc1 0%, #ffd7a7 52.29%, #ffb875 100%);
545
- }
546
- .consumption-filter-bottom {
547
- height: 32px;
548
- background: #fff;
549
- }
550
- .consumption-filter .icon {
551
- display: block;
552
- width: 20px;
553
- height: 20px;
554
- background-size: 40px;
555
- background-repeat: no-repeat;
556
- background-position: center center;
557
- }
558
- .consumption-filter .icon.icon-x {
559
- position: absolute;
560
- right: 10px;
561
- top: 11px;
562
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDIiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCA0MiA0MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC4wMSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MSA0MUgxVjFINDFWNDFaIiBmaWxsPSIjRDhEOEQ4IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4wMSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjM1NjEgMjAuOTk5OUwzMy45NjM3IDMxLjYwNzJDMzQuNjE0NiAzMi4yNTgxIDM0LjYxNDYgMzMuMzEzNCAzMy45NjM3IDMzLjk2NDJDMzMuMzQyNSAzNC41ODU1IDMyLjM1MjcgMzQuNjEzOCAzMS42OTc5IDM0LjA0ODlMMjAuOTk5NCAyMy4zNTY2TDEwLjM5MzUgMzMuOTY0MkM5Ljc0MjY1IDM0LjYxNTEgOC42ODczOCAzNC42MTUxIDguMDM2NSAzMy45NjQyQzcuNDE1MTkgMzMuMzQyOSA3LjM4Njk3IDMyLjM1MzIgNy45NTE3OSAzMS42OTg0TDE4LjY0MjggMjAuOTk5OUw4LjAzNjUgMTAuMzk0QzcuMzg1NjMgOS43NDMxNCA3LjM4NTYzIDguNjg3ODcgOC4wMzY1IDguMDM2OTlDOC42NTc3OSA3LjQxNTY4IDkuNjQ3NTQgNy4zODc0NiAxMC4zMDIzIDcuOTUyMjdMMjAuOTk5NCAxOC42NDMzTDMxLjYwNjcgOC4wMzY5OUMzMi4yNTc2IDcuMzg2MTIgMzMuMzEyOSA3LjM4NjEyIDMzLjk2MzcgOC4wMzY5OUMzNC41ODUgOC42NTgyOCAzNC42MTMzIDkuNjQ4MDMgMzQuMDQ4NSAxMC4zMDI4TDIzLjM1NjEgMjAuOTk5OVoiIGZpbGw9IiMxNzFBMUQiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjAxIi8+Cjwvc3ZnPgo=");
563
- }
564
- .consumption-date-filter {
565
- height: 100%;
566
- display: flex;
567
- flex-direction: column;
568
- width: 100%;
569
- }
570
- .consumption-date-filter .date-filter-header {
571
- text-align: center;
572
- height: 44px;
573
- line-height: 44px;
574
- color: #353535;
575
- font-size: 17px;
576
- background-color: #f5f5f5;
577
- }
578
- .consumption-date-filter .content {
579
- flex: 1;
580
- margin: 15px;
581
- overflow-y: scroll;
582
- color: #353535;
583
- font-size: 13px;
584
- }
585
- .consumption-date-filter .content .title {
586
- opacity: 0.6;
587
- line-height: 18px;
588
- }
589
- .consumption-date-filter .content .info {
590
- display: grid;
591
- grid-template-columns: 1fr 1fr 1fr;
592
- grid-gap: 10px;
593
- margin: 10px 0;
594
- }
595
- .consumption-date-filter .content .info .item {
596
- height: 30px;
597
- line-height: 30px;
598
- border: 1px solid #ccc;
599
- border-radius: 6px;
600
- text-align: center;
601
- }
602
- .consumption-date-filter .content .info .current {
603
- border: 1px solid;
604
- border-image-source: linear-gradient(180deg, rgba(239, 208, 130, 0.8) 0%, rgba(255, 185, 120, 0.8) 100%);
605
- background: linear-gradient(180deg, rgba(239, 208, 130, 0.8) 0%, rgba(255, 185, 120, 0.8) 100%), linear-gradient(180deg, #fff7e3 0%, #fefde6 100%);
606
- }
607
- .consumption-date-filter .buttons {
608
- margin: 0 15px;
609
- display: flex;
610
- justify-content: space-between;
611
- align-items: center;
612
- }
613
- .consumption-date-filter .buttons .btn {
614
- flex: 1;
615
- height: 40px;
616
- line-height: 40px;
617
- text-align: center;
618
- border: 1px solid #ccc;
619
- box-sizing: border-box;
620
- color: #666;
621
- font-size: 16px;
622
- border-radius: 6px;
623
- }
624
- .consumption-date-filter .buttons .confirm {
625
- margin-left: 11px;
626
- color: #000;
627
- border: none;
628
- background: linear-gradient(90deg, #ffebc1 0%, #ffd7a7 52.29%, #ffb875 100%);
629
- }
630
- .consumption-date-filter .time {
631
- display: flex;
632
- justify-content: flex-start;
633
- align-items: center;
634
- margin: 10px 0 30px 0;
635
- }
636
- .consumption-date-filter .time .line {
637
- margin: 0 8px;
638
- }
639
- .consumption-date-filter .time .item {
640
- height: 30px;
641
- line-height: 30px;
642
- padding: 0 15px;
643
- font-size: 13px;
644
- color: #353535;
645
- border: 1px solid transparent;
646
- box-sizing: border-box;
647
- background: rgba(245, 245, 245, 0.8);
648
- border-radius: 6px;
649
- }
650
- .consumption-date-filter .time .current {
651
- border: 1px solid #353535;
652
- }
653
- .consumption-date-filter .bottom {
654
- height: 32px;
655
- background: #fff;
656
- }
657
- .consumption-rules .title {
658
- line-height: 16px;
659
- font-weight: 500;
660
- color: #1a1a1a;
661
- font-size: 16px;
662
- text-align: center;
663
- width: 100%;
664
- }
665
- .consumption-rules .desc {
666
- flex: 1;
667
- font-size: 14px;
668
- line-height: 21px;
669
- color: #666;
670
- overflow-y: scroll;
671
- margin: 10px 0;
672
- }
673
- .consumption-rules .desc-title {
674
- font-weight: 600;
675
- }
676
- .consumption-rules .know {
677
- background: linear-gradient(90deg, #ffebc1 0%, #ffd7a7 52.29%, #ffb875 100%);
678
- height: 30px;
679
- line-height: 30px;
680
- font-size: 14px;
681
- color: #353535;
682
- border-radius: 15px;
683
- width: 130px;
684
- margin: 0 auto;
685
- text-align: center;
686
- }
687
- .empty-view {
688
- display: flex;
689
- flex-direction: column;
690
- justify-content: center;
691
- align-items: center;
692
- margin-top: 80px;
693
- }
694
- .empty-view-image {
695
- display: block;
696
- font-size: 0;
697
- width: 144px;
698
- height: 80px;
699
- filter: grayscale(1);
700
- }
701
- .empty-view-text {
702
- opacity: 0.4;
703
- color: #353535;
704
- font-size: 12px;
705
- line-height: 28px;
706
- }
707
- .tip {
708
- margin: 0 15px;
709
- display: flex;
710
- padding: 8px 10px;
711
- justify-content: start;
712
- background: #fff;
713
- box-shadow: 0px 5px 18.9px 2px rgba(0, 0, 0, 0.0509803922);
714
- border-radius: 5px;
715
- margin-top: 10px;
716
- }
717
- .tip .tip-icon {
718
- display: block;
719
- font-size: 0;
720
- width: 18px;
721
- height: 18px;
722
- }
723
- .tip .tip-content {
724
- margin-left: 6px;
725
- color: #5D4431;
726
- line-height: 18px;
727
- font-size: 12px;
728
- }
729
- .account-view {
730
- height: 100vh;
731
- }
732
- .account-view .scroll-content {
733
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQwNiIgdmlld0JveD0iMCAwIDc1MCA0MDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zODIuNSA0MDcuNUM1NzcuMzU3IDQwNy41IDc1My43ODggMzgxLjI0OCA4ODEuNTIxIDMzOC43OTFDOTQ1LjM4NiAzMTcuNTYzIDk5Ny4xMDQgMjkyLjI3NiAxMDMyLjg3IDI2NC4xNzFDMTA2OC42MiAyMzYuMDcxIDEwODguNSAyMDUuMDk3IDEwODguNSAxNzIuNUMxMDg4LjUgMTM5LjkwMyAxMDY4LjYyIDEwOC45MjkgMTAzMi44NyA4MC44Mjg5Qzk5Ny4xMDQgNTIuNzI0NSA5NDUuMzg2IDI3LjQzNjcgODgxLjUyMSA2LjIwODk4Qzc1My43ODggLTM2LjI0ODIgNTc3LjM1NyAtNjIuNSAzODIuNSAtNjIuNUMxODcuNjQzIC02Mi41IDExLjIxMjIgLTM2LjI0ODIgLTExNi41MjIgNi4yMDg5OEMtMTgwLjM4NiAyNy40MzY3IC0yMzIuMTA0IDUyLjcyNDUgLTI2Ny44NjcgODAuODI4OUMtMzAzLjYyNCAxMDguOTI5IC0zMjMuNSAxMzkuOTAzIC0zMjMuNSAxNzIuNUMtMzIzLjUgMjA1LjA5NyAtMzAzLjYyNCAyMzYuMDcxIC0yNjcuODY3IDI2NC4xNzFDLTIzMi4xMDQgMjkyLjI3NiAtMTgwLjM4NiAzMTcuNTYzIC0xMTYuNTIyIDMzOC43OTFDMTEuMjEyMiAzODEuMjQ4IDE4Ny42NDMgNDA3LjUgMzgyLjUgNDA3LjVaIiBmaWxsPSIjM0IzOTNDIiBzdHJva2U9ImJsYWNrIi8+Cjwvc3ZnPgo=");
734
- background-position: center -200px;
735
- background-repeat: no-repeat;
736
- }
737
- .account-view .page-header {
738
- background-color: #3b393c;
739
- position: sticky;
740
- top: 0;
741
- z-index: 1;
742
- transition: background-color 0.3s;
743
- }
744
- .account-view .page-header.with-background {
745
- background-color: #3b393c;
746
- }
747
- .account-view .spa-between {
748
- display: flex;
749
- justify-content: space-between;
750
- align-items: center;
751
- }
752
- .account-view .row {
753
- display: flex;
754
- flex-direction: row;
755
- margin: 10px 15px;
756
- }
757
- .account-view .jusify-right {
758
- justify-content: flex-end;
759
- }
760
- .account-view .small-bean-button {
761
- height: 22px;
762
- border-radius: 11px;
763
- border: 1px solid rgba(255, 255, 255, 0.062745098);
764
- background-color: rgba(255, 255, 255, 0.0941176471);
765
- display: inline-block;
766
- padding: 0 10px;
767
- line-height: 22px;
768
- color: #e7caad;
769
- font-size: 12px;
770
- }
771
- .account-view .small-bean-button label {
772
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDZMMTYgMTJMMTAgMThWNloiIGZpbGw9IiNFN0NBQUQiIHN0cm9rZT0iI0U3Q0FBRCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
773
- padding-right: 18px;
774
- background-repeat: no-repeat;
775
- background-position: right center;
776
- background-size: 16px;
777
- }
778
- .account-view .balance {
779
- border-radius: 15px;
780
- background: linear-gradient(105deg, #f4e2ce 1.88%, #debb9b 98.18%);
781
- box-shadow: 0px -10px 9px -3px rgba(0, 0, 0, 0.33);
782
- height: 112px;
783
- padding: 20px;
784
- margin: 0 15px;
785
- box-sizing: border-box;
786
- font-size: 10px;
787
- }
788
- .account-view .balance .bean-img {
789
- display: flex;
790
- justify-content: flex-start;
791
- align-items: center;
792
- }
793
- .account-view .balance .bean-img .bean-icon {
794
- display: block;
795
- font-size: 0;
796
- width: 20px;
797
- height: 20px;
798
- margin-right: 4px;
799
- }
800
- .account-view .balance .bean-img .bean-tag {
801
- color: #353535;
802
- height: 15px;
803
- line-height: 15px;
804
- border-radius: 30px 50px 50px 0px;
805
- background: rgba(255, 131, 32, 0.3);
806
- padding-left: 5px;
807
- padding-right: 10px;
808
- }
809
- .account-view .balance .bean-img .tag {
810
- background: #ff8320;
811
- color: #fff;
812
- }
813
- .account-view .balance .rule {
814
- color: #353535;
815
- opacity: 0.5;
816
- }
817
- .account-view .bean-counts {
818
- margin-top: 12px;
819
- }
820
- .account-view .bean-counts .counts {
821
- color: #3d3835;
822
- font-size: 32px;
823
- font-weight: 700;
824
- }
825
- .account-view .bean-counts .pay {
826
- padding: 0 20px;
827
- height: 32px;
828
- line-height: 32px;
829
- background: linear-gradient(187.18deg, #353535 10.04%, #433f46 90.21%);
830
- border-radius: 16px;
831
- color: #e7caad;
832
- font-size: 15px;
833
- font-weight: 500;
834
- }
835
- .consumption-rules-popup {
836
- border-radius: 16px;
837
- width: 70%;
838
- max-height: 80%;
839
- padding: 24px;
840
- }
841
- .operation-box {
842
- width: 100vw;
843
- overflow: hidden;
844
- display: flex;
845
- flex-direction: column;
846
- height: calc(100vh - 87px);
847
- }
848
- .operation-box .operation-title {
849
- padding: 10px 15px;
850
- background: #fff;
851
- transition: box-shadow 0.3s;
852
- }
853
- .operation-box .operation-title.with-shadow {
854
- box-shadow: 0px 1px 10px 0px rgba(153, 153, 153, 0.2);
855
- }
856
- .operation-box .operation-title .text {
857
- color: #353535;
858
- font-size: 12px;
859
- opacity: 0.5;
860
- }
861
- .operation-box .operation-title .time-icon {
862
- display: block;
863
- font-size: 0;
864
- width: 12px;
865
- height: 12px;
866
- margin-left: 4px;
867
- }
868
- .operation-box .operation-title .search-time {
869
- display: flex;
870
- align-items: center;
871
- }
872
- .operation-box .operation-title .search-time .title {
873
- color: #000;
874
- font-weight: 500;
875
- font-size: 17px;
876
- margin-right: 10px;
877
- }
878
- .operation-box .operation-title .search-time .time {
879
- height: 22px;
880
- padding-right: 5px;
881
- flex: 1;
882
- display: flex;
883
- align-items: center;
884
- }
885
- .operation-box .operation-title .search {
886
- display: flex;
887
- align-items: center;
888
- height: 22px;
889
- padding-left: 5px;
890
- }
891
- .operation-box .spa-between {
892
- display: flex;
893
- justify-content: space-between;
894
- align-items: center;
895
- }
896
- .operation-box .operation-list {
897
- flex: 1;
898
- width: 100%;
899
- }
900
- .operation-box .operation-list .operation-scroll {
901
- height: calc(100vh - 130px);
902
- padding: 0 15px;
903
- box-sizing: border-box;
904
- }
905
- .operation-box .operation-list .box-detail .title {
906
- line-height: 22px;
907
- font-weight: 700;
908
- font-size: 12px;
909
- color: #000;
910
- opacity: 0.5;
911
- margin-bottom: 10px;
912
- }
913
- .operation-box .operation-list .box-detail .item {
914
- border-radius: 5px;
915
- background: rgba(255, 255, 255, 0.5);
916
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
917
- border-radius: 5px;
918
- padding: 12px 10px;
919
- display: flex;
920
- margin-bottom: 10px;
921
- }
922
- .operation-box .operation-list .box-detail .item-type {
923
- background: linear-gradient(113.95deg, #f4e2ce 1.2%, #debb9b 77.63%);
924
- width: 30px;
925
- height: 30px;
926
- border-radius: 15px;
927
- margin-right: 15px;
928
- line-height: 30px;
929
- font-size: 10px;
930
- font-weight: 500;
931
- color: #000;
932
- text-align: center;
933
- }
934
- .operation-box .operation-list .box-detail .item-detail {
935
- flex: 1;
936
- }
937
- .operation-box .operation-list .box-detail .item-detail .item-info {
938
- padding: 0;
939
- font-size: 14px;
940
- font-weight: 700;
941
- color: #000;
942
- }
943
- .operation-box .operation-list .box-detail .item-detail .item-info-type {
944
- line-height: 15px;
945
- }
946
- .operation-box .operation-list .box-detail .item-detail .item-info-title {
947
- font-weight: 400;
948
- opacity: 0.8;
949
- font-size: 11px;
950
- }
951
- .operation-box .operation-list .box-detail .item-detail .item-info-amount {
952
- color: #9e7b5a;
953
- }
954
- .operation-box .operation-list .box-detail .item-detail-remark {
955
- opacity: 0.3;
956
- line-height: 15px;
957
- font-size: 10px;
958
- }
959
- .operation-box .operation-list .box-not-text {
960
- opacity: 0.4;
961
- color: #353535;
962
- font-size: 12px;
963
- line-height: 20px;
964
- margin: 0 auto 40px;
965
- text-align: center;
966
- }
967
- .rights-card {
968
- margin: 10px 15px 0px;
969
- background: #fff8f3;
970
- border-radius: 5px;
971
- box-shadow: 0px 5px 18.9px 2px rgba(0, 0, 0, 0.0509803922);
972
- padding: 15px 20px;
973
- }
974
- .rights-card .title {
975
- height: 25px;
976
- line-height: 25px;
977
- background: rgba(255, 131, 32, 0.3);
978
- border-radius: 20px 50px 50px 0px;
979
- color: #353535;
980
- font-size: 12px;
981
- display: inline-block;
982
- padding-left: 5px;
983
- padding-right: 12px;
984
- }
985
- .rights-card .list {
986
- display: flex;
987
- flex-wrap: wrap;
988
- }
989
- .rights-card .list .item {
990
- width: 50%;
991
- margin-top: 15px;
992
- }
993
- .rights-card .list .item .item-count {
994
- font-size: 20px;
995
- color: #353535;
996
- font-weight: 700;
997
- line-height: 23px;
998
- }
999
- .rights-card .list .item .item-title {
1000
- line-height: 23px;
1001
- color: #987356;
1002
- font-size: 11px;
1003
- display: flex;
1004
- align-items: center;
1005
- }
1006
- .rights-card .list .item .item-title .item-title-button {
1007
- padding: 0 27rpx;
1008
- height: 54rpx;
1009
- line-height: 54rpx;
1010
- background: -webkit-linear-gradient(262.82deg, #353535 10.04%, #433f46 90.21%);
1011
- background: linear-gradient(187.18deg, #353535 10.04%, #433f46 90.21%);
1012
- border-radius: 27rpx;
1013
- color: #e7caad;
1014
- font-size: 24rpx;
1015
- font-weight: 400;
1016
- margin-left: 40rpx;
1017
- display: flex;
1018
- align-items: center;
1019
- }
1020
- .rights-card .list .item .item-title .item-title-button .button-icon {
1021
- display: block;
1022
- width: 24rpx;
1023
- height: 24rpx;
1024
- font-size: 0;
1025
- margin-left: 4px;
1026
- }
1027
- .rights-card .list .star-item {
1028
- width: 100%;
1029
- }
1030
- .balance-reminder-popup {
1031
- width: 90%;
1032
- }
1033
-
1034
- .balance-reminder {
1035
- --primary-button-background: linear-gradient(135deg, #098C9D 0%, #66BF97 100%);
1036
- }
1037
-
1038
- .balance-reminder h2 {
1039
- font-size: 16px;
1040
- font-weight: bold;
1041
- margin-bottom: 14px;
1042
- }
1043
-
1044
- .balance-reminder .body {
1045
- height: 120px;
1046
- box-sizing: border-box;
1047
- display: flex;
1048
- flex-direction: column;
1049
- align-items: center;
1050
- justify-content: center;
1051
- padding: 20px 10px 10px 10px;
1052
- font-size: 14px;
1053
- text-align: center;
1054
- color: #666;
1055
- }
1056
-
1057
- .balance-reminder .footer {
1058
- display: flex;
1059
- flex-direction: row;
1060
- justify-content: stretch;
1061
- align-items: center;
1062
- padding: 10px 20px 20px 20px;
1063
- }
1064
-
1065
- .balance-reminder .footer .col {
1066
- flex-grow: 1;
1067
- padding: 6px;
1068
- }
1069
-
1070
- .balance-reminder .footer .recharge-button {
1071
- color: #fff;
1072
- background: var(--primary-button-background);
1073
- }
1074
- .ocr-id__img {
1075
- width: 20px;
1076
- height: 20px;
1077
- }
1078
- .dd-area {
1079
- display: flex;
1080
- justify-content: flex-end;
1081
- align-items: center;
1082
- }
1083
- .dd-area-value {
1084
- text-align: right;
1085
- color: black;
1086
- }
1087
- .dd-area-label {
1088
- color: var(--placeholder-color);
1089
- }
1090
- .dd-selector {
1091
- display: flex;
1092
- justify-content: flex-end;
1093
- align-items: center;
1094
- }
1095
- .dd-selector-value {
1096
- text-align: right;
1097
- color: black;
1098
- }
1099
- .dd-selector-label {
1100
- color: var(--placeholder-color);
1101
- }
1102
- .self-registration {
1103
- width: 100%;
1104
- height: 100%;
1105
- display: flex;
1106
- flex-direction: column;
1107
- }
1108
- .self-registration-body {
1109
- flex: 1;
1110
- padding: 12px;
1111
- overflow: auto;
1112
- }
1113
- .self-registration-banner {
1114
- width: 100%;
1115
- height: 170px;
1116
- }
1117
- .self-registration .nut-cell-group__warp {
1118
- border-radius: 5px;
1119
- margin: 12px 0 0;
1120
- }
1121
- .self-registration__input {
1122
- display: flex;
1123
- align-items: center;
1124
- }
1125
- .self-registration-bottom {
1126
- background-color: white;
1127
- padding-bottom: var(--safe-bottom-height);
1128
- }
1129
- .self-registration .experience-button {
1130
- margin: 7.5px 12px;
1131
- border-radius: 5px;
1132
- width: calc(100% - 24px);
1133
- }
1134
- .self-registration .nut-input-text {
1135
- text-align: right !important;
1136
- flex: 1;
1137
- }
1138
- .self-registration .nut-form-item__label.required::before {
1139
- display: none;
1140
- }
1141
- .self-registration .nut-form-item__label.required::after {
1142
- content: "*";
1143
- color: #fa2c19;
1144
- margin-right: 4px;
1145
- }
1146
- .self-registration .nut-form-item__label {
1147
- width: unset;
1148
- }
1149
- .self-registration .input-placeholder {
1150
- color: #cccccc;
1151
- }
1152
- .self-registration .nut-radio__icon {
1153
- font-size: 16px;
1154
- }
1155
- .self-registration .nut-radio__icon--unchecked {
1156
- font-size: 16px;
1157
- }
1158
- .notice-popup {
1159
- width: 280px;
1160
- padding: 20px 15px;
1161
- border-radius: 10px !important;
1162
- background: linear-gradient(136.72deg, #d0fdfe 6.02%, #a2b9ff 59.97%, #6593ff 108.78%);
1163
- }
1164
- .notice-popup::after {
1165
- content: "";
1166
- position: absolute;
1167
- width: 100%;
1168
- height: 100%;
1169
- left: 0;
1170
- top: 0;
1171
- background: linear-gradient(360deg, #ffffff 4.73%, rgba(255, 255, 255, 0) 85.82%);
1172
- z-index: 1;
1173
- border-radius: 10px;
1174
- }
1175
- .notice-popup::before {
1176
- content: "";
1177
- width: 236px;
1178
- height: 241px;
1179
- position: absolute;
1180
- top: 0;
1181
- right: 40px;
1182
- background: url("https://cdn.ddjf.com/static/images/customer-center/notice-modal-bg.png");
1183
- }
1184
- .notice-popup .nutui-popup__content-wrapper {
1185
- position: relative;
1186
- z-index: 2;
1187
- }
1188
- .notice-popup-hd {
1189
- color: #0a2668;
1190
- font-size: 17px;
1191
- display: flex;
1192
- align-items: center;
1193
- margin-bottom: 20px;
1194
- font-weight: 600;
1195
- }
1196
- .notice-popup-hd-icon {
1197
- width: 20px;
1198
- height: 20px;
1199
- margin-right: 4px;
1200
- }
1201
- .notice-popup-bd {
1202
- color: #353535;
1203
- box-shadow: 0px 2px 8px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 1px 0px rgba(255, 255, 255, 0.5019607843) inset, 0px 0px 1px 0px rgba(255, 255, 255, 0.6980392157);
1204
- border-radius: 3px;
1205
- background: rgba(255, 255, 255, 0.6);
1206
- min-height: 160px;
1207
- margin-bottom: 20px;
1208
- padding: 15px 10px;
1209
- box-sizing: border-box;
1210
- font-size: 10px;
1211
- }
1212
- .notice-popup-bd-link {
1213
- color: #007fff;
1214
- margin-top: 2px;
1215
- font-weight: 600;
1216
- }
1217
- .notice-popup-ft {
1218
- display: flex;
1219
- align-items: center;
1220
- justify-content: center;
1221
- }
1222
- .notice-popup-ft-btn {
1223
- background: #007fff;
1224
- color: #fff;
1225
- width: 128px;
1226
- height: 30px;
1227
- display: flex;
1228
- align-items: center;
1229
- justify-content: center;
1230
- border-radius: 15px;
1231
- }
1232
- .notice-banner {
1233
- background: #e6f2ff;
1234
- height: 30px;
1235
- margin-bottom: 8px;
1236
- }
1237
- .notice-banner.fixed {
1238
- position: fixed;
1239
- z-index: 10;
1240
- width: 100%;
1241
- }
1242
- .notice-banner .dd-notice-bar {
1243
- position: relative;
1244
- background: #e6f2ff;
1245
- font-size: 10px;
1246
- color: rgba(0, 0, 0, 0.8980392157);
1247
- padding: 0 8px;
1248
- height: 0;
1249
- min-height: auto;
1250
- transition: all 0.2s;
1251
- opacity: 0;
1252
- }
1253
- .notice-banner .dd-notice-bar.show {
1254
- height: 30px;
1255
- opacity: 1;
1256
- }
1257
- .notice-banner-icon {
1258
- width: 22px;
1259
- height: 22px;
1260
- margin-right: 8px;
1261
- }
1262
- .notice-banner .dd-notice-bar__close-img {
1263
- display: none;
1264
- }
1265
- .notice-banner .dd-notice-bar__close {
1266
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E %3Cpath d='M3.3335 3.33331L16.6668 16.6666' stroke='%23353535' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E %3Cpath d='M3.3335 16.6666L16.6668 3.33331' stroke='%23353535' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
1267
- background-position: center;
1268
- background-repeat: no-repeat;
1269
- background-size: 12px 12px;
1270
- opacity: 0.6;
1271
- }
1272
- .notice-banner-text {
1273
- flex: 1;
1274
- overflow: hidden;
1275
- text-overflow: ellipsis;
1276
- display: -webkit-box;
1277
- -webkit-line-clamp: 1;
1278
- -webkit-box-orient: vertical;
1279
- text-align: left;
1280
- }
1281
- .notice-banner-btn {
1282
- color: var(--app-primary-color, #017fff);
1283
- padding-left: 6px;
1284
- }
1285
- .notice-entry {
1286
- position: fixed;
1287
- right: 0;
1288
- top: 120px;
1289
- min-width: 66px;
1290
- padding: 0 12px 0 15px;
1291
- text-align: center;
1292
- box-sizing: border-box;
1293
- height: 25px;
1294
- line-height: 11px;
1295
- color: #855f0b;
1296
- font-size: 13px;
1297
- background: #ffdf68;
1298
- border-radius: 50px 0 0 50px;
1299
- display: flex;
1300
- align-items: center;
1301
- justify-content: center;
1302
- }
1303
- .notice-entry-img {
1304
- width: 20px;
1305
- height: 20px;
1306
- }
1307
- .notice-entry-icon {
1308
- position: absolute;
1309
- background-color: red;
1310
- width: 6px;
1311
- height: 6px;
1312
- border-radius: 50%;
1313
- top: 1px;
1314
- left: 27px;
1315
- }
1316
- .dd-search {
1317
- padding: 8px 12px;
1318
- display: flex;
1319
- align-items: center;
1320
- background: #fefefe;
1321
- }
1322
- .dd-search.bordered {
1323
- border-bottom: 1px solid #ddd;
1324
- }
1325
- .dd-search.inNavbar {
1326
- padding: 0;
1327
- width: 235px;
1328
- z-index: 10;
1329
- position: absolute;
1330
- left: 40px;
1331
- background: transparent;
1332
- }
1333
- .dd-search.inNavbar .dd-search__form {
1334
- background: #f1f3f5;
1335
- border-color: transparent;
1336
- }
1337
- .dd-search.focus .dd-search__form {
1338
- border-color: var(--app-primary-color, #017fff);
1339
- }
1340
- .dd-search__placeholder {
1341
- color: #b4b4b4;
1342
- }
1343
- .dd-search__form {
1344
- flex: 1;
1345
- box-sizing: border-box;
1346
- height: 36px;
1347
- border-radius: 5px;
1348
- display: flex;
1349
- align-items: center;
1350
- padding: 0 10px;
1351
- background-color: #f1f3f5;
1352
- }
1353
- .dd-search__control {
1354
- font-size: 13px;
1355
- flex: 1;
1356
- }
1357
- .dd-search__input {
1358
- width: 100%;
1359
- box-sizing: border-box;
1360
- padding: 0 10px;
1361
- caret-color: var(--app-primary-color, #017fff);
1362
- }
1363
- .dd-search__prefix, .dd-search__suffix {
1364
- width: 15px !important;
1365
- height: 15px !important;
1366
- }
1367
- .dd-search__btn {
1368
- height: 33px;
1369
- line-height: 33px;
1370
- padding: 0 10px;
1371
- font-size: 16px;
1372
- color: var(--app-primary-color, #017fff);
1373
- }
1374
- .dd-search.disabled .dd-search__suffix {
1375
- display: none;
1376
- }
1377
- .dd-search.disabled .dd-search__control {
1378
- flex: 1;
1379
- width: fit-content;
1380
- }
1381
- .notice-list {
1382
- height: 100vh;
1383
- overflow: hidden;
1384
- display: flex;
1385
- flex-direction: column;
1386
- }
1387
- .notice-list .wrapper {
1388
- height: 100%;
1389
- padding: 10px 12px;
1390
- box-sizing: border-box;
1391
- }
1392
- .notice-list .wrapper .content {
1393
- height: 100%;
1394
- background: #ffffff;
1395
- border-radius: 10px;
1396
- }
1397
- .notice-list .wrapper .content .card {
1398
- margin: 0 10px;
1399
- min-height: 64px;
1400
- background: #fff;
1401
- position: relative;
1402
- padding: 10px;
1403
- }
1404
- .notice-list .wrapper .content .card::before {
1405
- content: "";
1406
- position: absolute;
1407
- left: 2px;
1408
- top: 0;
1409
- height: 18px;
1410
- width: 1px;
1411
- background: #d8d8d8;
1412
- }
1413
- .notice-list .wrapper .content .card::after {
1414
- content: "";
1415
- position: absolute;
1416
- left: 2px;
1417
- top: 18px;
1418
- bottom: 0;
1419
- width: 1px;
1420
- background: #d8d8d8;
1421
- }
1422
- .notice-list .wrapper .content .card:first-child::before {
1423
- display: none;
1424
- }
1425
- .notice-list .wrapper .content .card:last-child::after {
1426
- display: none;
1427
- }
1428
- .notice-list .wrapper .content .card .point {
1429
- width: 5px;
1430
- height: 5px;
1431
- background-color: #d8d8d8;
1432
- border-radius: 50%;
1433
- position: absolute;
1434
- left: 0;
1435
- top: 18px;
1436
- z-index: 9;
1437
- }
1438
- .notice-list .wrapper .content .card .time {
1439
- font-size: 13px;
1440
- color: #353535;
1441
- line-height: 19px;
1442
- opacity: 0.2;
1443
- margin-bottom: 5px;
1444
- }
1445
- .notice-list .wrapper .content .card .text {
1446
- font-size: 14px;
1447
- line-height: 20px;
1448
- color: #9fa0a1;
1449
- }
1450
- .notice-list .wrapper .content .card.active .point {
1451
- background-color: #f43309;
1452
- }
1453
- .notice-list .wrapper .content .card.active .text {
1454
- color: #171a1d;
1455
- font-size: 13px;
1456
- }
1457
- .notice-list .wrapper .content .card.active .text.tit {
1458
- font-size: 15px;
1459
- margin-bottom: 4px;
1460
- }
1461
- .notice-list .wrapper .content .card.active .notice-list-label {
1462
- opacity: 1;
1463
- }
1464
- .notice-list .wrapper .content .card.active .notice-list-file {
1465
- opacity: 1;
1466
- }
1467
- .notice-list .no-data {
1468
- background-color: #fff;
1469
- display: flex;
1470
- align-items: center;
1471
- flex-direction: column;
1472
- height: 100%;
1473
- }
1474
- .notice-list .no-data .text {
1475
- height: 20px;
1476
- font-size: 14px;
1477
- color: #7e7e7e;
1478
- line-height: 20px;
1479
- }
1480
- .notice-list .no-data-img {
1481
- width: 238px;
1482
- height: 157px;
1483
- margin-top: 105px;
1484
- margin-bottom: 19px;
1485
- }
1486
- .notice-list-file {
1487
- font-size: 10px;
1488
- color: var(--app-primary-color, #017fff);
1489
- opacity: 0.5;
1490
- }
1491
- .notice-list .cue-text {
1492
- font-size: 13px;
1493
- color: rgba(60, 60, 60, 0.5);
1494
- padding: 30px 0 calc(30px + env(safe-area-inset-bottom, 0px));
1495
- text-align: center;
1496
- }
1497
- .notice-list-label {
1498
- border: 1px solid #caa264;
1499
- color: #caa264;
1500
- border-radius: 1px;
1501
- font-size: 8px;
1502
- display: inline-flex;
1503
- justify-content: center;
1504
- align-items: center;
1505
- height: 14px;
1506
- padding: 0 5px;
1507
- margin-left: 4px;
1508
- opacity: 0.5;
1509
- }
1510
- .user-entry {
1511
- position: absolute;
1512
- left: 0;
1513
- top: 130px;
1514
- transform: translateY(-50%);
1515
- display: flex;
1516
- padding: 0 22px;
1517
- align-items: center;
1518
- width: 100%;
1519
- }
1520
- .user-entry-head {
1521
- position: relative;
1522
- width: 62px;
1523
- height: 62px;
1524
- margin-right: 8px;
1525
- }
1526
- .user-entry-head-img {
1527
- width: 100%;
1528
- height: 100%;
1529
- overflow: hidden;
1530
- border-radius: 50%;
1531
- border: 1.5px solid #fff;
1532
- }
1533
- .user-entry-head-icon {
1534
- position: absolute;
1535
- width: 15px;
1536
- height: 15px;
1537
- bottom: 2px;
1538
- left: 48px;
1539
- background: url("https://cdn.ddjf.com/static/images/wx-yunservice/edit-icon.png") center;
1540
- background-size: cover;
1541
- }
1542
- .user-entry-bd {
1543
- color: #fff;
1544
- }
1545
- .user-entry-bd-bigtxt {
1546
- display: flex;
1547
- align-items: center;
1548
- font-size: 20px;
1549
- font-weight: 500;
1550
- line-height: 28px;
1551
- margin-left: 10px;
1552
- }
1553
- .user-entry-bd-bigtxt-icon {
1554
- width: 20px;
1555
- }
1556
- .user-entry-bd-txt {
1557
- font-size: 20px;
1558
- font-weight: 500;
1559
- line-height: 25px;
1560
- margin-bottom: 5px;
1561
- display: flex;
1562
- align-items: center;
1563
- }
1564
- .user-entry-bd-smalltxt {
1565
- margin-top: 0;
1566
- font-size: 15px;
1567
- line-height: 21px;
1568
- }
1569
- .dd-skeleton__item {
1570
- margin-top: 10px;
1571
- }
1572
- .user-info {
1573
- height: 100vh;
1574
- }
1575
- .user-info-wrap {
1576
- padding: 0 12px;
1577
- padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
1578
- box-sizing: border-box;
1579
- min-height: 100%;
1580
- }
1581
- .user-info-tit {
1582
- height: 38px;
1583
- display: flex;
1584
- align-items: center;
1585
- color: #666666;
1586
- font-size: 12px;
1587
- padding-left: 10px;
1588
- }
1589
- .user-info-head {
1590
- border-radius: 5px;
1591
- background: #fff;
1592
- padding: 30px 11px 0;
1593
- }
1594
- .user-info-head-avatar {
1595
- position: relative;
1596
- width: 80px;
1597
- height: 80px;
1598
- margin: 0 auto 25px;
1599
- }
1600
- .user-info-head-img {
1601
- width: 100%;
1602
- height: 100%;
1603
- overflow: hidden;
1604
- border-radius: 50%;
1605
- }
1606
- .user-info-head-upload {
1607
- position: absolute;
1608
- bottom: -2px;
1609
- left: 52px;
1610
- width: 29px;
1611
- height: 29px;
1612
- background: #333333;
1613
- overflow: hidden;
1614
- border-radius: 50%;
1615
- display: flex;
1616
- align-items: center;
1617
- justify-content: center;
1618
- }
1619
- .user-info-head-upload-icon {
1620
- width: 17px;
1621
- height: 17px;
1622
- }
1623
- .user-info-team-item {
1624
- border-radius: 5px;
1625
- background: #fff;
1626
- display: flex;
1627
- padding: 15px;
1628
- margin-bottom: 10px;
1629
- }
1630
- .user-info-team-item-avatar {
1631
- width: 38px;
1632
- height: 38px;
1633
- margin-right: 15px;
1634
- border-radius: 5px;
1635
- background: rgba(1, 127, 255, 0.3);
1636
- display: flex;
1637
- align-items: center;
1638
- justify-content: center;
1639
- }
1640
- .user-info-team-item-avatar-img {
1641
- width: 100%;
1642
- height: 100%;
1643
- }
1644
- .user-info-team-item-avatar .empty {
1645
- width: 20px;
1646
- height: 40px;
1647
- }
1648
- .user-info-team-item-title {
1649
- font-size: 16px;
1650
- font-weight: 500;
1651
- margin-bottom: 5px;
1652
- }
1653
- .user-info-team-item-app {
1654
- display: flex;
1655
- align-items: center;
1656
- flex-wrap: wrap;
1657
- }
1658
- .user-info-team-item-app-tag {
1659
- border: 1px solid rgba(53, 53, 53, 0.2);
1660
- font-size: 10px;
1661
- height: 18px;
1662
- display: inline-flex;
1663
- align-items: center;
1664
- justify-content: center;
1665
- padding: 0 6px;
1666
- border-radius: 2px;
1667
- margin: 0 10px 6px 0;
1668
- }
1669
- .user-info-team-item-bd {
1670
- flex: 1;
1671
- }
1672
- .user-info-team-item-role {
1673
- padding: 10px;
1674
- background: rgba(245, 245, 245, 0.5);
1675
- border-radius: 5px;
1676
- margin-bottom: 10px;
1677
- }
1678
- .user-info-team-item-role-btn {
1679
- color: var(--app-primary-color, #017fff);
1680
- font-size: 10px;
1681
- display: inline-flex;
1682
- align-items: center;
1683
- margin-bottom: 6px;
1684
- }
1685
- .user-info-team-item-role-btn-icon {
1686
- width: 12px;
1687
- height: 12px;
1688
- position: relative;
1689
- top: 1px;
1690
- }
1691
- .user-info-team-item-role-btn-icon.showRole {
1692
- transform: rotate(180deg);
1693
- }
1694
- .user-info-team-item-role-item {
1695
- display: flex;
1696
- font-size: 10px;
1697
- margin-bottom: 10px;
1698
- }
1699
- .user-info-team-item-role-item:last-child {
1700
- margin-bottom: 0;
1701
- }
1702
- .user-info-team-item-role-item-name {
1703
- opacity: 0.5;
1704
- white-space: nowrap;
1705
- margin-right: 10px;
1706
- min-width: 40px;
1707
- }
1708
- .user-info-team-item-role-item-info {
1709
- flex: 1;
1710
- color: #1a1a1a;
1711
- }
1712
- .user-info-team-item-user {
1713
- margin-bottom: 4px;
1714
- font-size: 12px;
1715
- display: flex;
1716
- align-items: center;
1717
- }
1718
- .user-info-team-item-user-icon {
1719
- width: 10px;
1720
- height: 10px;
1721
- margin-left: 4px;
1722
- }
1723
- .user-info-team-item-dept {
1724
- display: flex;
1725
- flex-wrap: wrap;
1726
- font-size: 10px;
1727
- color: rgba(26, 26, 26, 0.8);
1728
- }
1729
- .user-info-team-item-dept-item {
1730
- font-size: 10px;
1731
- color: rgba(26, 26, 26, 0.5);
1732
- margin: 4px 10px 4px 0;
1733
- }
1734
- .user-info-team-item-dept-item:first-child {
1735
- color: rgba(26, 26, 26, 0.8);
1736
- }
1737
- .user-info-ft-btn {
1738
- width: 100%;
1739
- border-color: transparent !important;
1740
- color: rgba(27, 63, 107, 0.8) !important;
1741
- }
1742
- .user-info .nut-cell {
1743
- padding: 11px 0;
1744
- margin: 0;
1745
- box-shadow: none;
1746
- border-bottom: 1px solid #f0f0f0;
1747
- font-size: 16px;
1748
- }
1749
- .user-info .nut-cell .nut-cell__value {
1750
- font-size: 16px;
1751
- color: #000;
1752
- }
1753
- .user-info .nut-cell .nut-cell__link {
1754
- color: #ccc;
1755
- margin-left: 8px;
1756
- }
1757
- .upload-avatar-popup-box {
1758
- display: flex;
1759
- flex-direction: column;
1760
- align-items: center;
1761
- justify-content: center;
1762
- }
1763
- .upload-avatar-popup-avatar {
1764
- width: 320px;
1765
- height: 320px;
1766
- overflow: hidden;
1767
- border-radius: 50%;
1768
- margin-bottom: 50px;
1769
- }
1770
- .upload-avatar-popup-btn {
1771
- width: 106px;
1772
- height: 37px;
1773
- border-radius: 50px;
1774
- border: 1px solid #ffffff;
1775
- display: flex;
1776
- justify-content: center;
1777
- align-items: center;
1778
- color: #ffffff;
1779
- font-size: 16px;
1780
- }
1781
- .change-username-popup .nut-dialog {
1782
- min-height: auto;
1783
- }
1784
- .change-username-popup .nut-input {
1785
- height: 40px;
1786
- padding: 0;
1787
- display: flex;
1788
- align-items: center;
1789
- font-size: 16px;
1790
- border: none;
1791
- }
1792
- .change-username-popup .nut-input .input-text {
1793
- width: 100%;
1794
- height: 100%;
1795
- font-size: 14px;
1796
- }
1797
- .change-username-popup .nut-input .nut-input-value,
1798
- .change-username-popup .nut-input .nut-input-inner,
1799
- .change-username-popup .nut-input .nut-input-box {
1800
- height: 100%;
1801
- overflow: hidden;
1802
- background: #f5f5f5;
1803
- border-radius: 6px;
1804
- }
1805
- .change-username-popup .nut-input .nut-placeholder {
1806
- color: #cccccc;
1807
- line-height: 38px;
1808
- height: 38px;
1809
- }
1810
- .change-username-popup .nut-input .nut-input-box {
1811
- padding: 0 15px;
1812
- }
1813
- .change-username-popup-cancel.nut-button {
1814
- border-radius: 15px;
1815
- font-size: 14px;
1816
- height: 30px;
1817
- }
1818
- .change-username-popup-ok.nut-button {
1819
- background: var(--app-primary-color, #017fff);
1820
- height: 30px;
1821
- font-size: 14px;
1822
- border-radius: 15px;
1823
- }
1824
- .user-binding {
1825
- height: 100vh;
1826
- display: flex;
1827
- flex-direction: column;
1828
- box-sizing: border-box;
1829
- padding: 10px 12px env(safe-area-inset-bottom, 0px);
1830
- --nut-cell-padding: 0;
1831
- }
1832
- .user-binding-img {
1833
- width: 351px;
1834
- height: 192px;
1835
- }
1836
- .user-binding-layout {
1837
- position: relative;
1838
- width: 351px;
1839
- border-radius: 4px;
1840
- background: #fff;
1841
- overflow: hidden;
1842
- margin-bottom: 10px;
1843
- }
1844
- .user-binding-inputlayout {
1845
- padding: 0 10px;
1846
- box-sizing: border-box;
1847
- }
1848
- .user-binding-inputlayout .nut-input {
1849
- height: 40px;
1850
- padding: 0;
1851
- display: flex;
1852
- align-items: center;
1853
- font-size: 16px;
1854
- padding-left: 3px;
1855
- border-color: #f5f5f5;
1856
- }
1857
- .user-binding-inputlayout .nut-input .input-text {
1858
- width: 100%;
1859
- }
1860
- .user-binding .nut-placeholder {
1861
- color: #cccccc;
1862
- }
1863
- .user-binding .user-binding-btn {
1864
- position: absolute;
1865
- bottom: 50px;
1866
- left: 25px;
1867
- width: calc(100% - 50px);
1868
- font-size: 16px;
1869
- background: var(--app-primary-color, #017fff);
1870
- height: 40px;
1871
- line-height: 38px;
1872
- }
1873
- .user-binding .user-binding-codebtn {
1874
- height: 30px;
1875
- font-size: 12px;
1876
- padding: 0;
1877
- width: 90px;
1878
- border: none;
1879
- color: var(--app-primary-color, #017fff);
1880
- background: #f2f2f2;
1881
- }
1882
- .user-binding .user-binding-steps {
1883
- margin-top: 15px;
1884
- }
1885
- .user-binding .user-binding-steps .nut-step-line {
1886
- background: rgb(220, 220, 220);
1887
- left: 60%;
1888
- right: -40%;
1889
- }
1890
- .user-binding .user-binding-steps .nut-step-title {
1891
- font-weight: bold;
1892
- color: rgba(0, 0, 0, 0.4);
1893
- }
1894
- .user-binding .user-binding-steps .nut-step.nut-step-wait .nut-step-icon {
1895
- background: rgb(243, 243, 243);
1896
- border-color: rgb(243, 243, 243);
1897
- color: rgba(0, 0, 0, 0.4);
1898
- }
1899
- .user-binding .user-binding-steps .nut-step.nut-step-process .nut-step-icon {
1900
- background: var(--app-primary-color, #017fff);
1901
- border-color: var(--app-primary-color, #017fff);
1902
- }
1903
- .user-binding .user-binding-steps .nut-step.nut-step-process .nut-step-title {
1904
- color: var(--app-primary-color, #017fff);
1905
- }
1906
- .user-binding .user-binding-steps .nut-step-head {
1907
- margin-bottom: 8px;
1908
- }
1909
- .user-binding .user-binding-steps .nut-step.nut-step-finish .nut-step-title {
1910
- color: rgba(0, 0, 0, 0.9);
1911
- }
1912
- .user-binding .user-binding-steps .nut-step.nut-step-finish .nut-step-line {
1913
- background: var(--app-primary-color, #017fff);
1914
- }
1915
- .user-binding .user-binding-steps .nut-step.nut-step-finish .nut-step-head {
1916
- color: var(--app-primary-color, #017fff);
1917
- border-color: var(--app-primary-color, #017fff);
1918
- }
1919
- .user-binding .user-binding-steps .nut-step-icon {
1920
- width: 22px;
1921
- height: 22px;
1922
- }
1923
- .user-binding-success {
1924
- height: 100vh;
1925
- display: flex;
1926
- flex-direction: column;
1927
- align-items: center;
1928
- box-sizing: border-box;
1929
- background: #fff;
1930
- }
1931
- .user-binding-success-icon {
1932
- margin-top: 80px;
1933
- width: 50px;
1934
- height: 50px;
1935
- margin-bottom: 30px;
1936
- }
1937
- .user-binding-success-info {
1938
- font-size: 30px;
1939
- color: #000000;
1940
- font-weight: bold;
1941
- margin-bottom: 15px;
1942
- }
1943
- .user-binding-success-sbtn {
1944
- padding: 0 15px;
1945
- color: #017fff;
1946
- font-size: 16px;
1947
- }
1948
- .user-binding-success-btn {
1949
- margin-top: 80px;
1950
- width: 296px;
1951
- font-size: 16px;
1952
- background: var(--app-primary-color, #017fff);
1953
- height: 40px;
1954
- line-height: 38px;
1955
- }
1956
- .bt-container {
1957
- display: flex;
1958
- flex-direction: column;
1959
- justify-content: space-between;
1960
- height: 100%;
1961
- box-sizing: border-box;
1962
- background-color: #0e1319;
1963
- position: relative;
1964
- overflow: hidden;
1965
- }
1966
- .bt-container .iconfont {
1967
- position: absolute;
1968
- z-index: 999;
1969
- top: 20px;
1970
- font-size: 15px;
1971
- padding: 5px;
1972
- background-color: rgba(255, 255, 255, 0.2);
1973
- border-radius: 50%;
1974
- color: #ffffff;
1975
- }
1976
- .bt-container .iconfont.active {
1977
- color: #007aff;
1978
- }
1979
- .bt-container .icon-replay {
1980
- right: 20px;
1981
- }
1982
- .bt-container .bt-canvas {
1983
- position: absolute;
1984
- left: 100%;
1985
- top: 0;
1986
- width: 300px;
1987
- height: 300px;
1988
- }
1989
- .bt-container .mainContent {
1990
- flex: 1;
1991
- margin: 30px;
1992
- position: relative;
1993
- }
1994
- .bt-container .mainContent .image {
1995
- position: absolute;
1996
- transform-origin: center center;
1997
- }
1998
- .bt-container .mainContent .controller {
1999
- position: absolute;
2000
- z-index: 99;
2001
- padding: 10px;
2002
- }
2003
- .bt-container .mainContent .controller::after {
2004
- display: block;
2005
- content: "";
2006
- box-shadow: 0 0 5px #333;
2007
- background-color: #e4e7ed;
2008
- }
2009
- .bt-container .mainContent .controller.controller_dot::after {
2010
- width: 20px;
2011
- height: 20px;
2012
- border-radius: 99px;
2013
- }
2014
- .bt-container .mainContent .controller.vertical::after {
2015
- width: 5px;
2016
- height: 20px;
2017
- }
2018
- .bt-container .mainContent .controller.horizon::after {
2019
- width: 20px;
2020
- height: 5px;
2021
- }
2022
- .bt-container .mainContent .cropper {
2023
- position: absolute;
2024
- border: 1px solid #eee;
2025
- box-sizing: content-box;
2026
- transform-origin: center center;
2027
- outline: 999px solid rgba(0, 0, 0, 0.5);
2028
- will-change: transform;
2029
- display: contain;
2030
- pointer-events: none;
2031
- }
2032
- .bt-container .mainContent .cropper .line {
2033
- position: absolute;
2034
- }
2035
- .bt-container .mainContent .cropper .row {
2036
- width: 100%;
2037
- height: 0px;
2038
- left: 0;
2039
- border-top: 1px dashed #007aff;
2040
- }
2041
- .bt-container .mainContent .cropper .col {
2042
- height: 100%;
2043
- width: 0px;
2044
- border-left: 1px dashed #007aff;
2045
- }
2046
- .bt-container .mainContent .cropper .row1 {
2047
- top: 33%;
2048
- }
2049
- .bt-container .mainContent .cropper .row2 {
2050
- top: 66%;
2051
- }
2052
- .bt-container .mainContent .cropper .col1 {
2053
- left: 33%;
2054
- }
2055
- .bt-container .mainContent .cropper .col2 {
2056
- left: 66%;
2057
- }
2058
- .bt-container .slot {
2059
- position: relative;
2060
- padding-top: 10px;
2061
- }
2062
- .user-head-crop {
2063
- height: 100vh;
2064
- }
2065
- .user-head-crop-btns {
2066
- position: absolute;
2067
- bottom: 0;
2068
- left: 0;
2069
- width: 100%;
2070
- height: 50px;
2071
- padding: 0 20px;
2072
- box-sizing: border-box;
2073
- line-height: 50px;
2074
- display: flex;
2075
- justify-content: space-between;
2076
- }
2077
- .user-head-crop .cbtn {
2078
- color: #fff;
2079
- }
2080
- .user-head-crop .comfirmBtn {
2081
- color: var(--app-primary-color, #017fff);
2082
- }
2083
- .user-feedback {
2084
- margin: 10px 12px;
2085
- padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
2086
- min-height: 100vh;
2087
- box-sizing: border-box;
2088
- overflow: hidden;
2089
- }
2090
- .user-feedback.isSuccess {
2091
- margin: 0;
2092
- padding: 0;
2093
- height: 100%;
2094
- }
2095
- .user-feedback.isSuccess .user-feedback-wrap {
2096
- height: 100vh;
2097
- align-items: center;
2098
- }
2099
- .user-feedback-wrap {
2100
- min-height: calc(100vh - (75px + env(safe-area-inset-bottom, 0px)));
2101
- height: 100%;
2102
- background: #fff;
2103
- display: flex;
2104
- flex-direction: column;
2105
- box-sizing: border-box;
2106
- padding: 10px;
2107
- border-radius: 5px;
2108
- }
2109
- .user-feedback-head {
2110
- background: #f2f9ff;
2111
- padding: 15px;
2112
- border-radius: 2px;
2113
- font-size: 12px;
2114
- margin-bottom: 8px;
2115
- }
2116
- .user-feedback-head-info {
2117
- padding-left: 9px;
2118
- text-indent: -9px;
2119
- }
2120
- .user-feedback-tit {
2121
- height: 44px;
2122
- display: flex;
2123
- align-items: center;
2124
- color: #1a1a1a;
2125
- font-weight: 500;
2126
- font-size: 17px;
2127
- }
2128
- .user-feedback-body {
2129
- border-radius: 4px 4px 0px 0px;
2130
- display: flex;
2131
- flex-direction: column;
2132
- overflow: hidden;
2133
- }
2134
- .user-feedback-editor {
2135
- padding: 10px;
2136
- font-size: 14px;
2137
- background: #f5f5f5;
2138
- overflow-y: auto;
2139
- min-height: 165px;
2140
- }
2141
- .user-feedback-handle {
2142
- display: flex;
2143
- align-items: center;
2144
- flex-wrap: wrap;
2145
- margin-top: 10px;
2146
- margin-right: -4px;
2147
- }
2148
- .user-feedback-handle-item {
2149
- position: relative;
2150
- border-radius: 2px;
2151
- display: flex;
2152
- align-items: center;
2153
- justify-content: center;
2154
- width: 79px;
2155
- height: 79px;
2156
- background: #f5f5f5;
2157
- font-size: 30px;
2158
- color: rgba(53, 53, 53, 0.3);
2159
- margin-right: 4px;
2160
- margin-bottom: 4px;
2161
- }
2162
- .user-feedback-handle-item-img {
2163
- max-width: 100%;
2164
- max-height: 100%;
2165
- }
2166
- .user-feedback-handle-item-close {
2167
- position: absolute;
2168
- top: -2px;
2169
- right: -2px;
2170
- width: 20px;
2171
- height: 20px;
2172
- display: flex;
2173
- justify-content: center;
2174
- align-items: center;
2175
- }
2176
- .user-feedback-handle-item-close-img {
2177
- width: 10px;
2178
- height: 10px;
2179
- }
2180
- .user-feedback-handle-item-loading {
2181
- width: 17px;
2182
- height: 17px;
2183
- animation: rotate 2s linear infinite;
2184
- }
2185
- .user-feedback .ql-editor.ql-blank:before {
2186
- color: rgba(0, 0, 0, 0.3);
2187
- font-style: normal;
2188
- }
2189
- .user-feedback-footer {
2190
- position: fixed;
2191
- z-index: 10;
2192
- bottom: 0;
2193
- left: 0;
2194
- width: 100%;
2195
- min-height: 63px;
2196
- background: #ffffff;
2197
- box-shadow: 0 -3px 11px 0 rgba(224, 224, 224, 0.5);
2198
- padding: 10px 12px calc(8px + env(safe-area-inset-bottom, 0px));
2199
- display: flex;
2200
- justify-content: space-between;
2201
- box-sizing: border-box;
2202
- }
2203
- .user-feedback-footer-btn {
2204
- flex: 1;
2205
- }
2206
- .user-feedback-footer-btn:first-child {
2207
- margin-right: 10px;
2208
- }
2209
- .user-feedback-success-img {
2210
- width: 87px;
2211
- height: 90px;
2212
- margin-top: 110px;
2213
- margin-bottom: 20px;
2214
- }
2215
- .user-feedback-success-info {
2216
- color: #353535;
2217
- font-size: 16px;
2218
- font-weight: 500;
2219
- }
2220
- @keyframes rotate {
2221
- from {
2222
- transform: rotate(0);
2223
- }
2224
- to {
2225
- transform: rotate(360deg);
2226
- }
2227
- }
2228
- .user-feedback-entry {
2229
- position: fixed;
2230
- z-index: 10;
2231
- right: 12px;
2232
- bottom: calc(120px + env(safe-area-inset-bottom, 0px));
2233
- display: flex;
2234
- flex-direction: column;
2235
- align-items: center;
2236
- justify-content: center;
2237
- background: #fff;
2238
- box-shadow: 0px 2px 5px 0px rgba(0, 110, 229, 0.1019607843);
2239
- width: 40px;
2240
- height: 40px;
2241
- border-radius: 50%;
2242
- color: rgba(0, 0, 0, 0.5);
2243
- font-size: 10px;
2244
- }
2245
- .user-feedback-entry-icon {
2246
- width: 13px;
2247
- height: 13px;
2248
- margin-bottom: 1px;
2249
- }
2250
- .user-feedback-entry:active {
2251
- background: rgba(255, 255, 255, 0.7);
2252
- }
2253
- .user-feedback-entry.hasStorage {
2254
- width: 92px;
2255
- height: 43px;
2256
- background: transparent;
2257
- box-shadow: none;
2258
- }
2259
- .user-feedback-entry.hasStorage .user-feedback-entry-icon {
2260
- width: 100%;
2261
- height: 100%;
2262
- }
2263
- .user-feedback-entry.hasStorage:active {
2264
- background: transparent;
2265
- }
2266
- .user-feedback-entry.hasStorage .user-feedback-entry-close {
2267
- position: absolute;
2268
- top: -6px;
2269
- right: -6px;
2270
- width: 20px;
2271
- height: 20px;
2272
- display: flex;
2273
- justify-content: center;
2274
- align-items: center;
2275
- }
2276
- .user-feedback-entry.hasStorage .user-feedback-entry-close-img {
2277
- width: 10px;
2278
- height: 10px;
2279
- }
2280
- .login-setting {
2281
- position: fixed;
2282
- z-index: 4;
2283
- left: 12px;
2284
- top: 10px;
2285
- bottom: 10px;
2286
- align-items: center;
2287
- width: calc(100% - 24px);
2288
- background: #ffffff;
2289
- border-radius: 5px;
2290
- display: flex;
2291
- flex-direction: column;
2292
- }
2293
- .login-setting-img {
2294
- margin-top: 50%;
2295
- height: 111px;
2296
- width: 198px;
2297
- }
2298
- .login-setting-text {
2299
- margin-top: 10px;
2300
- color: #353535;
2301
- opacity: 0.4;
2302
- font-size: 12px;
2303
- padding: 0 30px;
2304
- text-align: center;
2305
- }
2306
- .user-resource-empty {
2307
- position: fixed;
2308
- z-index: 4;
2309
- left: 12px;
2310
- top: 10px;
2311
- bottom: 10px;
2312
- align-items: center;
2313
- width: calc(100% - 24px);
2314
- background: #ffffff;
2315
- border-radius: 5px;
2316
- display: flex;
2317
- flex-direction: column;
2318
- }
2319
- .user-resource-empty-img {
2320
- margin-top: 50%;
2321
- height: 111px;
2322
- width: 198px;
2323
- }
2324
- .user-resource-empty-text {
2325
- margin-top: 10px;
2326
- color: #353535;
2327
- opacity: 0.4;
2328
- font-size: 12px;
2329
- padding: 0 30px;
2330
- text-align: center;
2331
- }