index.wxss 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .title {
  2. font-weight: Medium;
  3. font-size: 36rpx;
  4. color: #222222;
  5. }
  6. .text {
  7. font-size: 30rpx;
  8. }
  9. .text-small {
  10. font-size: 24rpx;
  11. }
  12. .flex-column {
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .shop-detail .detail-bottom {
  17. display: flex;
  18. justify-content: space-between;
  19. }
  20. .shop-detail .detail-bottom .detail-bottom-left {
  21. flex: 1;
  22. }
  23. .shop-detail .vr_btn {
  24. margin-top: -70rpx;
  25. width: 140rpx;
  26. height: 70rpx;
  27. border-radius: 40rpx;
  28. text-align: center;
  29. line-height: 70rpx;
  30. background-color: #46a9a4;
  31. float: right;
  32. }
  33. .shop-detail .detail-bottom .detail-bottom-left .shop-address {
  34. width: 100%;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. display: -webkit-box;
  38. -webkit-line-clamp: 3;
  39. -webkit-box-orient: vertical;
  40. }
  41. .shop-detail .detail-bottom .detail-bottom-right {
  42. display: flex;
  43. align-items: center;
  44. }
  45. .shop-detail .detail-bottom .tool-box {
  46. padding: 20rpx;
  47. }
  48. .shop-detail .shop-rate {
  49. margin: 10rpx 0;
  50. }
  51. .shop-detail .shop-rate .shop-rate-text {
  52. color: #FF8936;
  53. }