partner.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .wrapper {
  2. padding-top: 20rpx;
  3. background: #FFF;
  4. }
  5. .leaving-a-message {
  6. position: relative;
  7. left: 0;
  8. top: 0;
  9. }
  10. .leaving-a-message image {
  11. display: block;
  12. width: 40rpx;
  13. height: 50rpx;
  14. background: pink;
  15. }
  16. .leaving-a-message view {
  17. position: absolute;
  18. top: -9rpx;
  19. right: -9rpx;
  20. z-index: 1;
  21. min-width: 36rpx;
  22. min-height: 36rpx;
  23. border-radius: 18rpx;
  24. background: #FA5151;
  25. font-size: 24rpx;
  26. font-weight: 500;
  27. color: #FFF;
  28. line-height: 36rpx;
  29. text-align: center;
  30. }
  31. .main {
  32. width: 100%;
  33. padding: 22rpx 0 328rpx;
  34. }
  35. .list {
  36. width: 690rpx;
  37. //min-height: 328rpx;
  38. padding: 40rpx 20rpx 30rpx 34rpx;
  39. margin: 0 auto;
  40. border-radius: 24rpx;
  41. background: rgba(255, 255, 255, 1);
  42. box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.1);
  43. }
  44. .top {
  45. display: flex;
  46. }
  47. .photo-wrap {
  48. width: 100rpx;
  49. height: 100rpx;
  50. border-radius: 5rpx;
  51. overflow: hidden;
  52. image {
  53. display: block;
  54. width: 100%;
  55. height: 100%;
  56. background-color: pink;
  57. }
  58. }
  59. .name-wrap {
  60. display: flex;
  61. flex-direction: column;
  62. justify-content: space-between;
  63. width: 400rpx;
  64. min-height: 100rpx;
  65. padding: 0 22rpx;
  66. }
  67. .name {
  68. display: -webkit-box;
  69. width: 100%;
  70. line-height: 40rpx;
  71. font-size: 30rpx;
  72. color: rgba(51, 51, 51, 1);
  73. -webkit-box-orient: vertical;
  74. -webkit-line-clamp: 2;
  75. overflow: hidden;
  76. word-break: break-all;
  77. word-wrap: break-word;
  78. }
  79. .abstract {
  80. line-height: 34rpx;
  81. font-size: 24rpx;
  82. color: rgba(102, 102, 102, 1);
  83. }
  84. button.btn[type="default"] {
  85. width: 136rpx;
  86. height: 50rpx;
  87. border-radius: 16rpx;
  88. border: 2rpx solid rgba(107, 133, 89, 1);
  89. background-color: transparent;
  90. font-size: 24rpx;
  91. color: rgba(107, 133, 89, 1);
  92. }
  93. .phone {
  94. margin-top: 24rpx;
  95. }
  96. .wechat,
  97. .adress {
  98. margin-top: 10rpx;
  99. }
  100. .phone,
  101. .wechat,
  102. .adress {
  103. display: flex;
  104. .label,
  105. .value {
  106. line-height: 38rpx;
  107. font-size: 24rpx;
  108. color: rgba(153, 153, 153, 1);
  109. }
  110. }
  111. .label {
  112. white-space: nowrap;
  113. }
  114. .value {
  115. width: calc(100% - 72rpx);
  116. word-break: break-all;
  117. word-wrap: break-word;
  118. }