partner.scss 2.0 KB

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