minePush.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/minePush/minePush.wxss */
  2. @import "../template/template.wxss";
  3. .handle-box{
  4. width: 100vw;
  5. height: 100vh;
  6. position: fixed;
  7. top: 0;
  8. z-index: 10001;
  9. }
  10. .handle-bg{
  11. width: 100vw;
  12. height: 100vh;
  13. position: absolute;
  14. bottom: 0;
  15. background-color: rgba(0,0,0,0.6);
  16. }
  17. .hadle-view{
  18. display: flex;
  19. flex-direction: row;
  20. position: absolute;
  21. bottom: 0;
  22. width: 678rpx;
  23. height: 200rpx;
  24. padding: 46rpx 36rpx 0;
  25. background: #F7F7F7;
  26. border-radius: 16px 16px 0px 0px;
  27. padding-bottom: env(safe-area-inset-bottom);
  28. }
  29. .hadle-view>image:nth-child(1){
  30. width: 48rpx;
  31. height: 48rpx;
  32. position: absolute;
  33. top: 20rpx;
  34. right: 16rpx;
  35. }
  36. .handle-item{
  37. display: flex;
  38. flex-direction: column;
  39. margin-right: 40rpx;
  40. }
  41. .handle-item>image:nth-child(1){
  42. width: 96rpx;
  43. height: 96rpx;
  44. margin-bottom: 16rpx;
  45. }
  46. .handle-item>text:nth-child(2){
  47. width: auto;
  48. height: 36rpx;
  49. font-size: 26rpx;
  50. font-family: PingFangSC-Regular, PingFang SC;
  51. font-weight: 400;
  52. color: rgba(0,0,0,0.6);
  53. line-height: 36rpx;
  54. text-align: center;
  55. }
  56. .nonedata-style{
  57. width: 750rpx;
  58. height: 100vh;
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .nonedata-style>image:nth-child(1){
  65. width: 332rpx;
  66. height: 264rpx;
  67. }
  68. .nonedata-style>text:nth-child(2){
  69. width: auto;
  70. height: 48rpx;
  71. font-size: 30rpx;
  72. font-family: PingFangSC-Regular, PingFang SC;
  73. font-weight: 400;
  74. color: rgba(0,0,0,0.4);
  75. line-height: 48rpx;
  76. margin-top: 32rpx;
  77. }