Nav apraksta

app.wxss 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /**app.wxss**/
  2. @import 'style/weui.wxss';
  3. /* -------------------公用bejin ---------------------*/
  4. page{
  5. padding: 0;
  6. margin: 0;
  7. font-family: "PingFang-SC-Medium";
  8. color: #666;
  9. width: 100%;
  10. box-sizing: border-box;
  11. }
  12. view{
  13. box-sizing: border-box;
  14. width: 100%;
  15. }
  16. image{
  17. border-radius: 6px;
  18. }
  19. /* 隔离线 */
  20. .lineHeight{
  21. height: 20rpx;
  22. background:rgba(244,244,244,1);
  23. }
  24. /* 点 */
  25. .spot{
  26. width:28rpx;
  27. height:28rpx;
  28. background:#3573EA;
  29. border-radius:50%;
  30. margin-top: 8rpx;
  31. }
  32. .spot1{
  33. float: left;
  34. width:28rpx;
  35. height:28rpx;
  36. background:#359e08;
  37. border-radius:50%;
  38. margin-top: 8rpx;
  39. }
  40. .spot2{
  41. float: left;
  42. width:28rpx;
  43. height:28rpx;
  44. background:#e2c300;
  45. border-radius:50%;
  46. margin-top: 8rpx;
  47. }
  48. .spot3{
  49. float: left;
  50. width:28rpx;
  51. height:28rpx;
  52. background:#de1212;
  53. border-radius:50%;
  54. margin-top: 8rpx;
  55. }
  56. .content{
  57. padding: 30rpx;
  58. }
  59. /* 标题名 */
  60. .parkName{
  61. height: 88rpx;
  62. line-height: 88rpx;
  63. font-family: "PingFang-SC-Medium";
  64. color: #333;
  65. text-align: center;
  66. font-size: 20px;
  67. font-weight: 800;
  68. }
  69. .size14{
  70. font-size: 14px;
  71. }
  72. .weight700{
  73. font-weight: 700;
  74. }
  75. /* -------------------公用end ---------------------*/
  76. .container {
  77. height: 100%;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81. justify-content: space-between;
  82. touch-action: none;
  83. box-sizing: border-box;
  84. }