app.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**app.wxss**/
  2. page{
  3. font-family: "NotoSansHans-Medium";
  4. }
  5. .container {
  6. height: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: space-between;
  11. box-sizing: border-box;
  12. background-color:#F9F9F9;
  13. }
  14. /***********header************/
  15. .page_head_place{
  16. padding-top:70rpx;
  17. height:58rpx;
  18. text-align: center;
  19. line-height: 36rpx;
  20. font-size:26rpx;
  21. background: white;
  22. }
  23. .page_head{
  24. background-color:#fede18;
  25. height:128rpx;
  26. position: fixed;
  27. z-index:100;
  28. top:0rpx;
  29. width: 100%;
  30. }
  31. .page_head_back{
  32. width:30rpx;
  33. height: 30rpx;
  34. position: absolute;
  35. top:70rpx;
  36. left:40rpx;
  37. }
  38. .page_head_back image{
  39. width:30rpx;
  40. height: 30rpx;
  41. }
  42. .page_head_w{
  43. padding-top: 60rpx;
  44. font-size: 36rpx;
  45. height: 44rpx;
  46. line-height: 44rpx;
  47. text-align: center;
  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. }
  71. .page_footer_item{
  72. flex: 1;
  73. }
  74. .page_footer_navs{
  75. width:60rpx;
  76. margin:0px auto;
  77. }
  78. .page_footer_navs image{
  79. display: block;
  80. width:38rpx;
  81. height: 38rpx;
  82. margin:10px auto 0px;
  83. }
  84. .page_footer_w{
  85. height: 36rpx;
  86. line-height: 36rpx;
  87. color: rgba(33, 36, 37, 1);
  88. font-size: 24rpx;
  89. text-align: center;
  90. }