app.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**app.wxss**/
  2. page{
  3. font-family: PingFangSC-Regular,NotoSansHans-Regular;
  4. }
  5. .navigator-hover{
  6. background-color: transparent;
  7. }
  8. .container {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: space-between;
  14. box-sizing: border-box;
  15. background-color:#F9F9F9;
  16. }
  17. /***********header************/
  18. .page_head_place{
  19. background: white;
  20. }
  21. .page_head{
  22. background-color:#fede18;
  23. height:128rpx;
  24. position: fixed;
  25. z-index:100;
  26. top:0rpx;
  27. width: 100%;
  28. }
  29. .page_head_back{
  30. width:30rpx;
  31. height: 30rpx;
  32. position: absolute;
  33. top:100rpx;
  34. left:40rpx;
  35. }
  36. .page_head_back image{
  37. width:30rpx;
  38. height: 30rpx;
  39. }
  40. .page_head_w{
  41. padding-top: 105rpx;
  42. font-size: 36rpx;
  43. height: 44rpx;
  44. line-height: 44rpx;
  45. text-align: center;
  46. font-family: PingFangSC-Medium,NotoSansHans-Medium;
  47. }
  48. .page_head_source{
  49. overflow: hidden;
  50. line-height: 80rpx;
  51. background-color: #fede18;
  52. color:#aaaaaa;
  53. text-align: center;
  54. font-size: 22rpx;
  55. height: 0rpx;
  56. }
  57. /*************footer***************/
  58. .page_footer_place{
  59. height: 98rpx;
  60. }
  61. .page_footer{
  62. height: 98rpx;
  63. z-index:100;
  64. position: fixed;
  65. bottom: 0rpx;
  66. width: 100%;
  67. display: flex;
  68. overflow: hidden;
  69. background-color: white;
  70. border-top:1rpx solid #EBEBEB;
  71. }
  72. .page_footer_item{
  73. flex: 1;
  74. }
  75. .page_footer_navs{
  76. width:60rpx;
  77. margin:0px auto;
  78. }
  79. .page_footer_navs image{
  80. display: block;
  81. width:38rpx;
  82. height: 38rpx;
  83. margin:15rpx auto 0rpx;
  84. }
  85. .page_footer_w{
  86. height: 36rpx;
  87. line-height: 36rpx;
  88. color: rgba(33, 36, 37, 1);
  89. font-size: 24rpx;
  90. text-align: center;
  91. }