goodsDetail.wxss 597 B

12345678910111213141516171819202122232425262728293031323334
  1. .gd-public{
  2. position:fixed;
  3. top:100rpx;
  4. z-index:10;
  5. width:204rpx;
  6. height:92rpx;
  7. text-align:center;
  8. line-height:92rpx;
  9. box-shadow: #aaa 0px 1px 5px 0px;
  10. background:#fff;
  11. }
  12. .gd-circle{
  13. display:inline-block;
  14. width:50rpx;
  15. height:50rpx;
  16. text-align:center;
  17. line-height:50rpx;
  18. border-radius:50%;
  19. border:2rpx solid #00af66;
  20. margin-right:20rpx;
  21. }
  22. .gd-left{
  23. left:0;
  24. border-radius:0 20rpx 20rpx 0;
  25. }
  26. .gd-right{
  27. right:0;
  28. border-radius:20rpx 0rpx 0rpx 20rpx;
  29. font-weight: bold;
  30. color:#000;
  31. }
  32. .gd-img{
  33. width:100%;
  34. }