app.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @import "/miniprogram_npm/@vant/weapp/common/index.wxss";
  2. .container {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: space-between;
  7. box-sizing: border-box;
  8. }
  9. .space {
  10. height:20rpx;
  11. background-color: #F2f2f2;
  12. }
  13. .safeAreaOldPaddingBttom {
  14. padding-bottom: env(safe-area-inset-bottom);
  15. }
  16. .safeAreaNewPaddingBttom{
  17. padding-bottom: constant(safe-area-inset-bottom);
  18. }
  19. .safeAreaOldMarginBttom {
  20. margin-bottom: env(safe-area-inset-bottom);
  21. }
  22. .safeAreaNewMarginBttom{
  23. margin-bottom: constant(safe-area-inset-bottom);
  24. }
  25. .no-data {
  26. width: 100%;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. .no-data .line {
  32. width:132rpx;
  33. height:2rpx;
  34. background: #999;
  35. }
  36. .no-data .txt {
  37. font-size:26rpx;
  38. color:rgba(153,153,153,1);
  39. margin: 0 16rpx;
  40. }
  41. .ad-img {
  42. width: 100vw;
  43. }
  44. .badge {
  45. position: absolute;
  46. top: 0;
  47. right: 0;
  48. box-sizing: border-box;
  49. padding: 6rpx;
  50. color: #fff;
  51. font-size: 18rpx;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. background-color: #e64340;
  56. border: 1rpx solid #fff;
  57. border-radius: 50%;
  58. }
  59. .vw100 {
  60. width: 100vw !important;
  61. }
  62. page {
  63. font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
  64. Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei',
  65. sans-serif;
  66. }
  67. .block-btn {
  68. padding: 0 32rpx;
  69. }
  70. .safe-bottom-box {
  71. position: fixed;
  72. bottom: calc(env(safe-area-inset-bottom) / 2);
  73. left: 0;
  74. width: 100vw;
  75. }
  76. .characteristic {
  77. padding: 0 24rpx;
  78. font-size: 24rpx;
  79. color: #999;
  80. }