12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .index {
- width: 100%;
- padding-bottom: 40px;
- box-sizing: border-box;
- background-color: #f9f9f9;
- .seckill {
- width: 100%;
- height: 300px;
- }
- // 顶部固定
- .tabs {
- width: 100%;
- background: #fff;
- z-index: 100;
-
- &.fixed {
- position: fixed;
- top: 0;
- left: 0;
- }
- .at-tabs__item {
- color: #787878;
- }
- .at-tabs__item--active {
- color: #000000 !important;
- }
- .at-tabs__item-underline {
- background-color: #f3e801;
- }
- }
- scroll-view ::-webkit-scrollbar {
- appearance: none;
- color: transparent;
- display: none;
- width: 0;
- height: 0;
- }
- .product-list {
- background-color: #fff;
- margin:0 16px;
- margin-top: -196px;
- border-radius: 16px;
- overflow: hidden;
- z-index: 100;
- position: relative;
- .product-list-wrap{
- margin: 0;
- }
- }
- }
- .tabs-placeholder {
- height: 80px; // 设置为tabs的实际高度
- }
|