123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- @import "./allGoods.skeleton.wxss";
- page {
- background: #F7F7F7;
- }
- .pageNavBox{
- height: 80rpx;
- width: 100%;
- }
- .pageNavFixed{
- position: fixed;
- left: 0;
- right: 0;
- background: #FFFFFF;
- height: 80rpx;
- z-index: 99;
- }
- .navList{
- height: 100%;
- }
- .navItem{
- /* padding-right: 28rpx; */
- /* padding-left: 32rpx; */
- height: 100%;
- flex: 1;
- align-items: center;
- display: flex;
- justify-content: center;
- }
- .navItem .text{
- font-size: 28rpx;
- color: #5F6268;
- }
- .navItem.sel .text{
- color: #DF3120;
- }
- .iconBox{
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-left: 8rpx;
- }
- .iconBox image{
- width: 12rpx;
- height: 12rpx;
- }
- .iconBox image.t{
- margin-bottom: 4rpx;
- }
- .pageMian{
- padding: 24rpx 32rpx;
- }
- .goodsList{
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 2rpx 24rpx 0 24rpx;
- }
- .goodsItem{
- margin-top: 22rpx;
- position: relative;
- }
- .goodsImgBox{
- width: 200rpx;
- height: 200rpx;
- background: #F5F5F5;
- border-radius: 16rpx;
- overflow: hidden;
- }
- .goodsImgBox image{
- width: 100%;
- height: 100%;
- }
- .goodsInfo{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- flex: 1;
- margin-left: 20rpx;
- /* height: 224rpx; */
- min-height: 224rpx;
- padding-bottom: 24rpx;
- position: relative;
- }
- .goodsInfo::after{
- content: '';
- position: absolute;
- right: 0;
- bottom: 0;
- background: #E0E1E5;
- width: 100%;
- height: 2rpx;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- z-index: 20;
- }
- .goodsList .goodsItem:last-child .goodsInfo::after{
- display: none;
- }
- .goodsName{
- font-size: 28rpx;
- color: #161719;
- }
- .goodsNameText{
- display: inline;
- }
- .goodsName .icon{
- vertical-align: middle;
- width: 88rpx;
- height: 36rpx;
- margin-right: 8rpx;
- position: relative;
- top: -2rpx;
- }
- .goodsName .goodsMyZy{
- width: 116rpx;
- }
- .goodsNumber{
- font-size: 24rpx;
- color: #909297;
- padding-top: 16rpx;
- }
- .goodsNumber.member{
- padding-top: 4rpx !important;
- }
- .priceBox{
- font-size: 24rpx;
- color: #E73E2D;
- display: flex;
- align-items: baseline;
- }
- .priceBox .pra{
- font-weight: bold;
- font-size: 36rpx;
- margin-left: 4rpx;
- }
- .linkprice{
- font-size: 20rpx;
- color: #909297;
- margin-right: 2rpx;
- padding-top: 12rpx;
- margin-left: 8rpx;
- }
- .linkprice .lPr{
- text-decoration: line-through;
- font-size: 22rpx;
- }
- .addCartBox{
- position: absolute;
- z-index: 10;
- right: 0;
- bottom: 0;
- padding-left: 26rpx;
- padding-top: 26rpx;
- padding-bottom: 24rpx;
- font-size: 0;
- }
- .addCartBox .icon{
- width: 56rpx;
- height: 56rpx;
- }
- .priceContent{
- padding-top: 8rpx;
- }
- .robBox{
- position: absolute;
- z-index: 10;
- right: 0;
- bottom: 0;
- padding-left: 26rpx;
- padding-top: 26rpx;
- padding-bottom: 24rpx;
- }
- .robBox .icon{
- width: 92rpx;
- height: 92rpx;
- }
|