cation.wxss 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. @charset "UTF-8";
  2. .uni-load-more {
  3. display: -webkit-box;
  4. display: -webkit-flex;
  5. display: flex;
  6. -webkit-box-orient: horizontal;
  7. -webkit-box-direction: normal;
  8. -webkit-flex-direction: row;
  9. flex-direction: row;
  10. height: 80rpx;
  11. -webkit-box-align: center;
  12. -webkit-align-items: center;
  13. align-items: center;
  14. -webkit-box-pack: center;
  15. -webkit-justify-content: center;
  16. justify-content: center
  17. }
  18. .uni-load-more__text {
  19. font-size: 28rpx;
  20. color: #999
  21. }
  22. .uni-load-more__img {
  23. height: 24px;
  24. width: 24px;
  25. margin-right: 10px
  26. }
  27. .uni-load-more__img>.load {
  28. position: absolute
  29. }
  30. .uni-load-more__img>.load .item {
  31. width: 6px;
  32. height: 2px;
  33. border-top-left-radius: 1px;
  34. border-bottom-left-radius: 1px;
  35. background: #999;
  36. position: absolute;
  37. opacity: .2;
  38. -webkit-transform-origin: 50%;
  39. transform-origin: 50%;
  40. -webkit-animation: load 1.56s ease infinite;
  41. animation: load 1.56s ease infinite
  42. }
  43. .uni-load-more__img>.load .item:nth-child(1) {
  44. -webkit-transform: rotate(90deg);
  45. transform: rotate(90deg);
  46. top: 2px;
  47. left: 9px
  48. }
  49. .uni-load-more__img>.load .item:nth-child(2) {
  50. -webkit-transform: rotate(180deg);
  51. transform: rotate(180deg);
  52. top: 11px;
  53. right: 0
  54. }
  55. .uni-load-more__img>.load .item:nth-child(3) {
  56. -webkit-transform: rotate(270deg);
  57. transform: rotate(270deg);
  58. bottom: 2px;
  59. left: 9px
  60. }
  61. .uni-load-more__img>.load .item:nth-child(4) {
  62. top: 11px;
  63. left: 0
  64. }
  65. .load1,
  66. .load2,
  67. .load3 {
  68. height: 24px;
  69. width: 24px
  70. }
  71. .load2 {
  72. -webkit-transform: rotate(30deg);
  73. transform: rotate(30deg)
  74. }
  75. .load3 {
  76. -webkit-transform: rotate(60deg);
  77. transform: rotate(60deg)
  78. }
  79. .load1 .item:nth-child(1) {
  80. -webkit-animation-delay: 0s;
  81. animation-delay: 0s
  82. }
  83. .load2 .item:nth-child(1) {
  84. -webkit-animation-delay: .13s;
  85. animation-delay: .13s
  86. }
  87. .load3 .item:nth-child(1) {
  88. -webkit-animation-delay: .26s;
  89. animation-delay: .26s
  90. }
  91. .load1 .item:nth-child(2) {
  92. -webkit-animation-delay: .39s;
  93. animation-delay: .39s
  94. }
  95. .load2 .item:nth-child(2) {
  96. -webkit-animation-delay: .52s;
  97. animation-delay: .52s
  98. }
  99. .load3 .item:nth-child(2) {
  100. -webkit-animation-delay: .65s;
  101. animation-delay: .65s
  102. }
  103. .load1 .item:nth-child(3) {
  104. -webkit-animation-delay: .78s;
  105. animation-delay: .78s
  106. }
  107. .load2 .item:nth-child(3) {
  108. -webkit-animation-delay: .91s;
  109. animation-delay: .91s
  110. }
  111. .load3 .item:nth-child(3) {
  112. -webkit-animation-delay: 1.04s;
  113. animation-delay: 1.04s
  114. }
  115. .load1 .item:nth-child(4) {
  116. -webkit-animation-delay: 1.17s;
  117. animation-delay: 1.17s
  118. }
  119. .load2 .item:nth-child(4) {
  120. -webkit-animation-delay: 1.3s;
  121. animation-delay: 1.3s
  122. }
  123. .load3 .item:nth-child(4) {
  124. -webkit-animation-delay: 1.43s;
  125. animation-delay: 1.43s
  126. }
  127. @-webkit-keyframes load {
  128. 0% {
  129. opacity: 1
  130. }
  131. 100% {
  132. opacity: .2
  133. }
  134. }
  135. @charset "UTF-8";
  136. /* 页面左右间距 */
  137. /* 文字尺寸 */
  138. /*文字颜色*/
  139. /* 边框颜色 */
  140. /*颜色*/
  141. /* 图片加载中颜色 */
  142. /* 行为相关颜色 */
  143. /* 功能栏字体大小 */
  144. /*功能栏左侧小图标*/
  145. page {
  146. background: #f8f8f8;
  147. height: 100%;
  148. padding-bottom: 200rpx;
  149. }
  150. page .content {
  151. height: 100%;
  152. }
  153. .navbar {
  154. display: -webkit-box;
  155. display: -webkit-flex;
  156. display: flex;
  157. height: 40px;
  158. padding: 0 5px;
  159. background: #fff;
  160. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  161. position: relative;
  162. z-index: 10;
  163. }
  164. .navbar .nav-item {
  165. -webkit-box-flex: 1;
  166. -webkit-flex: 1;
  167. flex: 1;
  168. display: -webkit-box;
  169. display: -webkit-flex;
  170. display: flex;
  171. -webkit-box-pack: center;
  172. -webkit-justify-content: center;
  173. justify-content: center;
  174. -webkit-box-align: center;
  175. -webkit-align-items: center;
  176. align-items: center;
  177. height: 100%;
  178. font-size: 15px;
  179. color: #303133;
  180. position: relative;
  181. }
  182. .navbar .nav-item.current {
  183. color: #FF727E;
  184. }
  185. .navbar .nav-item.current:after {
  186. content: '';
  187. position: absolute;
  188. left: 50%;
  189. bottom: 0;
  190. -webkit-transform: translateX(-50%);
  191. transform: translateX(-50%);
  192. width: 44px;
  193. height: 0;
  194. border-bottom: 2px solid #FF727E;
  195. }
  196. .swiper-box {
  197. height: calc(100% - 40px);
  198. padding: 0 20rpx;
  199. }
  200. .list-scroll-content {
  201. height: 100%;
  202. }
  203. .tip {
  204. width: 100%;
  205. color: #FFFFFF;
  206. padding: 30rpx 25rpx;
  207. position: fixed;
  208. background-color: #FF727E;
  209. bottom: 5%;
  210. width: 80%;
  211. left: 10%;
  212. text-align: center;
  213. border-radius: 100rpx;
  214. box-shadow: 0px 5px 16px 0px rgba(230, 33, 41, 0.22);
  215. }
  216. .scroll-list {
  217. width: 100%;
  218. overflow: hidden;
  219. white-space: nowrap;
  220. background-color: #FFFFFF;
  221. font-size: 32rpx;
  222. }
  223. .scroll-list .scoll-box {
  224. text-align: center;
  225. display: inline-block;
  226. margin: 0rpx 38rpx;
  227. padding: 15rpx 0rpx;
  228. }
  229. .scroll-list .scoll-box .scoll-img {
  230. width: 130rpx;
  231. height: 85rpx;
  232. border-radius: 100%;
  233. }
  234. .scroll-list .scoll-box .scoll-img image {
  235. width: 85rpx;
  236. height: 100%;
  237. border-radius: 100%;
  238. }
  239. .scroll-list .scoll-box .scoll-name {
  240. padding-top: 15rpx;
  241. }
  242. .scroll-list .scoll-box.active {
  243. color: #FF727E;
  244. border-bottom: 6rpx solid #FF727E;
  245. }
  246. .list {
  247. width: 100%;
  248. padding: 25rpx 25rpx;
  249. }
  250. .list .list-item {
  251. width: 100%;
  252. padding: 30rpx 28rpx;
  253. background-color: #FFFFFF;
  254. border-radius: 25rpx;
  255. margin-bottom: 25rpx;
  256. }
  257. .list .list-item .item-top {
  258. display: -webkit-box;
  259. display: -webkit-flex;
  260. display: flex;
  261. -webkit-box-align: center;
  262. -webkit-align-items: center;
  263. align-items: center;
  264. }
  265. .list .list-item .item-top .tip-info {
  266. background-color: #FF727E;
  267. color: #FFFFFF;
  268. border-radius: 10rpx;
  269. font-size: 28rpx;
  270. padding: 8rpx 15rpx;
  271. margin-right: 15rpx;
  272. }
  273. .list .list-item .item-top .name {
  274. font-size: 36rpx;
  275. font-weight: 500;
  276. color: #222222;
  277. overflow: hidden;
  278. text-overflow: ellipsis;
  279. white-space: nowrap;
  280. }
  281. .list .list-item .title {
  282. font-weight: 400;
  283. padding-top: 25rpx;
  284. font-size: 28rpx;
  285. color: #222222;
  286. }