first.wxss 670 B

123456789101112131415161718192021222324252627282930
  1. /* StepPage/pages/first/first.wxss */
  2. .title{
  3. border-radius: 8pt;
  4. height: 30pt;
  5. line-height: 30pt;
  6. letter-spacing: 3pt;
  7. text-align: center;
  8. width: 90%;
  9. margin: 10pt auto;
  10. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  11. }
  12. .item_content{
  13. width: 90%;
  14. margin:0 auto;
  15. display: flex;
  16. flex-wrap: wrap;
  17. }
  18. .item_content_shop{
  19. background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
  20. width: 46%;
  21. text-align: center;
  22. height: 30pt;
  23. line-height: 30pt;
  24. border-radius: 10pt;
  25. margin: 5pt 0;
  26. }
  27. .item_content_shop:nth-child(2n+1){
  28. margin-right: 20pt;
  29. }