dayRate.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* mHome/pages/dayRate/dayRate.wxss */
  2. .base-currency {
  3. display: grid;
  4. width: 100%;
  5. .title {
  6. display: flex;
  7. justify-content: space-between;
  8. background-color: #f0f0f0;
  9. text {
  10. font-size: 10px;
  11. color: #666;
  12. padding: 10px 10px;
  13. }
  14. }
  15. }
  16. .base-rate {
  17. display: flex;
  18. justify-content: space-between;
  19. align-content: center;
  20. align-items: center;
  21. width: 95%;
  22. padding-left: 10px;
  23. margin-top: 5px;
  24. text {
  25. width: 80px;
  26. font-size: 16px;
  27. color: #333;
  28. text-align: left;
  29. padding-left: 10px;
  30. margin-bottom: 10px;
  31. }
  32. }
  33. .input-rate {
  34. display: grid;
  35. width: 100%;
  36. text {
  37. font-size: 10px;
  38. color: #666;
  39. text-align: right;
  40. width: 95%;
  41. margin-top: 10px;
  42. }
  43. }
  44. .ex-currency .title {
  45. display: flex;
  46. justify-content: space-between;
  47. background-color: #f0f0f0;
  48. text {
  49. font-size: 10px;
  50. color: #666;
  51. padding: 10px 10px;
  52. }
  53. }
  54. .ex-rate {
  55. display: flex;
  56. justify-content: space-between;
  57. align-content: center;
  58. align-items: center;
  59. width: 95%;
  60. padding-left: 10px;
  61. margin-top: 5px;
  62. text {
  63. width: 60px;
  64. font-size: 16px;
  65. color: #333;
  66. text-align: left;
  67. padding-left: 10px;
  68. margin-bottom: 10px;
  69. }
  70. }
  71. .ex-result-rate {
  72. display: grid;
  73. width: 100%;
  74. text:nth-child(1) {
  75. font-size: 16px;
  76. color: #333;
  77. text-align: right;
  78. width: 95%;
  79. margin-top: 10px;
  80. }
  81. text:nth-child(2) {
  82. font-size: 10px;
  83. color: #666;
  84. text-align: right;
  85. width: 95%;
  86. margin-top: 10px;
  87. }
  88. }