style.scss 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. @import "@/uni.scss";
  2. .custom-withdraw {
  3. background: var(--color-zinc-50);
  4. min-height: 100vh;
  5. .box {
  6. margin-bottom: px2rpx(20);
  7. .b-card {
  8. background: #fff;
  9. border-radius: px2rpx(12);
  10. padding: px2rpx(20);
  11. box-shadow: 0 px2rpx(4) px2rpx(12) rgba(0, 0, 0, 0.03);
  12. .card-top {
  13. .tit {
  14. font-size: px2rpx(16);
  15. font-weight: 600;
  16. margin-bottom: px2rpx(16);
  17. display: flex;
  18. align-items: center;
  19. color: var(--bs-heading-color);
  20. .iconfont {
  21. margin-right: px2rpx(8);
  22. color: var(--color-primary);
  23. font-size: px2rpx(18);
  24. }
  25. }
  26. }
  27. .channelType {
  28. font-size: px2rpx(15);
  29. font-weight: 600;
  30. margin: px2rpx(24) 0 px2rpx(12);
  31. color: var(--color-navy-700);
  32. padding-left: px2rpx(8);
  33. border-left: px2rpx(4) solid var(--color-primary);
  34. }
  35. }
  36. }
  37. .reselect-btn {
  38. margin-top: px2rpx(20);
  39. display: flex;
  40. justify-content: flex-end;
  41. }
  42. .s-btn {
  43. &.reselect {
  44. background-color: var(--color-zinc-100);
  45. color: #fff;
  46. border: none;
  47. font-size: px2rpx(14);
  48. padding: px2rpx(8) px2rpx(20);
  49. border-radius: px2rpx(8);
  50. &:active {
  51. background-color: var(--color-zinc-200);
  52. }
  53. }
  54. &[type="primary"] {
  55. width: 100%;
  56. height: px2rpx(48);
  57. background-color: #cf1322;
  58. color: #fff!important;
  59. border-radius: px2rpx(12);
  60. font-size: px2rpx(16);
  61. font-weight: 600;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. border: none;
  66. margin-top: px2rpx(30);
  67. transition: all 0.2s;
  68. &:active {
  69. transform: scale(0.98);
  70. background-color: #cf1322;
  71. }
  72. }
  73. }
  74. .add-back {
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. margin-bottom: px2rpx(12);
  79. padding: px2rpx(12) px2rpx(16);
  80. background: var(--color-zinc-100);
  81. border-radius: px2rpx(8);
  82. text {
  83. font-size: px2rpx(14);
  84. color: var(--color-navy-700);
  85. font-weight: 500;
  86. }
  87. .add-btn {
  88. color: var(--color-primary);
  89. font-weight: 600;
  90. text-decoration: underline;
  91. &:active {
  92. opacity: 0.7;
  93. }
  94. }
  95. }
  96. .proof {
  97. margin-top: px2rpx(8);
  98. border: px2rpx(1) dashed var(--color-zinc-300);
  99. border-radius: px2rpx(8);
  100. padding: px2rpx(8);
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. background: var(--color-zinc-50);
  105. .state {
  106. padding: px2rpx(4) px2rpx(12);
  107. border-radius: px2rpx(4);
  108. font-size: px2rpx(12);
  109. font-weight: bold;
  110. }
  111. }
  112. .agree {
  113. margin: px2rpx(24) 0;
  114. display: flex;
  115. align-items: flex-start;
  116. .checkbox {
  117. display: flex;
  118. align-items: flex-start;
  119. gap: px2rpx(8);
  120. :deep(uni-checkbox .uni-checkbox-input) {
  121. margin-top: px2rpx(4);
  122. border-radius: px2rpx(4);
  123. width: px2rpx(18);
  124. height: px2rpx(18);
  125. }
  126. text {
  127. font-size: px2rpx(14);
  128. color: #000;
  129. font-weight: 600;
  130. line-height: 1.5;
  131. }
  132. }
  133. }
  134. .step3-attention {
  135. // background: var(--color-error-50, #fff1f0);
  136. border-radius: px2rpx(12);
  137. margin-bottom: px2rpx(20);
  138. .tips {
  139. line-height: 1.8;
  140. font-size: px2rpx(12);
  141. color: #909399;
  142. background-color: rgba(var(--bs-body-bg-rgb), 1) !important;
  143. padding: px2rpx(12);
  144. border-radius: px2rpx(4);
  145. border-left: px2rpx(2) solid #cf1322;
  146. .title {
  147. font-weight: 600;
  148. margin-bottom: px2rpx(6);
  149. color: #606266;
  150. }
  151. }
  152. .attention {
  153. font-size: px2rpx(14);
  154. // color: var(--color-error-600, #cf1322);
  155. line-height: 1.6;
  156. }
  157. .btn-bottom {
  158. margin-top: px2rpx(20);
  159. display: flex;
  160. justify-content: center;
  161. .btn {
  162. background: var(--color-error-600, #cf1322);
  163. color: var(--bs-emphasis-color);
  164. padding: px2rpx(10) px2rpx(48);
  165. border-radius: px2rpx(24);
  166. font-size: px2rpx(15);
  167. font-weight: 700;
  168. box-shadow: 0 px2rpx(4) px2rpx(10) rgba(207, 19, 34, 0.2);
  169. transition: all 0.2s;
  170. &:active {
  171. transform: scale(0.96);
  172. opacity: 0.8;
  173. }
  174. }
  175. }
  176. }
  177. :deep(.base-info-form) {
  178. .uni-row1 {
  179. .uni-col {
  180. padding: 0 px2rpx(10) !important;
  181. }
  182. .uni-forms-item {
  183. min-height: px2rpx(79);
  184. margin-bottom: px2rpx(10);
  185. }
  186. .uni-select,
  187. .uni-combox,
  188. .uni-easyinput__content,
  189. .uni-date-editor--x {
  190. border: none !important;
  191. background-color: var(--color-zinc-100) !important;
  192. border-radius: px2rpx(8) !important;
  193. }
  194. .uni-date-x {
  195. border: none !important;
  196. background-color: rgba(195, 195, 195, 0) !important;
  197. }
  198. .uni-easyinput__content-input {
  199. height: px2rpx(35) !important;
  200. }
  201. }
  202. }
  203. /* 弹窗样式美化 */
  204. :deep(.uni-popup__wrapper) {
  205. .popup-content {
  206. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  207. border-radius: px2rpx(20);
  208. padding: px2rpx(24);
  209. width: px2rpx(320);
  210. .popup-title {
  211. font-size: px2rpx(18);
  212. font-weight: 700;
  213. text-align: center;
  214. margin-bottom: px2rpx(20);
  215. color: var(--bs-heading-color);
  216. display: block;
  217. }
  218. .popup-text {
  219. font-size: px2rpx(14);
  220. line-height: 1.6;
  221. color: var(--color-zinc-600);
  222. margin-bottom: px2rpx(20);
  223. display: block;
  224. }
  225. .popup-form {
  226. background: var(--color-zinc-50);
  227. border-radius: px2rpx(12);
  228. padding: px2rpx(16);
  229. margin-bottom: px2rpx(24);
  230. .popup-row {
  231. display: flex;
  232. justify-content: space-between;
  233. margin-bottom: px2rpx(12);
  234. font-size: px2rpx(14);
  235. &:last-child {
  236. margin-bottom: 0;
  237. }
  238. .label {
  239. color: var(--color-zinc-500);
  240. }
  241. text:not(.label) {
  242. color: var(--bs-heading-color);
  243. font-weight: 500;
  244. }
  245. }
  246. }
  247. .popup-buttons {
  248. display: flex;
  249. gap: px2rpx(12);
  250. button {
  251. flex: 1;
  252. height: px2rpx(44);
  253. border-radius: px2rpx(10);
  254. font-size: px2rpx(15);
  255. font-weight: 600;
  256. display: flex;
  257. align-items: center;
  258. justify-content: center;
  259. border: none;
  260. &[type="primary"] {
  261. background-color: #cf1322;
  262. color: var(--bs-emphasis-color);
  263. }
  264. &:not([type="primary"]) {
  265. background: var(--color-zinc-100);
  266. color: var(--color-zinc-600);
  267. }
  268. }
  269. }
  270. .result-icon {
  271. display: flex;
  272. justify-content: center;
  273. margin-bottom: px2rpx(16);
  274. .iconfont {
  275. font-size: px2rpx(48);
  276. &.iconchenggong {
  277. color: #52c41a;
  278. }
  279. &.iconjingshi {
  280. color: #faad14;
  281. }
  282. &.icondengdai {
  283. color: var(--color-primary);
  284. animation: rotate 2s linear infinite;
  285. }
  286. }
  287. }
  288. .code-input {
  289. background: var(--color-zinc-100);
  290. border: none;
  291. border-radius: px2rpx(8);
  292. padding: px2rpx(12);
  293. margin-bottom: px2rpx(12);
  294. font-size: px2rpx(15);
  295. }
  296. .code-timer {
  297. color: var(--color-primary);
  298. font-size: px2rpx(13);
  299. text-align: right;
  300. margin-bottom: px2rpx(20);
  301. font-weight: 500;
  302. }
  303. }
  304. }
  305. @keyframes rotate {
  306. from {
  307. transform: rotate(0deg);
  308. }
  309. to {
  310. transform: rotate(360deg);
  311. }
  312. }
  313. }