业务交流通
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

app.wxss 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**app.wxss**/
  2. @import '/miniprogram_npm/weui-miniprogram/weui-wxss/dist/style/weui.wxss';
  3. .container {
  4. width: 100%;
  5. height: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: space-between;
  10. box-sizing: border-box;
  11. }
  12. .text-center {
  13. text-align: center;
  14. }
  15. .fl{
  16. float: left;
  17. }
  18. .fr{
  19. float: right;
  20. }
  21. .not-data {
  22. text-align: center;
  23. padding-top: 70rpx;
  24. }
  25. .not-data .not-data-img{
  26. width: 295rpx;
  27. height: 240rpx;
  28. }
  29. .not-data .not-info{
  30. color: #b3bfcb;
  31. }
  32. /* 通用page容器 */
  33. .page-container{
  34. background: #f5f9ff;
  35. padding: 20rpx;
  36. min-height: calc(100vh - 130rpx);
  37. padding-bottom: 120rpx;
  38. font-size: 26rpx;
  39. }
  40. /* 通用渐变感兴趣的 */
  41. .view-interested{
  42. background: #c9d6ff; /* fallback for old browsers */
  43. background: -webkit-linear-gradient(to right, #c9d6ff, #f4f9ff); /* Chrome 10-25, Safari 5.1-6 */
  44. background: linear-gradient(to right, #c9d6ff, #f4f9ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  45. font-size: 24rpx;
  46. height: 52rpx;
  47. line-height: 52rpx;
  48. color: #5e73e5;
  49. box-sizing: border-box;
  50. padding-left: 28rpx;
  51. border-radius: 15rpx 0 0 0;
  52. }
  53. /* 通用list */
  54. /* list块 */
  55. .list-view {
  56. background: #fff;
  57. /* height: 315rpx; */
  58. border-radius: 20rpx;
  59. margin-bottom: 20rpx;
  60. padding: 28rpx 18rpx;
  61. position: relative;
  62. }
  63. .list-loading {
  64. margin-top: 15vh;
  65. }
  66. .list-finished{
  67. color: #8c97c0;
  68. }
  69. .list-finished .finished-img{
  70. width: 25rpx;
  71. height: 25rpx;
  72. margin-right: 10rpx;
  73. position: relative;
  74. top: 1rpx;
  75. }
  76. /* 最优浮动闭合方案 */
  77. .clearfix:after {
  78. content: ".";
  79. display: block;
  80. height: 0;
  81. clear: both;
  82. visibility: hidden;
  83. }
  84. /* CSS超出显示... */
  85. .yichu{
  86. white-space:nowrap;
  87. overflow:hidden;
  88. text-overflow:ellipsis;
  89. }