1234567891011121314151617181920212223 |
- /*布局*/
- .cate-content {display: flex;flex-direction: row;font-size: 16px;position: fixed;top:55px;bottom:1rpx;width: 100%;background: #FFF}
- .category-tab {flex-direction: column;display: flex;width: 200rpx;color: #444;height: 100%;background: #f8f8f8;}
- .category-content {display: flex;flex-direction: column;width: 550rpx;height: 100%;overflow: hidden;padding:10rpx;}
- /*左导航*/
- .type-nav {position: relative;height: 90rpx;line-height: 90rpx;text-align: center;z-index: 10;background: #f8f8f8;display: block;font-size:32rpx;}
- .type-nav.selected {background: #fff;color: #ff495e;border-right: none;font-weight: 600}
- /*右导航*/
- .weui-grids {border: none}
- .category-content .weui-grid {border: none;padding:10px;}
- .category-content .weui-grid .weui-grid__icon{width: 100%;}
- .category-content .weui-grid .cate-text{font-size:28rpx;color: #686868;}
- /* 产品 */
- .box{display: flex;padding:10rpx;margin:10rpx;background: #fff;margin-bottom:5px;box-sizing:border-box;}
- .box .box-img{width:180rpx;}
- .box .box-img image{width: 180rpx;height: 180rpx;vertical-align: middle;border-radius: 5px;}
- .box .box-flex{flex: 1;padding:0px 8rpx;}
- .box .box-flex .name{line-height:40rpx;font-size: 28rpx;height:80rpx;text-overflow: ellipsis;overflow: hidden;}
- .box .disc{color: #777;font-size: 26rpx;line-height:35rpx;}
- .box .bar{margin-top:5px;display: flex;}
- .box .bar .sell_price{flex: 1;color: #fe3939;font-size: 18px;}
- .box .market_price{color:#999;font-size: 12px;text-decoration:line-through}
- .box .bar .btn{width: 80px;height: 30px;font-size: 14px;border-radius: 0.3rem;border: 1px solid #fe3939;text-align: center;color: #333;line-height: 30px}
|