| 1 | .supportPlat { |
| 2 | :global { |
| 3 | .supportPlat-tip { |
| 4 | margin-bottom: 10px; |
| 5 | font-size: var(--fs-xs); |
| 6 | display: flex; |
| 7 | align-items: center; |
| 8 | &--line { |
| 9 | width: 100%; |
| 10 | height: 1px; |
| 11 | background: rgb(243, 243, 243); |
| 12 | } |
| 13 | &-text { |
| 14 | white-space: nowrap; |
| 15 | padding: 0 15px; |
| 16 | color: rgb(136, 145, 145); |
| 17 | } |
| 18 | } |
| 19 | .supportPlat-con { |
| 20 | //display: grid; |
| 21 | //grid-template-columns: repeat(8, 1fr); |
| 22 | gap: 20px; |
| 23 | display: flex; |
| 24 | justify-content: center; |
| 25 | align-items: center; |
| 26 | min-width: 340px; |
| 27 | img { |
| 28 | width: 25px; |
| 29 | } |
| 30 | } |
| 31 | .supportPlatBg-title { |
| 32 | display: none; |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | .supportPlatBg { |
| 38 | padding: 15px; |
| 39 | display: flex; |
| 40 | border-radius: 10px; |
| 41 | background: rgb(247, 250, 250); |
| 42 | :global { |
| 43 | .supportPlat-tip { |
| 44 | display: none; |
| 45 | } |
| 46 | .supportPlat-con { |
| 47 | display: grid; |
| 48 | gap: 10px; |
| 49 | grid-template-columns: repeat(7, 1fr); |
| 50 | } |
| 51 | .supportPlatBg-title { |
| 52 | display: block; |
| 53 | font-weight: 900; |
| 54 | font-size: var(--fs-xs); |
| 55 | color: rgb(157, 164, 164); |
| 56 | margin: 3px 10px 0 0; |
| 57 | white-space: nowrap; |
| 58 | } |
| 59 | } |
| 60 | } |