alipay.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. .box{
  2. width:100%;
  3. }
  4. .header{
  5. width: 100%;
  6. }
  7. .header img{
  8. width:100%;
  9. }
  10. .title{
  11. width:100%;
  12. text-align: center;
  13. color:rgb(0,161,236);
  14. font-size: 1.5rem;
  15. margin-top: 3vh;
  16. font-weight: bold;
  17. }
  18. .moneyDiv{
  19. border-bottom: 0.1vw black solid;
  20. margin: 3.5vh auto;
  21. width: 85%;
  22. }
  23. .money{
  24. margin-top: 3vh;
  25. }
  26. .amount{
  27. color:#6CA6CD;
  28. margin-left:1vw;
  29. }
  30. .type{
  31. float:left;
  32. font-size: 2rem;
  33. }
  34. .moneyInput{
  35. height: 3rem;
  36. }
  37. .moneyInput input{
  38. border:0;
  39. width: 85%;
  40. height: 2.5rem;
  41. font-size: 2rem;
  42. }
  43. .footer{
  44. width:100%;
  45. height:30%;
  46. position:fixed;
  47. bottom:0;
  48. left:0;
  49. }
  50. .firstSpan{
  51. width:100%;
  52. }
  53. .firstNumber{
  54. background:rgb(245,245,245);
  55. width:24.8%;
  56. height:19.2%;
  57. text-align: center;
  58. padding-top: 3.2%;
  59. float:left;
  60. border: 0.1vw grey solid;
  61. }
  62. .Number{
  63. background:rgb(245,245,245);
  64. width:24.9%;
  65. height:19.2%;
  66. text-align: center;
  67. padding-top: 3.2%;
  68. float:left;
  69. border-right: 0.1vw grey solid;
  70. border-bottom:0.1vw grey solid;
  71. border-top:0.1vw grey solid;
  72. }
  73. .secondSpan{
  74. width:100%;
  75. }
  76. .secondNumFirst{
  77. background: rgb(245,245,245);
  78. width: 24.9%;
  79. height: 19.2%;
  80. text-align: center;
  81. padding-top: 3.2%;
  82. float: left;
  83. border-right: 0.1vw grey solid;
  84. border-bottom: 0.1vw grey solid;
  85. border-left: 0.1vw grey solid;
  86. }
  87. .secondNum{
  88. background: rgb(245,245,245);
  89. width: 24.8%;
  90. height: 19.2%;
  91. text-align: center;
  92. padding-top: 3.2%;
  93. float: left;
  94. border-right: 0.1vw grey solid;
  95. border-bottom: 0.1vw grey solid;
  96. }
  97. .thirdSpan{
  98. width:100%;
  99. }
  100. .fourthSpan{
  101. width:100%;
  102. }
  103. .sub{
  104. background: rgb(86,171,228);
  105. width: 25%;
  106. height: 19.2%;
  107. text-align: center;
  108. padding-top: 3.2%;
  109. float: left;
  110. border-right: 0.1vw grey solid;
  111. border-bottom: 0.1vw rgb(86,171,228) solid;
  112. color:white;
  113. }
  114. .zero{
  115. background: rgb(245,245,245);
  116. width: 49.8%;
  117. height: 19.2%;
  118. text-align: center;
  119. padding-top: 3.2%;
  120. float: left;
  121. border-left: 0.1vw grey solid;
  122. border-right: 0.1vw grey solid;
  123. border-bottom: 0.1vw grey solid;
  124. }
  125. .bottomsub{
  126. background: rgb(86,171,228);
  127. width: 25%;
  128. height: 19.2%;
  129. text-align: center;
  130. padding-top: 3.2%;
  131. float: left;
  132. border-right: 0.1vw grey solid;
  133. border-bottom: 0.1vw grey solid;
  134. }
  135. @media screen and (max-width:320px){
  136. .header>img{
  137. width: 100%;
  138. }
  139. }
  140. @media screen and (min-width:568px){
  141. .header>img{
  142. height:0;
  143. }
  144. }
  145. input { pointer-events: none; }