style.module.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .main {
  2. //padding: 0.08rem 0.12rem;
  3. //height: calc(calc(100dvh - $-header-height) - $-footer-height);
  4. //overflow-y: scroll;
  5. }
  6. .providerBox {
  7. display: grid;
  8. grid-template-columns: repeat(3, 1fr);
  9. gap: 5px;
  10. }
  11. .providerItem {
  12. aspect-ratio: 1/1;
  13. display: flex;
  14. align-items: center;
  15. background-color: #2b363f;
  16. justify-content: center;
  17. padding: 0.1rem 0;
  18. border-radius: 0.06rem;
  19. cursor: pointer;
  20. img {
  21. height: 50%;
  22. }
  23. }
  24. .sideTitle {
  25. display: flex;
  26. align-items: center;
  27. // padding: 0.06rem 0;
  28. .icon {
  29. margin-right: 0.06rem;
  30. color: #11dd68;
  31. }
  32. span {
  33. font-size: 0.15rem;
  34. // font-weight: 700;
  35. line-height: 1;
  36. position: relative;
  37. top: 0.01rem;
  38. }
  39. }
  40. .qianbao {
  41. display: grid;
  42. grid-template-columns: repeat(2, 1fr);
  43. gap: 5px;
  44. .qianbaoItem {
  45. cursor: pointer;
  46. display: flex;
  47. align-items: center;
  48. justify-content: flex-start;
  49. background-color: #2b363f;
  50. padding: 0.1rem 0 0.1rem 0.1rem;
  51. width: 100%;
  52. border-radius: 0.06rem;
  53. min-height: 0.54rem;
  54. color: #fff;
  55. img {
  56. width: 0.26rem;
  57. }
  58. }
  59. }
  60. .promotionBox {
  61. display: grid;
  62. grid-template-columns: repeat(2, 1fr);
  63. gap: 5px;
  64. .promotionItem {
  65. width: 100%;
  66. cursor: pointer;
  67. border-radius: 0.1rem;
  68. overflow: hidden;
  69. img {
  70. width: 100%;
  71. }
  72. }
  73. }
  74. .signalItem {
  75. display: flex;
  76. align-items: center;
  77. margin: 0.15rem 0 0 0;
  78. cursor: pointer;
  79. img {
  80. width: 0.26rem;
  81. margin-right: 0.1rem;
  82. }
  83. }
  84. .footer {
  85. button {
  86. width: 47%;
  87. height: 0.4rem;
  88. border-radius: 0.2rem;
  89. &:nth-child(1) {
  90. background: #11dd68;
  91. }
  92. &:nth-child(2) {
  93. background: #ebc71f;
  94. }
  95. }
  96. }