app.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. box-sizing: border-box;
  9. background-color:#F9F9F9;
  10. }
  11. /***********header************/
  12. .page_head_place{
  13. padding-top:70rpx;
  14. height:58rpx;
  15. text-align: center;
  16. line-height: 36rpx;
  17. font-size:26rpx;
  18. background: white;
  19. }
  20. .page_head{
  21. background-color:#fede18;
  22. height:128rpx;
  23. position: fixed;
  24. z-index:100;
  25. top:0rpx;
  26. width: 100%;
  27. }
  28. .page_head_back{
  29. width:30rpx;
  30. height: 30rpx;
  31. position: absolute;
  32. top:70rpx;
  33. left:40rpx;
  34. }
  35. .page_head_back image{
  36. width:30rpx;
  37. height: 30rpx;
  38. }
  39. .page_head_w{
  40. padding-top: 60rpx;
  41. font-size: 36rpx;
  42. height: 44rpx;
  43. line-height: 44rpx;
  44. text-align: center;
  45. }
  46. .page_head_source{
  47. overflow: hidden;
  48. line-height: 80rpx;
  49. background-color: #fede18;
  50. color:#aaaaaa;
  51. text-align: center;
  52. font-size: 22rpx;
  53. height: 0rpx;
  54. }
  55. /*************footer***************/
  56. .page_footer_place{
  57. height: 98rpx;
  58. }
  59. .page_footer{
  60. height: 98rpx;
  61. position: fixed;
  62. bottom: 0rpx;
  63. width: 100%;
  64. display: flex;
  65. overflow: hidden;
  66. background-color: white;
  67. }
  68. .page_footer_item{
  69. flex: 1;
  70. }
  71. .page_footer_navs{
  72. width:60rpx;
  73. margin:0px auto;
  74. }
  75. .page_footer_navs image{
  76. display: block;
  77. width:38rpx;
  78. height: 38rpx;
  79. margin:10px auto 0px;
  80. }
  81. .page_footer_w{
  82. height: 36rpx;
  83. line-height: 36rpx;
  84. color: rgba(33, 36, 37, 1);
  85. font-size: 24rpx;
  86. text-align: center;
  87. }