home.wxss 717 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. page{
  2. height: 100%;
  3. background-color: #f8f8f8;
  4. }
  5. .block, .header{
  6. background-color: #fff;
  7. border-radius: 5px;
  8. margin: 0.4rem;
  9. padding: 1rem;
  10. }
  11. .block {
  12. height: 10rem;
  13. }
  14. .header {
  15. display: flex;
  16. align-items: center;
  17. height: 4rem
  18. }
  19. .header text {
  20. font-size: 20px;
  21. }
  22. .block .wel {
  23. font-size: 16px;
  24. }
  25. .block .title {
  26. font-weight: bold;
  27. border-bottom: 1px solid #eee;
  28. padding-bottom: 1rem;
  29. }
  30. .menu {
  31. display: flex;
  32. padding-top: 1rem;
  33. }
  34. .menu .menu-item {
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. width: 20%;
  39. margin-right: 1rem;
  40. }
  41. .menu-item text {
  42. font-family: Arial, Helvetica, sans-serif;
  43. font-size: 14px;
  44. }
  45. .menu .menu-item image {
  46. width: 2rem;
  47. }