style.scss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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: var(--color-navy-700);
  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: var(--bs-emphasis-color);
  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. border-radius: px2rpx(4);
  122. width: px2rpx(18);
  123. height: px2rpx(18);
  124. }
  125. text {
  126. font-size: px2rpx(13);
  127. color: var(--color-zinc-500);
  128. line-height: 1.5;
  129. }
  130. }
  131. }
  132. .step3-attention {
  133. // background: var(--color-error-50, #fff1f0);
  134. border-radius: px2rpx(12);
  135. margin-bottom: px2rpx(20);
  136. .tips {
  137. line-height: 1.8;
  138. font-size: px2rpx(12);
  139. color: #909399;
  140. background-color: #f9f9f9;
  141. padding: px2rpx(12);
  142. border-radius: px2rpx(4);
  143. border-left: px2rpx(2) solid #cf1322;
  144. .title {
  145. font-weight: 600;
  146. margin-bottom: px2rpx(6);
  147. color: #606266;
  148. }
  149. }
  150. .attention {
  151. font-size: px2rpx(14);
  152. // color: var(--color-error-600, #cf1322);
  153. line-height: 1.6;
  154. }
  155. .btn-bottom {
  156. margin-top: px2rpx(20);
  157. display: flex;
  158. justify-content: center;
  159. .btn {
  160. background: var(--color-error-600, #cf1322);
  161. color: var(--bs-emphasis-color);
  162. padding: px2rpx(10) px2rpx(48);
  163. border-radius: px2rpx(24);
  164. font-size: px2rpx(15);
  165. font-weight: 700;
  166. box-shadow: 0 px2rpx(4) px2rpx(10) rgba(207, 19, 34, 0.2);
  167. transition: all 0.2s;
  168. &:active {
  169. transform: scale(0.96);
  170. opacity: 0.8;
  171. }
  172. }
  173. }
  174. }
  175. :deep(.base-info-form) {
  176. .uni-row1 {
  177. .uni-col {
  178. padding: 0 px2rpx(10) !important;
  179. }
  180. .uni-forms-item {
  181. min-height: px2rpx(79);
  182. margin-bottom: px2rpx(10);
  183. }
  184. .uni-select,
  185. .uni-combox,
  186. .uni-easyinput__content,
  187. .uni-date-editor--x {
  188. border: none !important;
  189. background-color: var(--color-zinc-100) !important;
  190. border-radius: px2rpx(8) !important;
  191. }
  192. .uni-date-x {
  193. border: none !important;
  194. background-color: rgba(195, 195, 195, 0) !important;
  195. }
  196. .uni-easyinput__content-input {
  197. height: px2rpx(35) !important;
  198. }
  199. }
  200. }
  201. /* 弹窗样式美化 */
  202. :deep(.uni-popup__wrapper) {
  203. .popup-content {
  204. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  205. border-radius: px2rpx(20);
  206. padding: px2rpx(24);
  207. width: px2rpx(320);
  208. .popup-title {
  209. font-size: px2rpx(18);
  210. font-weight: 700;
  211. text-align: center;
  212. margin-bottom: px2rpx(20);
  213. color: var(--bs-heading-color);
  214. display: block;
  215. }
  216. .popup-text {
  217. font-size: px2rpx(14);
  218. line-height: 1.6;
  219. color: var(--color-zinc-600);
  220. margin-bottom: px2rpx(20);
  221. display: block;
  222. }
  223. .popup-form {
  224. background: var(--color-zinc-50);
  225. border-radius: px2rpx(12);
  226. padding: px2rpx(16);
  227. margin-bottom: px2rpx(24);
  228. .popup-row {
  229. display: flex;
  230. justify-content: space-between;
  231. margin-bottom: px2rpx(12);
  232. font-size: px2rpx(14);
  233. &:last-child {
  234. margin-bottom: 0;
  235. }
  236. .label {
  237. color: var(--color-zinc-500);
  238. }
  239. text:not(.label) {
  240. color: var(--bs-heading-color);
  241. font-weight: 500;
  242. }
  243. }
  244. }
  245. .popup-buttons {
  246. display: flex;
  247. gap: px2rpx(12);
  248. button {
  249. flex: 1;
  250. height: px2rpx(44);
  251. border-radius: px2rpx(10);
  252. font-size: px2rpx(15);
  253. font-weight: 600;
  254. display: flex;
  255. align-items: center;
  256. justify-content: center;
  257. border: none;
  258. &[type="primary"] {
  259. background-color: #cf1322;
  260. color: var(--bs-emphasis-color);
  261. }
  262. &:not([type="primary"]) {
  263. background: var(--color-zinc-100);
  264. color: var(--color-zinc-600);
  265. }
  266. }
  267. }
  268. .result-icon {
  269. display: flex;
  270. justify-content: center;
  271. margin-bottom: px2rpx(16);
  272. .iconfont {
  273. font-size: px2rpx(48);
  274. &.iconchenggong {
  275. color: #52c41a;
  276. }
  277. &.iconjingshi {
  278. color: #faad14;
  279. }
  280. &.icondengdai {
  281. color: var(--color-primary);
  282. animation: rotate 2s linear infinite;
  283. }
  284. }
  285. }
  286. .code-input {
  287. background: var(--color-zinc-100);
  288. border: none;
  289. border-radius: px2rpx(8);
  290. padding: px2rpx(12);
  291. margin-bottom: px2rpx(12);
  292. font-size: px2rpx(15);
  293. }
  294. .code-timer {
  295. color: var(--color-primary);
  296. font-size: px2rpx(13);
  297. text-align: right;
  298. margin-bottom: px2rpx(20);
  299. font-weight: 500;
  300. }
  301. }
  302. }
  303. @keyframes rotate {
  304. from {
  305. transform: rotate(0deg);
  306. }
  307. to {
  308. transform: rotate(360deg);
  309. }
  310. }
  311. }