123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/details/details.wxss */
- .detail_pic {
- display: flex;
- justify-content: center;
- }
- /* 用户展示 */
- .seller {
- margin-top: 20rpx;
- width: 100%;
- }
- .seller_msg {
- position: relative;
- }
- .commodity_name {
- position: absolute;
- top: 10rpx;
- left: 160rpx;
- font-weight: 600;
- }
- .price {
- position: absolute;
- top: 55rpx;
- left: 160rpx;
- color: #a08016;
- font-weight: 600;
- }
- .seller_name {
- position: absolute;
- top: 90rpx;
- left: 160rpx;
- font-weight: 300;
- }
- /* 商品信息展示 */
- .sell_msg {
- margin-top: 15rpx;
- margin-left: 10rpx;
- }
- .sell_title {
- font-size: 35rpx;
- }
- .sell_detail {
- font-size: 25rpx;
- color: #808080;
- }
- /* 推荐商品 */
- .recommend {
- margin-top: 30rpx;
- }
|