edit-bank.css 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. }
  7. .content {
  8. height: 100%;
  9. }
  10. .content > view {
  11. box-sizing: border-box;
  12. padding: 0 32rpx;
  13. }
  14. .content > view:first-child {
  15. font-size: 26rpx;
  16. color: #999999;
  17. height: 90rpx;
  18. line-height: 90rpx;
  19. }
  20. .content > .item {
  21. height: 100rpx;
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. background: #ffffff;
  26. }
  27. .content>.line{
  28. background: #ffffff;
  29. height: 2rpx;
  30. padding: 0;
  31. }
  32. .content>.line>view{
  33. background: #eeeeee;
  34. height: 100%;
  35. margin-left: 32rpx;
  36. }
  37. .content > .btn {
  38. margin: 0 20rpx;
  39. height: 90rpx;
  40. background: #3296FB;
  41. border-radius: 45rpx;
  42. text-align: center;
  43. line-height: 90rpx;
  44. color: #ffffff;
  45. }
  46. input{
  47. text-align: right;
  48. color: #666666;
  49. }
  50. .arrow{
  51. display: flex;
  52. align-items: center;
  53. }
  54. .arrow>image{
  55. width: 14rpx;
  56. height: 24rpx;
  57. margin-left: 20rpx;
  58. }