index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content {
  9. background-color: var(--rgb000);
  10. padding: 0 2vw;
  11. overflow-y: auto;
  12. }
  13. .content .one {
  14. margin: 10px 0;
  15. }
  16. .content .one .money_scroll_view {
  17. white-space: nowrap;
  18. }
  19. .content .one .money_scroll_view .list {
  20. display: inline-block;
  21. margin: 0 10px 0 0;
  22. background-color: var(--rgbfff);
  23. padding: 8px;
  24. border-radius: 5px;
  25. text-align: center;
  26. }
  27. .content .one .money_scroll_view .list .title {
  28. font-size: 14px;
  29. font-weight: bold;
  30. margin: 0 0 10px 0;
  31. }
  32. .content .one .money_scroll_view .list .money {
  33. font-size: 16px;
  34. font-weight: bold;
  35. color: var(--rgbffd);
  36. margin: 0 0 10px 0;
  37. }
  38. .content .one .money_scroll_view .list .money .fh {
  39. font-size: 12px;
  40. padding: 0 5px 0 0;
  41. }
  42. .content .one .money_scroll_view .list .other {
  43. font-size: 12px;
  44. font-weight: bold;
  45. }
  46. .content .one .money_scroll_view .list:last-child {
  47. margin: 0;
  48. }
  49. .content .one .money_scroll_view .active {
  50. background-color: var(--rgbfa4);
  51. }
  52. .content .two .two_1 {
  53. margin: 0 0 15px 0;
  54. }
  55. .content .two .two_1 button {
  56. border-radius: 25px;
  57. color: var(--rgbffd);
  58. font-family: monospace;
  59. font-weight: bold;
  60. }
  61. .content .agree {
  62. text-align: center;
  63. font-size: 12px;
  64. margin: 0 0 2vw 0;
  65. color: var(--rgbfff);
  66. }