myFu.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. height: 100%;
  13. background: #F4F5F4;
  14. }
  15. .content {
  16. height: 100%;
  17. }
  18. .content .navbar {
  19. display: -webkit-box;
  20. display: -webkit-flex;
  21. display: flex;
  22. height: 40px;
  23. padding: 0 5px;
  24. background: #fff;
  25. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  26. position: relative;
  27. z-index: 10;
  28. }
  29. .content .navbar .nav-item {
  30. -webkit-box-flex: 1;
  31. -webkit-flex: 1;
  32. flex: 1;
  33. display: -webkit-box;
  34. display: -webkit-flex;
  35. display: flex;
  36. -webkit-box-pack: center;
  37. -webkit-justify-content: center;
  38. justify-content: center;
  39. -webkit-box-align: center;
  40. -webkit-align-items: center;
  41. align-items: center;
  42. height: 100%;
  43. font-size: 15px;
  44. color: #303133;
  45. position: relative;
  46. }
  47. .content .navbar .nav-item.current {
  48. color: #FF727E;
  49. }
  50. .content .navbar .nav-item.current:after {
  51. content: '';
  52. position: absolute;
  53. left: 50%;
  54. bottom: 0;
  55. -webkit-transform: translateX(-50%);
  56. transform: translateX(-50%);
  57. width: 44px;
  58. height: 0;
  59. border-bottom: 2px solid #FF727E;
  60. }
  61. .content .swiper-box {
  62. height: calc(100% - 40px);
  63. padding: 20rpx 30rpx;
  64. }
  65. .content .list-scroll-content {
  66. height: 100%;
  67. }
  68. .content .fu-box {
  69. padding: 14rpx 20rpx 28rpx 20rpx;
  70. background: #FFFFFF;
  71. box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
  72. border-radius: 12rpx;
  73. display: -webkit-box;
  74. display: -webkit-flex;
  75. display: flex;
  76. -webkit-box-align: center;
  77. -webkit-align-items: center;
  78. align-items: center;
  79. margin-bottom: 20rpx;
  80. }
  81. .content .fu-box .fu-img {
  82. width: 220rpx;
  83. height: 182rpx;
  84. border-radius: 8rpx;
  85. }
  86. .content .fu-box .fu-right {
  87. margin-left: 20rpx;
  88. width: 62%;
  89. }
  90. .content .fu-box .fu-right .fu-tit {
  91. overflow: hidden;
  92. text-overflow: ellipsis;
  93. white-space: nowrap;
  94. font-size: 36rpx;
  95. font-family: PingFang SC;
  96. font-weight: 500;
  97. color: #222222;
  98. }
  99. .content .fu-box .fu-right .fu-text {
  100. margin-top: 17rpx;
  101. overflow: hidden;
  102. text-overflow: ellipsis;
  103. display: -webkit-box;
  104. -webkit-line-clamp: 2;
  105. -webkit-box-orient: vertical;
  106. font-size: 24rpx;
  107. font-family: PingFang SC;
  108. font-weight: 500;
  109. color: #666666;
  110. }
  111. .content .fu-box .fu-right .fu-bottom {
  112. margin-top: 20rpx;
  113. display: -webkit-box;
  114. display: -webkit-flex;
  115. display: flex;
  116. -webkit-box-align: center;
  117. -webkit-align-items: center;
  118. align-items: center;
  119. -webkit-box-pack: justify;
  120. -webkit-justify-content: space-between;
  121. justify-content: space-between;
  122. }
  123. .content .fu-box .fu-right .fu-bottom .fu-shenqing {
  124. font-size: 21rpx;
  125. font-family: PingFang;
  126. font-weight: 500;
  127. color: #FF727E;
  128. }
  129. .content .fu-box .fu-right .fu-bottom .fu-jifen {
  130. padding: 0 5rpx;
  131. border: 1px solid #FF0000;
  132. border-radius: 5rpx;
  133. font-size: 21rpx;
  134. font-family: PingFang SC;
  135. font-weight: 500;
  136. color: #FF0000;
  137. }
  138. .content .fu-box .fu-right .fu-bottom .fu-yjs {
  139. font-size: 21rpx;
  140. font-family: PingFang;
  141. font-weight: 500;
  142. color: #999999;
  143. }
  144. .content .fu-box .fu-right .fu-bottom .fu-sczl {
  145. padding: 5rpx 17rpx;
  146. font-size: 21rpx;
  147. font-family: PingFang SC;
  148. font-weight: 500;
  149. color: #FFFFFF;
  150. background: #FF727E;
  151. border-radius: 23rpx;
  152. }