detail.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. @charset "UTF-8";
  2. /* 文字尺寸 */
  3. /*文字颜色*/
  4. /* 边框颜色 */
  5. /* 图片加载中颜色 */
  6. /* 行为相关颜色 */
  7. .normal-tip {
  8. font-size: 24rpx;
  9. line-height: 40rpx;
  10. padding: 4rpx 10rpx;
  11. }
  12. .normal-tip.by {
  13. border-radius: 20rpx;
  14. }
  15. .normal-tip.yd {
  16. border-radius: 5rspx;
  17. }
  18. .fixed-page-content {
  19. width: 100%;
  20. height: 100%;
  21. padding-bottom: 120rpx;
  22. box-sizing: border-box;
  23. }
  24. .page-content {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .white-box {
  29. width: 100%;
  30. font-size: 28rpx;
  31. padding: 0 40rpx;
  32. background-color: #ffffff;
  33. box-sizing: border-box;
  34. }
  35. .white-box:not(:last-child) {
  36. margin-bottom: 30rpx;
  37. }
  38. .white-box .flex-item {
  39. align-items: center;
  40. }
  41. .white-box .flex-item .tel-box {
  42. display: flex;
  43. align-items: center;
  44. justify-content: flex-end;
  45. }
  46. .white-box .flex-item .tel-box .custom-tel-component {
  47. margin-left: 20rpx;
  48. }
  49. .white-box .cell-item {
  50. color: var(--Black);
  51. padding: 30rpx 0;
  52. display: flex;
  53. justify-content: space-between;
  54. position: relative;
  55. }
  56. .white-box .cell-item::after {
  57. position: absolute;
  58. box-sizing: border-box;
  59. content: ' ';
  60. pointer-events: none;
  61. right: 0;
  62. bottom: 0;
  63. left: 0;
  64. border-bottom: 2rpx solid #ebedf0;
  65. -webkit-transform: scaleY(0.5);
  66. transform: scaleY(0.5);
  67. }
  68. .white-box .cell-item > .label {
  69. flex: 1;
  70. width: 30%;
  71. }
  72. .white-box .cell-item > .label .tips {
  73. font-size: 22rpx;
  74. color: var(--greyColor);
  75. }
  76. .white-box .cell-item > .label.required {
  77. position: relative;
  78. }
  79. .white-box .cell-item > .label.required::after {
  80. content: '*';
  81. color: var(--Red);
  82. position: absolute;
  83. font-size: 30rpx;
  84. top: -15rpx;
  85. left: -15rpx;
  86. }
  87. .white-box .cell-item > .tit {
  88. color: var(--Black);
  89. flex: 1;
  90. width: 70%;
  91. text-align: right;
  92. }
  93. .white-box .cell-item > .tit .van-radio-group {
  94. display: flex;
  95. justify-content: flex-end;
  96. }
  97. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  98. margin-left: 30rpx;
  99. }
  100. .white-box .block-cell-item {
  101. color: var(--Black);
  102. padding: 30rpx 0;
  103. position: relative;
  104. }
  105. .white-box .block-cell-item::after {
  106. position: absolute;
  107. box-sizing: border-box;
  108. content: " ";
  109. pointer-events: none;
  110. right: 16rpx;
  111. bottom: 0;
  112. left: 16rpx;
  113. border-bottom: 2rpx solid #ebedf0;
  114. -webkit-transform: scaleY(0.5);
  115. transform: scaleY(0.5);
  116. }
  117. .white-box .block-cell-item .label {
  118. width: 100%;
  119. padding-bottom: 30rpx;
  120. }
  121. .white-box .block-cell-item .label.required {
  122. position: relative;
  123. }
  124. .white-box .block-cell-item .label.required::after {
  125. content: '*';
  126. color: var(--Red);
  127. position: absolute;
  128. font-size: 30rpx;
  129. top: -15rpx;
  130. left: -15rpx;
  131. }
  132. .white-box .block-cell-item .label .tips {
  133. font-size: 22rpx;
  134. color: var(--greyColor);
  135. }
  136. .white-box .block-cell-item .tit {
  137. width: 100%;
  138. color: var(--Black);
  139. }
  140. .white-box .block-cell-item .tit .van-radio-group {
  141. display: flex;
  142. justify-content: flex-end;
  143. }
  144. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  145. margin-left: 30rpx;
  146. }
  147. .white-box .block-cell-item .tit .textarea {
  148. background-color: #F8F8F8;
  149. font-size: 30rpx;
  150. color: #B7B7B7;
  151. border-radius: 10rpx;
  152. padding: 30rpx;
  153. word-break: break-all;
  154. }
  155. .white-box .custom-white-box-content {
  156. padding-bottom: 30rpx;
  157. }
  158. .z-bg {
  159. background: #6600ff;
  160. color: #fff;
  161. }
  162. .l-bg {
  163. background: #0000FF;
  164. color: #fff;
  165. }
  166. .h-bg {
  167. background: #F87A7A;
  168. color: #fff;
  169. }
  170. .z-br {
  171. background: #fff;
  172. border: 1px solid #6600ff;
  173. color: #6600ff;
  174. }
  175. .chaochuyincang {
  176. white-space: nowrap;
  177. overflow: hidden;
  178. text-overflow: ellipsis;
  179. }
  180. .housingDetail .imageList {
  181. display: flex;
  182. flex-wrap: nowrap;
  183. }
  184. .housingDetail .imageList ._img {
  185. width: 230rpx;
  186. height: 230rpx;
  187. }
  188. .housingDetail .swiperBody {
  189. position: relative;
  190. }
  191. .housingDetail .swiperBody .swiperImg {
  192. width: 750rpx;
  193. height: 360rpx;
  194. }
  195. .housingDetail .swiperBody .radioBox {
  196. width: 344rpx;
  197. height: 60rpx;
  198. display: flex;
  199. align-items: center;
  200. justify-content: space-between;
  201. border-radius: 30rpx;
  202. background: rgba(0, 0, 0, 0.7);
  203. position: absolute;
  204. color: white;
  205. left: 204rpx;
  206. top: 268rpx;
  207. font-size: 26rpx;
  208. box-sizing: border-box;
  209. }
  210. .housingDetail .swiperBody .radioBox .selectEnvironment {
  211. width: 220rpx;
  212. height: 60rpx;
  213. background: #0365f9;
  214. border-radius: 30rpx;
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. box-sizing: border-box;
  219. }
  220. .housingDetail .swiperBody .radioBox .unSelEn {
  221. width: 164rpx;
  222. height: 60rpx;
  223. border-radius: 30rpx;
  224. display: flex;
  225. align-items: center;
  226. justify-content: center;
  227. box-sizing: border-box;
  228. }
  229. .housingDetail .swiperBody .radioBox .selectLayout {
  230. width: 180rpx;
  231. height: 60rpx;
  232. display: flex;
  233. background: #0365f9;
  234. align-items: center;
  235. justify-content: center;
  236. box-sizing: border-box;
  237. border-radius: 30rpx;
  238. }
  239. .housingDetail .swiperBody .radioBox .unSelLayout {
  240. width: 124rpx;
  241. height: 60rpx;
  242. display: flex;
  243. align-items: center;
  244. justify-content: center;
  245. box-sizing: border-box;
  246. border-radius: 30rpx;
  247. }
  248. .housingDetail .housingInfoBody {
  249. background: white;
  250. padding: 32rpx;
  251. }
  252. .housingDetail .housingInfoBody .housingName {
  253. font-size: 40rpx;
  254. color: #333333;
  255. }
  256. .housingDetail .housingInfoBody .housingImportBox {
  257. display: flex;
  258. justify-content: space-between;
  259. align-items: center;
  260. padding: 0 10rpx;
  261. margin-top: 10rpx;
  262. }
  263. .housingDetail .housingInfoBody .housingImportBox .housingImportItem {
  264. display: flex;
  265. flex-direction: column;
  266. align-items: center;
  267. }
  268. .housingDetail .housingInfoBody .housingImportBox .housingImportItem .housingImportInfo {
  269. color: #e25100;
  270. font-size: 28rpx;
  271. line-height: 46rox;
  272. }
  273. .housingDetail .housingInfoBody .housingImportBox .housingImportItem .housingInportName {
  274. color: #888888;
  275. font-size: 28rpx;
  276. line-height: 32rpx;
  277. margin-top: 10rpx;
  278. }
  279. .housingDetail .placeBox {
  280. display: flex;
  281. justify-content: space-between;
  282. align-items: center;
  283. background: #f5f7fa;
  284. padding: 16rpx 24rpx;
  285. border-radius: 8rpx;
  286. margin-top: 32rpx;
  287. }
  288. .housingDetail .placeBox .placeTit {
  289. color: #888888;
  290. font-size: 28rpx;
  291. white-space: nowrap;
  292. }
  293. .housingDetail .placeBox .placeInfo {
  294. color: #333333;
  295. font-size: 28rpx;
  296. width: 466rpx;
  297. line-height: 42rpx;
  298. word-wrap: break-word;
  299. }
  300. .housingDetail .placeBox .dhIcon {
  301. width: 48rpx;
  302. height: 48rpx;
  303. }
  304. .housingDetail .housingInfoBox {
  305. display: flex;
  306. flex-direction: column;
  307. margin-top: 32rpx;
  308. }
  309. .housingDetail .housingInfoBox .housingInfoItem {
  310. display: flex;
  311. align-items: center;
  312. margin-bottom: 24rpx;
  313. }
  314. .housingDetail .housingInfoBox .housingInfoItem .infoTitle {
  315. color: #888888;
  316. font-size: 28rpx;
  317. margin-left: 8rpx;
  318. width: 300rpx;
  319. }
  320. .housingDetail .housingInfoBox .housingInfoItem .infoMsg {
  321. font-size: 28rpx;
  322. color: #333333;
  323. }
  324. .housingDetail .housingInfoBox .bzInfo {
  325. width: 640rpx;
  326. padding: 0 24rpx;
  327. word-wrap: break-word;
  328. font-size: 28rpx;
  329. color: #333333;
  330. line-height: 42rpx;
  331. }
  332. .housingDetail .submitBtn {
  333. width: 654rpx;
  334. height: 96rpx;
  335. display: flex;
  336. align-items: center;
  337. justify-content: center;
  338. color: white;
  339. font-size: 35rpx;
  340. background: #0365f9;
  341. margin: 64rpx auto;
  342. }