index.scss 653 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "@/assets/css/function.scss";
  2. @import "@/assets/css/mixin.scss";
  3. .index{
  4. .main{
  5. position: relative;
  6. height: halfH(1080 - 60);
  7. overflow: hidden;
  8. }
  9. .index-body{
  10. width: 100vw;
  11. display: flex;
  12. justify-content: space-between;
  13. padding-top: halfH(18);
  14. .index-body-cent{
  15. height: 200px;
  16. flex: 1;
  17. margin: 0 halfW(18);
  18. }
  19. .index-body-lf{
  20. width:halfW(356);
  21. margin-left: halfW(20);
  22. }
  23. .index-body-lr{
  24. width:halfW(356);
  25. margin-right: halfW(20);
  26. }
  27. .ibl-item{
  28. padding-bottom: halfH(18);
  29. &:last-child{
  30. padding-bottom: 0;
  31. }
  32. }
  33. }
  34. }