enterpriseSide.wxss 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  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. .enterpriseSide {
  181. background: #f5f7fa;
  182. }
  183. .enterpriseSide .searchTop {
  184. background: white;
  185. position: relative;
  186. display: flex;
  187. align-items: center;
  188. }
  189. .enterpriseSide .searchTop .searchArea {
  190. position: relative;
  191. width: 532rpx;
  192. height: 64rpx;
  193. background: #f5f7fa;
  194. border-radius: 32rpx;
  195. padding-left: 68rpx;
  196. font-size: 28rpx;
  197. }
  198. .enterpriseSide .searchTop .locationIcon {
  199. position: absolute;
  200. width: 28rpx;
  201. height: 28rpx;
  202. left: 24rpx;
  203. z-index: 10;
  204. }
  205. .enterpriseSide .searchTop .dhIcon {
  206. width: 48rpx;
  207. height: 48rpx;
  208. margin-left: 16rpx;
  209. }
  210. .enterpriseSide .searchTop .vector {
  211. position: absolute;
  212. width: 16rpx;
  213. height: 8rpx;
  214. left: 552rpx;
  215. }
  216. .enterpriseSide .parkBgBox {
  217. position: relative;
  218. background-repeat: no-repeat;
  219. background-size: 100%;
  220. width: 702rpx;
  221. height: 320rpx;
  222. margin-top: 24rpx;
  223. }
  224. .enterpriseSide .parkBgBox .parkNameBox {
  225. position: absolute;
  226. box-sizing: border-box;
  227. width: 100%;
  228. height: 64rpx;
  229. background: rgba(3, 19, 41, 0.6);
  230. display: flex;
  231. align-items: center;
  232. padding-left: 24rpx;
  233. bottom: 0;
  234. color: white;
  235. font-size: 28rpx;
  236. border-radius: 0 0 16rpx 16rpx;
  237. z-index: 1000;
  238. }
  239. .enterpriseSide .map2 {
  240. box-sizing: border-box;
  241. z-index: 2;
  242. width: 100%;
  243. background: white;
  244. padding: 36rpx 0 0 0;
  245. overflow-y: auto;
  246. display: grid;
  247. grid-template-columns: repeat(5, 1fr);
  248. }
  249. .enterpriseSide .mapIcon2 {
  250. width: 92rpx;
  251. height: 92rpx;
  252. display: block;
  253. margin: auto;
  254. }
  255. .enterpriseSide .mapdom2 {
  256. height: 184rpx;
  257. }
  258. .enterpriseSide .noticeBody {
  259. padding: 24rpx 28rpx;
  260. background: white;
  261. display: flex;
  262. align-items: center;
  263. margin: 24rpx 0;
  264. }
  265. .enterpriseSide .noticeBody .tongzhiImg {
  266. width: 86rpx;
  267. height: 96rpx;
  268. }
  269. .enterpriseSide .noticeBody .columLine {
  270. width: 2rpx;
  271. height: 80rpx;
  272. background: #e7eaf0;
  273. margin: 0 16rpx;
  274. }
  275. .enterpriseSide .noticeBody .noticeBox {
  276. display: flex;
  277. flex-direction: column;
  278. }
  279. .enterpriseSide .noticeBody .noticeBox .noticeItem {
  280. display: flex;
  281. align-items: center;
  282. margin: 8rpx 0;
  283. }
  284. .enterpriseSide .noticeBody .noticeBox .noticeItem .noticeTag {
  285. width: 56rpx;
  286. height: 30rpx;
  287. background: #ffffff;
  288. border-radius: 4rpx 4rpx 4rpx 4rpx;
  289. border: 2rpx solid #0365f9;
  290. color: #0365f9;
  291. font-size: 22rpx;
  292. text-align: center;
  293. display: flex;
  294. align-items: center;
  295. justify-content: center;
  296. }
  297. .enterpriseSide .noticeBody .noticeBox .noticeItem .noticeInfo {
  298. width: 326rpx;
  299. font-size: 24rpx;
  300. color: #18172a;
  301. overflow: hidden;
  302. white-space: nowrap;
  303. text-overflow: ellipsis;
  304. margin: 0 24rpx;
  305. }
  306. .enterpriseSide .noticeBody .noticeBox .noticeItem .noticeTime {
  307. color: #666666;
  308. font-size: 24rpx;
  309. }
  310. .enterpriseSide .parkDynamic {
  311. width: 100%;
  312. background: white;
  313. padding: 24rpx;
  314. box-sizing: border-box;
  315. }
  316. .enterpriseSide .parkDynamic .parkDynamicTab {
  317. display: flex;
  318. padding: 26px 0;
  319. }
  320. .enterpriseSide .parkDynamic .parkDynamicTab .tabItem {
  321. color: #666666;
  322. font-size: 28rpx;
  323. margin: 0 32rpx;
  324. }
  325. .enterpriseSide .parkDynamic .parkDynamicTab .selectTabItem {
  326. color: #18172a;
  327. border-bottom: 6rpx solid #034df7;
  328. }
  329. .enterpriseSide .serviceEvaluation {
  330. width: 100%;
  331. background: white;
  332. padding: 24rpx;
  333. box-sizing: border-box;
  334. margin-top: 24rpx;
  335. }
  336. .enterpriseSide .serviceEvaluation .wyInfo {
  337. display: flex;
  338. align-items: center;
  339. justify-content: space-between;
  340. }
  341. .enterpriseSide .serviceEvaluation .wyInfo .wyName {
  342. display: flex;
  343. align-items: center;
  344. font-size: 36rpx;
  345. color: #18172a;
  346. margin: 38rpx 8rpx 24rpx 8rpx;
  347. }
  348. .enterpriseSide .serviceEvaluation .wyInfo .wyName .wyhead {
  349. width: 88rpx;
  350. height: 88rpx;
  351. margin-right: 24rpx;
  352. }
  353. .enterpriseSide .serviceEvaluation .evaluationBox {
  354. width: 702rpx;
  355. height: 196rpx;
  356. padding: 42rpx 0 42rpx 48rpx;
  357. background: #f5f7fa;
  358. border-radius: 8rpx;
  359. box-sizing: border-box;
  360. }
  361. .enterpriseSide .serviceEvaluation .evaluationBox .evaluationBoxName {
  362. font-size: 28rpx;
  363. color: #18172a;
  364. margin-bottom: 32rpx;
  365. }
  366. .enterpriseSide .contactInfo {
  367. display: flex;
  368. justify-content: space-between;
  369. align-items: center;
  370. padding: 30rpx 48rpx;
  371. box-sizing: border-box;
  372. background: white;
  373. margin: 4rpx 0 74rpx 0;
  374. }
  375. .enterpriseSide .contactInfo .infoBox {
  376. display: flex;
  377. flex-direction: column;
  378. }
  379. .enterpriseSide .contactInfo .infoBox .infoTitle {
  380. color: #666666;
  381. font-size: 28rpx;
  382. margin-bottom: 16rpx;
  383. }
  384. .enterpriseSide .contactInfo .infoBox .phoneNumber {
  385. color: #18172a;
  386. font-size: 40rpx;
  387. font-weight: 600;
  388. }
  389. .enterpriseSide .contactInfo .phoneCall {
  390. width: 88rpx;
  391. height: 88rpx;
  392. }
  393. .enterpriseSide .columLineBlue {
  394. width: 10rpx;
  395. height: 32rpx;
  396. background: linear-gradient(180deg, #509fff 0%, #034df7 100%);
  397. border-radius: 1px 1px 1px 1px;
  398. margin-right: 16rpx;
  399. }
  400. .enterpriseSide .titleName {
  401. color: #18172a;
  402. font-size: 36rpx;
  403. font-weight: 500;
  404. }
  405. .enterpriseSide .parkDynamicTitle {
  406. display: flex;
  407. align-items: center;
  408. }
  409. .enterpriseSide .swiperImg {
  410. width: 702rpx;
  411. height: 320rpx;
  412. }