bind-bank-card.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. page {
  2. background-color: #F2F2F2;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 20rpx 24rpx;
  9. box-sizing: border-box;
  10. }
  11. .module {
  12. width: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. background-color: #fff;
  16. border-radius: 16rpx;
  17. }
  18. .row {
  19. width: 100%;
  20. height: 130rpx;
  21. display: flex;
  22. align-items: center;
  23. border-bottom: 1px solid #F6F6F6;
  24. padding: 0 24rpx;
  25. box-sizing: border-box;
  26. }
  27. .row:last-child {
  28. border-bottom: none;
  29. }
  30. .label {
  31. width: 27%;
  32. color: #202020;
  33. font-size: 34rpx;
  34. }
  35. .input {
  36. flex: 1;
  37. font-size: 34rpx;
  38. color: #333333;
  39. }
  40. .placeholder {
  41. color: #A7A7A7;
  42. }
  43. .code {
  44. width: 134rpx;
  45. }
  46. .get-code {
  47. background-color: initial;
  48. color: #F2501A;
  49. font-size: 26rpx;
  50. margin: 0 12rpx;
  51. }
  52. .btn-box {
  53. width: 100%;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. padding: 100rpx 0;
  58. }
  59. .btn-box button {
  60. width: 100%;
  61. height: 86rpx;
  62. line-height: 86rpx;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. background-color: #E0E0E0;
  67. color: #777777;
  68. font-size: 30rpx;
  69. border-radius: 100rpx;
  70. }
  71. .active {
  72. color: #fff !important;
  73. background-color: #F2501A !important;
  74. }