123456789101112131415161718192021222324252627 |
- /* pages/detail/detail.wxss */
- @bg:white;
- .detail{
- .detail-shop-img{
- background-color: @bg;
- text-align: center;
- padding: 20rpx 0;
- }
- .detail-shop-detail{
- .value{font-size: 36rpx; color: #f03;font-weight: 600;}
- .detail-flex{
- display: flex;
- .detail-name{
- margin-right: 10rpx;
- font-size: 36rpx;
- }
- }
- .detail-text{
- text-align: justify;
- }
- }
- .detail-shop-detailimg{
- margin-top: 20rpx;
- background-color: @bg;
- padding: 15rpx;
- }
- }
|