index.module.less 579 B

1234567891011121314151617181920212223242526272829303132
  1. .container {
  2. width: 453px;
  3. height: 302px;
  4. background: url('../../image/tips-bg.png') top center no-repeat #fff;
  5. background-size: contain;
  6. border-radius: 20px;
  7. display: flex;
  8. flex-direction: column;
  9. .title {
  10. font-weight: 600;
  11. font-size: 16px;
  12. color: #131415;
  13. line-height: 22px;
  14. text-align: center;
  15. padding: 12px 0;
  16. flex-shrink: 0;
  17. }
  18. .content {
  19. flex: 1;
  20. overflow-x: hidden;
  21. overflow-y: auto;
  22. padding: 0 20px;
  23. margin-bottom: 16px;
  24. font-size: 14px;
  25. &::-webkit-scrollbar {
  26. display: none;
  27. }
  28. }
  29. }