index.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @charset "UTF-8";
  2. /* 水平间距 */
  3. /* 水平间距 */
  4. .content {
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .content .one {
  9. width: 100%;
  10. }
  11. .content .two {
  12. padding: 1vw 2vw;
  13. background-color: var(--f8Color);
  14. }
  15. .content .two .grid {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. padding: 5px 0 0 0;
  20. margin: 5px;
  21. background-color: var(--mainColor);
  22. border-radius: 10px;
  23. }
  24. .content .two .grid .image {
  25. width: 25px;
  26. height: 25px;
  27. }
  28. .content .two .grid .text {
  29. font-size: var(--font14Size);
  30. margin-top: 5px;
  31. }
  32. .content .thr {
  33. display: flex;
  34. justify-content: space-between;
  35. flex-wrap: wrap;
  36. padding: 2vw;
  37. background-color: var(--f8Color);
  38. }
  39. .content .thr .list {
  40. position: relative;
  41. width: 43vw;
  42. padding: 2vw;
  43. margin: 0 0 2vw 0;
  44. border-radius: 10px;
  45. background-color: var(--mainColor);
  46. }
  47. .content .thr .list .image {
  48. width: 100%;
  49. height: 40vw;
  50. border-top-right-radius: 10px;
  51. border-top-left-radius: 10px;
  52. }
  53. .content .thr .list .name {
  54. font-size: var(--font14Size);
  55. }