1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* 商品模块 */
- $shop-size:150upx;
- .shop-item{
- height: $shop-size;
- }
- /* 商品模块 */
- /* 商品图片 */
- .layout-shop-image{
- width: $shop-size;
- height: $shop-size;
- }
- .layout-shop-background{
- width: 100%;
- height: 100%;
- z-index: 999;
- }
- .shop-logo-warp{
- left: 5upx;
- top: 0;
- font-size: 20upx;
- line-height: 20upx;
- color: #967010;
- z-index: 9999;
- }
- .shop-logo-name{
- transform: scale(0.45) translate(-70%,0%);
- }
- .layout-shop-logo{
- width:18upx;
- height:18upx;
- margin-right:8upx;
- }
- .shop-image{
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- /* 商品图片 */
- /* 商品内容 */
- .shop-item-content{
- margin-left: 20upx;
- font-size: 28upx;
- color: #333;
- line-height: 38upx;
- font-weight: 500;
- }
- .shop-item-title{
- max-height: 76upx;
- }
- .shop-price-group{
- font-size: 32upx;
- color: #333;
- line-height: 40upx;
- }
- .shop-price-em{
- font-size: 24upx;
- margin-right: 6upx;
- }
- .shop-close-container{
- color: #999999;
- font-size: 28upx;
- line-height: 32upx;
- font-weight: 400;
- }
- .shop-close{
- font-size: 22upx;
- font-weight: bold;
- position: relative;
- top: 1upx;
- }
- /* 商品内容 */
- /* 购物车特殊配置 */
- .layout-shop-item-car .shop-price-group{
- color: #FE4545;
- }
- /* 购物车特殊配置 */
|