partner.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .wrapper {
  2. padding-top: 20rpx;
  3. background: #FFF;
  4. }
  5. .leaving-a-message {
  6. position: relative;
  7. left: 0;
  8. top: 0;
  9. margin-left: 8rpx;
  10. }
  11. .leaving-a-message image {
  12. display: block;
  13. width: 40rpx;
  14. height: 50rpx;
  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;
  34. }
  35. .list {
  36. width: 690rpx;
  37. //min-height: 328rpx;
  38. padding: 40rpx 20rpx 30rpx 34rpx;
  39. margin: 0 auto 20rpx;
  40. border-radius: 24rpx;
  41. background: rgba(255, 255, 255, 1);
  42. box-shadow: 0 4rpx 8rpx 4rpx 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. }
  57. }
  58. .name-wrap {
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: space-between;
  62. width: 400rpx;
  63. min-height: 100rpx;
  64. padding: 0 22rpx;
  65. }
  66. .name {
  67. display: -webkit-box;
  68. width: 100%;
  69. line-height: 40rpx;
  70. font-size: 30rpx;
  71. color: rgba(51, 51, 51, 1);
  72. -webkit-box-orient: vertical;
  73. -webkit-line-clamp: 2;
  74. overflow: hidden;
  75. word-break: break-all;
  76. word-wrap: break-word;
  77. }
  78. .abstract {
  79. line-height: 34rpx;
  80. font-size: 24rpx;
  81. color: rgba(102, 102, 102, 1);
  82. }
  83. button.btn[type="default"] {
  84. width: 136rpx;
  85. height: 50rpx;
  86. border-radius: 16rpx;
  87. border: 2rpx solid rgba(107, 133, 89, 1);
  88. background-color: transparent;
  89. font-size: 24rpx;
  90. color: rgba(107, 133, 89, 1);
  91. }
  92. .phone {
  93. margin-top: 24rpx;
  94. }
  95. .wechat,
  96. .adress {
  97. margin-top: 10rpx;
  98. }
  99. .phone,
  100. .wechat,
  101. .adress {
  102. display: flex;
  103. .label,
  104. .value {
  105. line-height: 38rpx;
  106. font-size: 24rpx;
  107. color: rgba(153, 153, 153, 1);
  108. }
  109. }
  110. .label {
  111. white-space: nowrap;
  112. }
  113. .value {
  114. width: calc(100% - 72rpx);
  115. word-break: break-all;
  116. word-wrap: break-word;
  117. }