accessory.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .mainBox {
  2. height: 100vh;
  3. display: flex;
  4. flex-direction: column;
  5. .wrapper {
  6. // flex: 1;
  7. height: calc(100vh - 250rpx);
  8. overflow: hidden;
  9. }
  10. //底部按钮
  11. .footer {
  12. height: 45px;
  13. position: relative;
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. bottom: 0;
  18. width: 100%;
  19. height: 50px;
  20. border-top: 1px solid #eeecec;
  21. background-color: #ffffff;
  22. z-index: 999;
  23. .bottom {
  24. margin-left: 10rpx;
  25. }
  26. .u-reset-button {
  27. position: absolute;
  28. right: 10rpx;
  29. top: 20rpx;
  30. width: 150rpx;
  31. }
  32. }
  33. .top-wrapper {
  34. background-color: #fff;
  35. display: flex;
  36. width: 750rpx;
  37. height: 88rpx;
  38. padding: 16rpx 32rpx;
  39. align-items: center;
  40. gap: 16rpx;
  41. /deep/.uni-section {
  42. margin-top: 0px;
  43. }
  44. /deep/.uni-section-header {
  45. padding: 0px;
  46. }
  47. .search_btn {
  48. width: 120rpx;
  49. height: 70rpx;
  50. line-height: 70rpx;
  51. padding: 0 24rpx;
  52. background: $theme-color;
  53. font-size: 32rpx;
  54. color: #fff;
  55. margin: 0;
  56. margin-left: 26rpx;
  57. }
  58. .menu_icon {
  59. width: 44rpx;
  60. height: 44rpx;
  61. margin-left: 14rpx;
  62. }
  63. }
  64. .dimension {
  65. width: calc(100% - 270rpx);
  66. }
  67. .nav_box {
  68. padding: 6rpx 32rpx;
  69. position: relative;
  70. .btn {
  71. width: 68rpx;
  72. text-align: center;
  73. background: #1890ff;
  74. color: #fff;
  75. border: 2rpx solid;
  76. border-color: #1890ff;
  77. height: 40rpx;
  78. line-height: 40rpx;
  79. font-size: 26rpx;
  80. margin-right: 10rpx;
  81. }
  82. .remove {
  83. color: #606266;
  84. border-color: #dddddd;
  85. background: #fff;
  86. }
  87. .nav_item {
  88. font-size: 28rpx;
  89. font-weight: 400;
  90. color: $theme-color;
  91. background: #F0F8F2;
  92. margin-right: 16rpx;
  93. padding: 4rpx 16rpx;
  94. border-radius: 8rpx;
  95. border: 2rpx solid #ACD4B5;
  96. }
  97. .menu_box {
  98. position: absolute;
  99. right: 20rpx;
  100. top: 10rpx;
  101. .menu_icon {
  102. width: 44rpx;
  103. height: 44rpx;
  104. }
  105. }
  106. .active {
  107. background: $theme-color;
  108. border: 2rpx solid $theme-color;
  109. color: #FFF;
  110. }
  111. }
  112. }