condition-screening.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* components/condition-screening/condition-screening.wxss */
  2. .head {
  3. display: flex;
  4. height: 87rpx;
  5. width: 100%;
  6. color: #666;
  7. font-size: 28rpx;
  8. flex: 1 0 auto;
  9. align-items: center;
  10. background-color: #fff;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. z-index: 99;
  15. }
  16. .head .map {
  17. display: flex;
  18. white-space: nowrap;
  19. flex-grow: 1;
  20. justify-content: center;
  21. height: 40rpx;
  22. align-items: center;
  23. }
  24. .head .map .location {
  25. display: flex;
  26. align-items: center;
  27. width: 20rpx;
  28. height: 24rpx;
  29. padding-right: 10rpx;
  30. }
  31. .map-image {
  32. width: 10rpx;
  33. height: 8rpx;
  34. margin-left: 15rpx;
  35. }
  36. /* .map .location image {
  37. width: 100%;
  38. height: 100%;
  39. } */
  40. .head .salay,
  41. .head .settlement {
  42. display: flex;
  43. flex-grow: 1;
  44. white-space: nowrap;
  45. height: 40rpx;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49. .salay .salayname {
  50. padding-right: 10rpx;
  51. }
  52. .salay .arrow {
  53. display: flex;
  54. width: 10rpx;
  55. height: 8rpx;
  56. align-items: center;
  57. }
  58. .salay .arrow .arrow-image {
  59. width: 12rpx;
  60. height: 24rpx;
  61. }
  62. .salay .active {
  63. color: #0177ff;
  64. }
  65. .settlement-image {
  66. width: 10rpx;
  67. height: 8rpx;
  68. margin-left: 15rpx;
  69. }
  70. /* 结算方式 */
  71. .scrolled {
  72. position: fixed;
  73. top: 87rpx;
  74. left: 0;
  75. }
  76. .settlementMethod {
  77. display: flex;
  78. display: -webkit-flex;
  79. flex-wrap: wrap;
  80. align-items: center;
  81. /* justify-content: space-between; */
  82. width: 100%;
  83. padding: 15rpx 30rpx;
  84. box-sizing: border-box;
  85. z-index: 999;
  86. background-color: #fff;
  87. box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.06);
  88. }
  89. .settlementMethod .settleme {
  90. width: 160rpx;
  91. min-height: 66rpx;
  92. color: #333;
  93. font-size: 26rpx;
  94. border-radius: 10rpx;
  95. box-sizing: border-box;
  96. background: #eee;
  97. margin-right: 17rpx;
  98. margin-bottom: 15rpx;
  99. padding: 10rpx;
  100. display: flex;
  101. align-items: center;
  102. justify-content: center;
  103. }
  104. .settlementMethod .settleme:nth-child(4n) {
  105. margin-right: 0;
  106. }
  107. .settlementMethod .active {
  108. background-color: #0177FF;
  109. color: #fff;
  110. }