业务交流通
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

app.wxss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**app.wxss**/
  2. .container {
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. box-sizing: border-box;
  10. }
  11. .text-center {
  12. text-align: center;
  13. }
  14. .fl{
  15. float: left;
  16. }
  17. .fr{
  18. float: right;
  19. }
  20. .not-data {
  21. text-align: center;
  22. padding-top: 70rpx;
  23. }
  24. .not-data .not-data-img{
  25. width: 295rpx;
  26. height: 240rpx;
  27. }
  28. .not-data .not-info{
  29. color: #b3bfcb;
  30. }
  31. /* 通用page容器 */
  32. .page-container{
  33. background: #f5f9ff;
  34. padding: 20rpx;
  35. min-height: calc(100vh - 130rpx);
  36. padding-bottom: 120rpx;
  37. font-size: 26rpx;
  38. }
  39. /* 通用渐变感兴趣的 */
  40. .view-interested{
  41. background: #c9d6ff; /* fallback for old browsers */
  42. background: -webkit-linear-gradient(to right, #c9d6ff, #f4f9ff); /* Chrome 10-25, Safari 5.1-6 */
  43. background: linear-gradient(to right, #c9d6ff, #f4f9ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  44. font-size: 24rpx;
  45. height: 52rpx;
  46. line-height: 52rpx;
  47. color: #5e73e5;
  48. box-sizing: border-box;
  49. padding-left: 28rpx;
  50. border-radius: 15rpx 0 0 0;
  51. }
  52. /* 通用list */
  53. /* list块 */
  54. .list-view {
  55. background: #fff;
  56. /* height: 315rpx; */
  57. border-radius: 20rpx;
  58. margin-bottom: 20rpx;
  59. padding: 28rpx 18rpx;
  60. position: relative;
  61. }
  62. .list-loading {
  63. margin-top: 15vh;
  64. }
  65. .list-finished{
  66. color: #8c97c0;
  67. }
  68. .list-finished .finished-img{
  69. width: 25rpx;
  70. height: 25rpx;
  71. margin-right: 10rpx;
  72. position: relative;
  73. top: 1rpx;
  74. }