index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .item-info {
  2. width: 690rpx;
  3. min-height: 222rpx;
  4. padding: 32rpx 16rpx 28rpx 38rpx;
  5. margin: 0 auto 20rpx;
  6. border-radius: 24rpx;
  7. background: rgba(255, 255, 255, 1);
  8. box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.1);
  9. }
  10. .item-info .top {
  11. display: flex;
  12. justify-content: space-between;
  13. }
  14. .logo {
  15. width: 100rpx;
  16. height: 100rpx;
  17. border-radius: 5rpx;
  18. overflow: hidden;
  19. }
  20. .logo image {
  21. display: block;
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .info {
  26. width: 400rpx;
  27. padding: 0 20rpx;
  28. }
  29. .info .name {
  30. line-height: 44rpx;
  31. font-size: 30rpx;
  32. color: rgba(51, 51, 51, 1);
  33. word-break: break-all;
  34. word-wrap: break-word;
  35. }
  36. .info .goods-count {
  37. margin-top: 22rpx;
  38. font-size: 24rpx;
  39. line-height: 34rpx;
  40. color: rgba(102, 102, 102, 1);
  41. }
  42. .top .btn-contact {
  43. width: 136rpx;
  44. height: 50rpx;
  45. border-radius: 16rpx;
  46. border: 2rpx solid rgba(145, 179, 121, 1);
  47. line-height: 46rpx;
  48. font-size: 24rpx;
  49. color: rgba(145, 179, 121, 1);
  50. background-color: transparent;
  51. }
  52. .item-info .bottom {
  53. display: flex;
  54. align-items: center;
  55. margin-top: 24rpx;
  56. }
  57. .item-info .bottom .tel,
  58. .item-info .bottom .wechat {
  59. font-size: 24rpx;
  60. color: rgba(153, 153, 153, 1);
  61. background-color: transparent;
  62. white-space: nowrap;
  63. }
  64. .item-info .bottom .tel {
  65. width: 228rpx;
  66. }
  67. .item-info .bottom .wechat {
  68. width: calc(100% - 228rpx);
  69. padding-left: 84rpx;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. }