goldPrice.less 542 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* mHome/pages/goldPrice/goldPrice.wxss */
  2. .container {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. .title {
  7. font-size: 20px;
  8. color: #333;
  9. margin: 20px;
  10. }
  11. .scroll-view {
  12. width: 90%;
  13. border-radius: 20px;
  14. height: 700px;
  15. .table_header, .table_content {
  16. height: 44px;
  17. display: flex;
  18. border-bottom: 1px solid #f0f0f0;
  19. align-items: center;
  20. }
  21. text {
  22. font-size: 26rpx;
  23. color: #333;
  24. width: 25%;
  25. text-align: center;
  26. }
  27. }
  28. }