navBar.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* components/navbar/index.wxss */
  2. .navbar {
  3. width: 100%;
  4. overflow: hidden;
  5. position: relative;
  6. top: 0;
  7. left: 0;
  8. z-index: 10;
  9. background: #00C7C6;
  10. }
  11. .nav_position {
  12. position: absolute;
  13. left: 24rpx;
  14. bottom: 24rpx;
  15. z-index: 100;
  16. color: #FFFFFF;
  17. display: flex;
  18. box-sizing: border-box;
  19. }
  20. .box {
  21. flex: auto;
  22. height: 40rpx;
  23. }
  24. .icon_position_image {
  25. width: 40rpx;
  26. height: 40rpx;
  27. }
  28. .icon_down_img {
  29. width: 40rpx;
  30. height: 40rpx;
  31. }
  32. .backhome {
  33. color: #FFFFFF;
  34. position: absolute;
  35. height: 40rpx;
  36. left: 30rpx;
  37. bottom: 24rpx;
  38. z-index: 100;
  39. color: #FFFFFF;
  40. display: flex;
  41. box-sizing: border-box;
  42. }
  43. .backimage {
  44. height: 40rpx;
  45. width: 40rpx;
  46. vertical-align: middle;
  47. }
  48. .navbar-title {
  49. width: 100%;
  50. height: 88rpx;
  51. line-height: 88rpx;
  52. text-align: center;
  53. position: absolute;
  54. bottom: 0;
  55. left: 0;
  56. z-index: 10;
  57. background-color: #00C7C6;
  58. color: #fff;
  59. font-size: 30rpx;
  60. }
  61. .navbar-action-wrap {
  62. position: absolute;
  63. left: 20rpx;
  64. bottom: 14rpx;
  65. z-index: 100;
  66. line-height: 1;
  67. padding-top: 8rpx;
  68. padding-bottom: 8rpx;
  69. }
  70. .navbar-action-group {
  71. border: 2rpx solid #e8e8e8;
  72. border-radius: 40rpx;
  73. overflow: hidden
  74. }
  75. .navbar-action_item {
  76. padding: 6rpx 0;
  77. color: #333;
  78. }
  79. .navbar-action-group .navbar-action_item {
  80. border-right: 2rpx solid #e8e8e8;
  81. padding: 6rpx 24rpx;
  82. }