index.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .transfer-box {
  2. width: 100%;
  3. padding: 32rpx;
  4. box-sizing: border-box;
  5. .transfer-title {
  6. position: relative;
  7. width: 100%;
  8. height: 44rpx;
  9. view {
  10. font-size: 30rpx;
  11. &:nth-of-type(1) {
  12. color: #222222;
  13. font-weight: 600;
  14. position: absolute;
  15. left: 50%;
  16. transform: translateX(-50%);
  17. }
  18. &:nth-of-type(2) {
  19. position: absolute;
  20. right: 0;
  21. color: #999999;
  22. }
  23. }
  24. }
  25. .transfer-list {
  26. width: 100%;
  27. margin-top: 48rpx;
  28. @include flex(space-between, null, 16rpx);
  29. flex-wrap: wrap;
  30. .transfer-item {
  31. width: 218rpx;
  32. height: 160rpx;
  33. background-color: #ffebe3;
  34. border-radius: 16rpx;
  35. text-align: center;
  36. line-height: 160rpx;
  37. color: #ef530e;
  38. font-size: 48rpx;
  39. font-weight: 600;
  40. }
  41. .custom {
  42. font-size: 28rpx;
  43. line-height: normal;
  44. font-weight: normal;
  45. @include flex(center, column, null);
  46. input {
  47. width: 160rpx;
  48. height: 50rpx;
  49. border-bottom: 2rpx solid #ff986a;
  50. font-weight: 600;
  51. }
  52. }
  53. .act{
  54. background-color: #EF530E;
  55. color: #FFFFFF;
  56. }
  57. }
  58. .transfer-account {
  59. margin-top: 32rpx;
  60. .account-title {
  61. color: #000000;
  62. font-size: 28rpx;
  63. }
  64. .account-input {
  65. .query {
  66. color: #ef530e;
  67. font-size: 28rpx;
  68. }
  69. }
  70. .account-info{
  71. width: 100%;
  72. height: 148rpx;
  73. @include flex(flex-start,null,16rpx);
  74. .info-image{
  75. width: 80rpx;
  76. height: 80rpx;
  77. image{
  78. width: 100%;
  79. height: 100%;
  80. border-radius: 50%;
  81. }
  82. }
  83. .info-text{
  84. .name{
  85. font-size: 28rpx;
  86. color: rgba(0, 0, 0, 0.9);
  87. font-weight: 600;
  88. margin-bottom: 4rpx;
  89. }
  90. .text{
  91. @include flex(flex-start,null,32rpx);
  92. color: rgba(0, 0, 0, 0.4);
  93. font-size: 24rpx;
  94. }
  95. }
  96. }
  97. }
  98. .transfer-btn{
  99. @include flex(space-between,null,null);
  100. .available{
  101. color: rgba(0, 0, 0, 0.9);
  102. font-size: 32rpx;
  103. text{
  104. font-weight: 600;
  105. }
  106. }
  107. .btn{
  108. width: 362rpx;
  109. height: 96rpx;
  110. background-color: #EF530E;
  111. border-radius: 16rpx;
  112. color: #ffffff;
  113. font-size: 28rpx;
  114. text-align: center;
  115. line-height: 96rpx;
  116. }
  117. }
  118. }
  119. ::v-deep .tui-modal__container{
  120. height: unset;
  121. }