clue.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .suspension_button {
  2. position: fixed;
  3. bottom: 200rpx;
  4. left: 50rpx;
  5. border-radius: 50%;
  6. width: 100rpx;
  7. line-height: 100rpx;
  8. color: #ffffff;
  9. font-size: 26rpx;
  10. text-align: center;
  11. background-color: #4c8afe;
  12. }
  13. .clueDetail_tabber {
  14. ::v-deep .u-tabbar__content {
  15. background: #108cff;
  16. border-top-right-radius: 10px;
  17. border-top-left-radius: 10px;
  18. }
  19. }
  20. .clue_state_wrap {
  21. width: 690rpx;
  22. padding: 0 30rpx;
  23. margin-top: 20rpx;
  24. display: flex;
  25. .clue_state_list {
  26. display: flex;
  27. .clue_state_item {
  28. font-size: 30rpx;
  29. display: inline-flex;
  30. /* 关键改动:改为行内弹性盒子 */
  31. align-items: center;
  32. /* 垂直居中 */
  33. background: #fff;
  34. margin-right: 30rpx;
  35. padding: 8rpx 16rpx;
  36. /* 增加内边距 */
  37. white-space: nowrap;
  38. /* 关键:禁止文本换行 */
  39. border-radius: 6rpx;
  40. &.active {
  41. color: #fff;
  42. background: #4c8afe;
  43. }
  44. }
  45. }
  46. }
  47. .clueTagsSelect {
  48. height: 0;
  49. overflow: hidden;
  50. }
  51. .queryParams_wrap {
  52. display: flex;
  53. background: #fff;
  54. padding: 14px 0;
  55. .query,
  56. .sort {
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. flex: 1;
  61. font-size: 16px;
  62. font-weight: 700;
  63. color: #202020;
  64. }
  65. }
  66. #navbar_center_wrap {
  67. width: 320rpx;
  68. margin: auto;
  69. padding: 15px;
  70. background-color: #fff;
  71. }
  72. .post_wrap {
  73. margin: 10px 0;
  74. }
  75. .case_top_wrap {
  76. background-color: #fff;
  77. padding: 0px 30rpx 15rpx 30rpx;
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. .conditionSelect {
  82. width: 200rpx;
  83. }
  84. }
  85. .case_wrap {
  86. padding-bottom: 30px;
  87. .case_main_wrap {
  88. padding: 15px;
  89. }
  90. }