edit-bank.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. @import "../public-view.wxss";
  2. /* 原生组件会漂浮在非原生组件上 */
  3. .bottom-view, .bottom-view-X {
  4. position: relative;
  5. background-color: #F5F5F5;
  6. }
  7. .first-view {
  8. width: 100%;
  9. height: 96rpx;
  10. display: flex;
  11. }
  12. .first-view>text {
  13. font-family: PingFangSC-Regular;
  14. font-size: 26rpx;
  15. color: #999999;
  16. margin: 40rpx 0 0 30rpx;
  17. }
  18. .item {
  19. width: 100%;
  20. height: 100rpx;
  21. background-color: white;
  22. display: flex
  23. }
  24. .item>text:first-child,
  25. .textarea-item>text:first-child {
  26. font-family: PingFangSC-Regular;
  27. font-size: 32rpx;
  28. color: #333333;
  29. margin-left: 30rpx;
  30. }
  31. .item>text:first-child {
  32. line-height: 100rpx;
  33. }
  34. .item>text:nth-child(2),
  35. .item>text:nth-child(3) {
  36. font-family: PingFangSC-Regular;
  37. font-size: 32rpx;
  38. line-height: 100rpx;
  39. margin-left: auto;
  40. margin-right: 30rpx;
  41. }
  42. .item>text:nth-child(2) {
  43. color: #AAAAAA;
  44. }
  45. .item>text:nth-child(3) {
  46. margin-left: 14rpx;
  47. margin-right: 0;
  48. }
  49. .item>image:nth-child(2) {
  50. width: 44rpx;
  51. height: 44rpx;
  52. margin: auto 0 auto auto;
  53. }
  54. .item>image:nth-child(4) {
  55. width: 14rpx;
  56. height: 24rpx;
  57. margin: auto 30rpx auto 22rpx;
  58. }
  59. .input-view-placeholder {
  60. font-size: 32rpx;
  61. color: #cccccc;
  62. }
  63. input {
  64. font-size: 32rpx;
  65. color: #666666;
  66. line-height: 100rpx;
  67. text-align: right;
  68. height: 100rpx;
  69. width: 500rpx;
  70. margin-left: auto;
  71. margin-right: 30rpx;
  72. }
  73. .textarea-item {
  74. width: 100%;
  75. /* height: 100rpx; */
  76. background-color: white;
  77. display: flex
  78. }
  79. .textarea-item>text:first-child {
  80. margin-top: 34rpx;
  81. }
  82. textarea {
  83. font-size: 32rpx;
  84. color: #666666;
  85. line-height: 8rpx;
  86. text-align: right;
  87. /* height: 8rpx; */
  88. width: 500rpx;
  89. }
  90. .textarea-ios {
  91. margin: 20rpx 30rpx 20rpx auto;
  92. }
  93. .textare-android {
  94. margin: 34rpx 30rpx 34rpx auto;
  95. }
  96. .textarea-placeholder {
  97. margin: auto 0 auto -352rpx;
  98. }
  99. .textarea-placeholder>text {
  100. font-size: 32rpx;
  101. /* color: #cccccc; */
  102. text-align: right;
  103. margin-right: 30rpx;
  104. }