app.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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: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. }
  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. border-top:1rpx solid #EBEBEB;
  69. }
  70. .page_footer_item{
  71. flex: 1;
  72. }
  73. .page_footer_navs{
  74. width:60rpx;
  75. margin:0px auto;
  76. }
  77. .page_footer_navs image{
  78. display: block;
  79. width:38rpx;
  80. height: 38rpx;
  81. margin:10px auto 0px;
  82. }
  83. .page_footer_w{
  84. height: 36rpx;
  85. line-height: 36rpx;
  86. color: rgba(33, 36, 37, 1);
  87. font-size: 24rpx;
  88. text-align: center;
  89. }