details.wxss 859 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/details/details.wxss */
  2. .detail_pic {
  3. display: flex;
  4. justify-content: center;
  5. }
  6. /* 用户展示 */
  7. .seller {
  8. margin-top: 20rpx;
  9. width: 100%;
  10. }
  11. .seller_msg {
  12. position: relative;
  13. }
  14. .commodity_name {
  15. position: absolute;
  16. top: 10rpx;
  17. left: 160rpx;
  18. font-weight: 600;
  19. width: 300rpx;
  20. overflow: hidden;
  21. white-space: nowrap;
  22. text-overflow: ellipsis;
  23. }
  24. .price {
  25. position: absolute;
  26. top: 55rpx;
  27. left: 160rpx;
  28. color: #a08016;
  29. font-weight: 600;
  30. }
  31. .seller_name {
  32. position: absolute;
  33. top: 90rpx;
  34. left: 160rpx;
  35. font-weight: 300;
  36. }
  37. /* 商品信息展示 */
  38. .sell_msg {
  39. margin-top: 15rpx;
  40. margin-left: 10rpx;
  41. }
  42. .sell_title {
  43. font-size: 35rpx;
  44. }
  45. .sell_detail {
  46. font-size: 25rpx;
  47. color: #808080;
  48. }
  49. /* 推荐商品 */
  50. .recommend {
  51. margin-top: 30rpx;
  52. }