app.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**app.wxss**/
  2. page{
  3. font-family: PingFangSC-Regular,NotoSansHans-Regular;
  4. height: 100%;
  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,NotoSansHans-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. z-index:100;
  65. position: absolute;
  66. bottom: 0rpx;
  67. width: 100%;
  68. display: flex;
  69. overflow: hidden;
  70. background-color: white;
  71. border-top:1rpx solid #EBEBEB;
  72. }
  73. .page_footer_item{
  74. flex: 1;
  75. }
  76. .page_footer_navs{
  77. width:60rpx;
  78. margin:0px auto;
  79. }
  80. .page_footer_navs image{
  81. display: block;
  82. width:38rpx;
  83. height: 38rpx;
  84. margin:15rpx auto 0rpx;
  85. }
  86. .page_footer_w{
  87. height: 36rpx;
  88. line-height: 36rpx;
  89. color: rgba(33, 36, 37, 1);
  90. font-size: 24rpx;
  91. text-align: center;
  92. }