外汇后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
619 B

1 year ago
  1. .home .box {
  2. width: 100%;
  3. margin-top: 20px;
  4. border-radius: 10px;
  5. padding: 20px;
  6. box-sizing: border-box;
  7. min-height: 280px;
  8. }
  9. .home .box .solid {
  10. min-height: 200px;
  11. width: 1px;
  12. }
  13. .home .box .img-box {
  14. width: 60px;
  15. height: 60px;
  16. background-color: #44D600;
  17. border-radius: 6px;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .home .box .img-box img {
  23. width: 30px;
  24. height: 30px;
  25. object-fit: cover;
  26. }
  27. .row {
  28. display: flex;
  29. }
  30. .row-items {
  31. display: flex;
  32. align-items: center;
  33. }
  34. .row-between {
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. }