app.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. color:#cccccc;
  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:70rpx;
  34. left:40rpx;
  35. }
  36. .page_head_back image{
  37. width:30rpx;
  38. height: 30rpx;
  39. }
  40. .page_head_w{
  41. padding-top: 60rpx;
  42. font-size: 36rpx;
  43. height: 44rpx;
  44. line-height: 44rpx;
  45. text-align: center;
  46. }
  47. /*************footer***************/
  48. .page_footer_place{
  49. height: 98rpx;
  50. }
  51. .page_footer{
  52. height: 98rpx;
  53. position: fixed;
  54. bottom: 0rpx;
  55. width: 100%;
  56. display: flex;
  57. overflow: hidden;
  58. background-color: white;
  59. }
  60. .page_footer_item{
  61. flex: 1;
  62. }
  63. .page_footer_navs{
  64. width:60rpx;
  65. margin:0px auto;
  66. }
  67. .page_footer_navs image{
  68. display: block;
  69. width:38rpx;
  70. height: 38rpx;
  71. margin:10px auto 0px;
  72. }
  73. .page_footer_w{
  74. height: 36rpx;
  75. line-height: 36rpx;
  76. color: rgba(33, 36, 37, 1);
  77. font-size: 24rpx;
  78. text-align: center;
  79. }