index.less 703 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* components/diy-intro/index.wxss */
  2. page {
  3. background: #f6f6f6;
  4. }
  5. .intro_index {
  6. .intro {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-around;
  10. .intro_info {
  11. padding: 20rpx 0;
  12. text-align: center;
  13. .image {}
  14. .name {
  15. font-weight: 700;
  16. }
  17. .desc {}
  18. }
  19. }
  20. .slide_info {
  21. display: flex;
  22. white-space: nowrap;
  23. .intro_info {
  24. display: inline-block;
  25. text-align: center;
  26. .image {}
  27. .name {
  28. font-weight: 700;
  29. }
  30. .desc {}
  31. }
  32. }
  33. }