app.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /**app.wxss**/
  2. page{
  3. font-family: "NotoSansHans-Medium";
  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:70rpx;
  34. left:40rpx;
  35. }
  36. .page_head_back image{
  37. width:30rpx;
  38. height: 30rpx;
  39. }
  40. .page_head_w{
  41. padding-top: 60rpx;
  42. font-size: 36rpx;
  43. height: 44rpx;
  44. line-height: 44rpx;
  45. text-align: center;
  46. }
  47. .page_head_source{
  48. overflow: hidden;
  49. line-height: 80rpx;
  50. background-color: #fede18;
  51. color:#aaaaaa;
  52. text-align: center;
  53. font-size: 22rpx;
  54. height: 0rpx;
  55. }
  56. /*************footer***************/
  57. .page_footer_place{
  58. height: 98rpx;
  59. }
  60. .page_footer{
  61. height: 98rpx;
  62. position: fixed;
  63. bottom: 0rpx;
  64. width: 100%;
  65. display: flex;
  66. overflow: hidden;
  67. background-color: white;
  68. }
  69. .page_footer_item{
  70. flex: 1;
  71. }
  72. .page_footer_navs{
  73. width:60rpx;
  74. margin:0px auto;
  75. }
  76. .page_footer_navs image{
  77. display: block;
  78. width:38rpx;
  79. height: 38rpx;
  80. margin:10px auto 0px;
  81. }
  82. .page_footer_w{
  83. height: 36rpx;
  84. line-height: 36rpx;
  85. color: rgba(33, 36, 37, 1);
  86. font-size: 24rpx;
  87. text-align: center;
  88. }