exchangeRate.less 1.5 KB

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