index.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .index {
  2. width: 100%;
  3. padding-bottom: 40px;
  4. box-sizing: border-box;
  5. background-color: #f9f9f9;
  6. .seckill {
  7. width: 100%;
  8. height: 300px;
  9. }
  10. // 顶部固定
  11. .tabs {
  12. width: 100%;
  13. background: #fff;
  14. z-index: 100;
  15. &.fixed {
  16. position: fixed;
  17. top: 0;
  18. left: 0;
  19. }
  20. .at-tabs__item {
  21. color: #787878;
  22. }
  23. .at-tabs__item--active {
  24. color: #000000 !important;
  25. }
  26. .at-tabs__item-underline {
  27. background-color: #f3e801;
  28. }
  29. }
  30. scroll-view ::-webkit-scrollbar {
  31. appearance: none;
  32. color: transparent;
  33. display: none;
  34. width: 0;
  35. height: 0;
  36. }
  37. .product-list {
  38. background-color: #fff;
  39. margin:0 16px;
  40. margin-top: -196px;
  41. border-radius: 16px;
  42. overflow: hidden;
  43. z-index: 100;
  44. position: relative;
  45. .product-list-wrap{
  46. margin: 0;
  47. }
  48. }
  49. }
  50. .tabs-placeholder {
  51. height: 80px; // 设置为tabs的实际高度
  52. }