123456789101112131415161718192021222324252627282930313233 |
- /* pages/shop/shop.wxss */
- .shop_info{
- height: 194rpx;
- display: flex;
- }
- .shop_img{
- width: 218rpx;
- background-repeat: no-repeat;
- background-size: 180rpx 134rpx;
- background-position: 38rpx 30rpx;
- }
- .shop_detail{
- padding-left:15rpx;
- }
- .shop_detail_title{
- height: 48rpx;
- line-height: 48rpx;
- color: rgba(56, 55, 53, 1);
- font-size: 32rpx;
- margin-top:43rpx;
- }
- .shop_detail_address,.shop_detail_phone{
- height: 36rpx;
- line-height: 36rpx;
- color: rgba(104, 104, 104, 1);
- font-size: 24rpx;
- }
- .shop_detail_address image,.shop_detail_phone image{
- margin-top:8rpx;
- float: left;
- width:20rpx;
- height: 20rpx;
- }
|