12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .container {
- background: #fff;
- }
- .cate-nav {
- position: fixed;
- left: 0;
- top: 0;
- z-index: 1000;
- }
- .cate-nav-body {
- height: 84rpx;
- white-space: nowrap;
- background: #fff;
- border-top: 1px solid rgba(0, 0, 0, 0.15);
- overflow: hidden;
- }
- .cate-nav .item {
- display: inline-block;
- height: 84rpx;
- min-width: 130rpx;
- padding: 0 15rpx;
- }
- .cate-nav .item .name {
- display: block;
- height: 84rpx;
- padding: 0 20rpx;
- line-height: 84rpx;
- color: #333;
- font-size: 30rpx;
- width: auto;
- }
- .cate-nav .item.active .name {
- color: #a78845;
- border-bottom: 2px solid #a78845;
- }
- .cate-item {
- margin-top: 94rpx;
- height: auto;
- overflow: hidden;
- }
- .cate-item .h {
- height: 145rpx;
- width: 750rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .cate-item .h .name {
- display: block;
- height: 35rpx;
- margin-bottom: 18rpx;
- font-size: 30rpx;
- color: #333;
- }
- .cate-item .h .desc {
- display: block;
- height: 24rpx;
- font-size: 24rpx;
- color: #999;
- }
|