app.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**app.wxss**/
  2. page{
  3. font-family: PingFangSC-Regular,NotoSansHans-Regular;
  4. /*font-family: "PingFangSC-Medium,NotoSansHans-Medium";*/
  5. }
  6. .navigator-hover{
  7. background-color: transparent;
  8. }
  9. .container {
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: space-between;
  15. box-sizing: border-box;
  16. background-color:#F9F9F9;
  17. }
  18. /***********header************/
  19. .page_head_place{
  20. background: white;
  21. }
  22. .page_head{
  23. background-color:#fede18;
  24. height:128rpx;
  25. position: fixed;
  26. z-index:100;
  27. top:0rpx;
  28. width: 100%;
  29. }
  30. .page_head_back{
  31. width:30rpx;
  32. height: 30rpx;
  33. position: absolute;
  34. top:100rpx;
  35. left:40rpx;
  36. }
  37. .page_head_back image{
  38. width:30rpx;
  39. height: 30rpx;
  40. }
  41. .page_head_w{
  42. padding-top: 105rpx;
  43. font-size: 36rpx;
  44. height: 44rpx;
  45. line-height: 44rpx;
  46. text-align: center;
  47. font-family: PingFangSC-Medium;
  48. }
  49. .page_head_source{
  50. overflow: hidden;
  51. line-height: 80rpx;
  52. background-color: #fede18;
  53. color:#aaaaaa;
  54. text-align: center;
  55. font-size: 22rpx;
  56. height: 0rpx;
  57. }
  58. /*************footer***************/
  59. .page_footer_place{
  60. height: 98rpx;
  61. }
  62. .page_footer{
  63. height: 98rpx;
  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:10px auto 0px;
  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. }