recommend.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /* pages/recommend/recommend.wxss */
  2. .re_service{
  3. width: 750rpx;
  4. height: 50rpx;
  5. line-height: 50rpx;
  6. text-align: center;
  7. font-size: 34rpx;
  8. padding:30rpx 0;
  9. background: #FFF;
  10. }
  11. .re_service text{
  12. font-size: 44rpx;
  13. font-weight: 700;
  14. color: red;
  15. text-decoration:underline;
  16. }
  17. .card{
  18. width: 690rpx;
  19. height: 1000rpx;
  20. margin: 30rpx;
  21. position: relative;
  22. }
  23. .card_img{
  24. position: absolute;
  25. left: 0;
  26. top: 0;
  27. width: 690rpx;
  28. max-height: 1000rpx;
  29. z-index: 1;
  30. }
  31. .verify{
  32. position: absolute;
  33. top: 20rpx;
  34. left: 0;
  35. width: auto;
  36. height: 36rpx;
  37. line-height: 36rpx;
  38. padding: 10rpx 20rpx;
  39. color: #FFF;
  40. background: #0FBD0D;
  41. z-index: 100;
  42. }
  43. .card_love{
  44. position: absolute;
  45. top: 30rpx;
  46. right: 30rpx;
  47. width: 100rpx;
  48. height: 100rpx;
  49. border: 2rpx solid #B7B6B6;
  50. border-radius: 50%;
  51. box-shadow: 0px 0px 2px 2px rgba(183, 182, 182, 1);
  52. display: flex;
  53. z-index: 100;
  54. }
  55. .card_love image{
  56. width: 68rpx;
  57. height: 68rpx;
  58. margin: auto;
  59. }
  60. .card_data{
  61. position: absolute;
  62. bottom: 0;
  63. left: 0;
  64. width: 690rpx;
  65. height: 500rpx;
  66. background: rgb(0, 0, 0, 0.5);
  67. z-index: 2;
  68. }
  69. .crad_list{
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. width: 630rpx;
  74. height: 400rpx;
  75. padding: 0 30rpx;
  76. display: flex;
  77. flex-flow: row wrap;
  78. z-index: 3;
  79. }
  80. .crad_list view{
  81. position: relative;
  82. font-size: 36rpx;
  83. font-weight: 700;
  84. color: #FFF;
  85. width: 315rpx;
  86. height: 100rpx;
  87. line-height: 100rpx;
  88. z-index: 4;
  89. }
  90. .card_btn{
  91. position: absolute;
  92. bottom: 0;
  93. left: 0;
  94. width: 630rpx;
  95. height: 100rpx;
  96. padding: 0 30rpx;
  97. display: flex;
  98. flex-flow: row wrap;
  99. justify-content: space-around;
  100. z-index: 3;
  101. }
  102. .share{
  103. width: 250rpx;
  104. height: 80rpx;
  105. line-height: 80rpx;
  106. font-size: 36rpx;
  107. font-weight:700;
  108. color: #FFF;
  109. background: #0FBD0D;
  110. border-radius: 60rpx;
  111. text-align: center;
  112. }
  113. .check{
  114. width: 250rpx;
  115. height: 80rpx;
  116. line-height: 80rpx;
  117. font-size: 36rpx;
  118. font-weight:700;
  119. color: #FFF;
  120. background: #E51C23;
  121. border-radius: 60rpx;
  122. text-align: center;
  123. }
  124. .re_title{
  125. width: 750rpx;
  126. height: 100rpx;
  127. line-height: 50rpx;
  128. font-size: 32rpx;
  129. font-weight: 700;
  130. color: #E51C23;
  131. text-align: center;
  132. margin: 20rpx auto 30rpx;
  133. }
  134. .re_btn{
  135. width: 600rpx;
  136. height: 96rpx;
  137. line-height: 96rpx;
  138. color: #FFF;
  139. font-size: 40rpx;
  140. font-weight: 700;
  141. background: #E51C23;
  142. text-align: center;
  143. border-radius: 60rpx;
  144. margin: 30rpx auto 80rpx;
  145. }