pay.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/pay/pay.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. form{
  6. margin-top: 12px;
  7. display: block;
  8. padding-bottom: 70px;
  9. }
  10. .item{
  11. border-bottom: 1px solid #F2F3F4;
  12. padding: 15px;
  13. position: relative;
  14. background: #fff;
  15. }
  16. .item label{
  17. color: #222;
  18. display: inline-block;
  19. width: 60px;
  20. vertical-align: middle;
  21. text-align: right;
  22. font-weight: 800;
  23. }
  24. .item .blue{
  25. /* font-weight: 1000; */
  26. color: #358BFF;
  27. }
  28. .item input,.item picker{
  29. display: inline-block;
  30. width: 70%;
  31. border: none;
  32. padding-left: 20px;
  33. vertical-align: middle;
  34. }
  35. .item image{
  36. position: absolute;
  37. right: 12px;
  38. width: 16px;
  39. top:20px;
  40. }
  41. .fee{
  42. border: none;
  43. }
  44. .item text{
  45. padding-left: 20px;
  46. position: relative;
  47. top: 1px;
  48. color: #333;
  49. }
  50. .fee text{
  51. float: right;
  52. color: #E85546;
  53. font-weight: 600;
  54. }
  55. .bottom{
  56. position: fixed;
  57. width: 100%;
  58. padding: 16px;
  59. background: #fff;
  60. z-index: 99;
  61. color: #222;
  62. font-size: 32rpx;
  63. left: 0;
  64. bottom: 0;
  65. }
  66. .bottom text{
  67. color: #E85546;
  68. margin-left: 12px;
  69. font-weight: 600;
  70. }
  71. .bottom button{
  72. width:100px !important;
  73. height:40px;
  74. background:rgba(232,85,70,1);
  75. border-radius:20px;
  76. position: absolute;
  77. top: 0;
  78. bottom: 0;
  79. right: 16px;
  80. margin: auto;
  81. color: #fff;
  82. text-align: center;
  83. line-height: 40px;
  84. font-size: 32rpx;
  85. padding: 0;
  86. }