问星数据小程序

hrDetail.wxss 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. /* pages/hrDetail/hrDetail.wxss */
  2. page{
  3. padding-bottom: 50rpx;
  4. }
  5. .loadingView {
  6. padding: 40rpx;
  7. text-align: center;
  8. font-size: 24rpx;
  9. color: #444444;
  10. }
  11. .loadingView .dataLoadingImg {
  12. width: 318rpx;
  13. height: 253rpx;
  14. margin: auto;
  15. }
  16. .goTop {
  17. position: fixed;
  18. bottom: 180rpx;
  19. right: 40rpx;
  20. width: 60rpx;
  21. height: 60rpx;
  22. z-index: 22;
  23. }
  24. .scroll-view-fixed {
  25. width: 100%;
  26. position: fixed;
  27. top: 0;
  28. z-index: 99;
  29. }
  30. .scroll-view_H {
  31. white-space: nowrap;
  32. height: 78rpx;
  33. border-bottom: 2rpx solid #E3E3E3;
  34. background: #ffffff;
  35. }
  36. .scroll-view-item_H {
  37. display: inline-block;
  38. width: 70%;
  39. }
  40. .scroll-view-item_H > view {
  41. display: inline-block;
  42. width: 100px;
  43. text-align: center;
  44. line-height: 78rpx;
  45. font-size: 28rpx;
  46. color: #7D9CAB;
  47. }
  48. .scroll-view-item_H > view.active {
  49. color: #2A89F3;
  50. font-weight: bold;
  51. }
  52. .scroll-view-item_H > view.active::after {
  53. width: 52rpx;
  54. height: 4rpx;
  55. border-radius: 4rpx;
  56. background: #2A85EA;
  57. content: '';
  58. display: block;
  59. margin: auto;
  60. margin-top: -14rpx;
  61. }
  62. .userInfo {
  63. display: flex;
  64. align-items: center;
  65. background: #ffffff;
  66. padding: 10rpx;
  67. height: 286rpx;
  68. background: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/Applet/banner.png") no-repeat;
  69. background-size: 100% 100%;
  70. margin-bottom: 20rpx;
  71. }
  72. .userInfo .userLeft {
  73. width: 200rpx;
  74. position: relative;
  75. }
  76. .userInfo .userLeft::after {
  77. content: '';
  78. display: inline-block;
  79. width: 2rpx;
  80. height: 200rpx;
  81. background: #62A9F8;
  82. vertical-align: middle;
  83. position: absolute;
  84. right: 0;
  85. top: 0;
  86. }
  87. .userInfo .userImg {
  88. width: 130rpx;
  89. height: 130rpx;
  90. border-radius: 50%;
  91. overflow: hidden;
  92. background: #ffffff;
  93. position: relative;
  94. margin: auto;
  95. }
  96. .userInfo .userImg image {
  97. width: 120rpx;
  98. height: 120rpx;
  99. border-radius: 50%;
  100. position: absolute;
  101. top: 0;
  102. bottom: 0;
  103. left: 0;
  104. right: 0;
  105. margin: auto;
  106. }
  107. .userInfo .followButton {
  108. width: 140rpx;
  109. height: 58rpx;
  110. background: white;
  111. border-radius: 12rpx;
  112. color: #2A85EA;
  113. font-size: 28rpx;
  114. line-height: 58rpx;
  115. text-align: center;
  116. margin: 20rpx auto 0;
  117. }
  118. .userInfo .followButton2 {
  119. background: rgba(255, 255, 255, 0.73);
  120. color: #2A85EA;
  121. }
  122. .userInfo .info {
  123. flex: 1;
  124. font-size: 24rpx;
  125. padding-left: 28rpx;
  126. padding-right: 18rpx;
  127. }
  128. .userInfo .info .userName {
  129. width: 440rpx;
  130. color: #FFFFFF;
  131. font-size: 32rpx;
  132. line-height: 44rpx;
  133. font-weight: bold;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. white-space: nowrap;
  137. }
  138. .userInfo .info .fan {
  139. color: #CDE5FF;
  140. font-size: 22rpx;
  141. line-height: 32rpx;
  142. margin-top: 14rpx;
  143. display: flex;
  144. align-items: center;
  145. justify-content: space-between;
  146. }
  147. .userInfo .info .generalize {
  148. color: #CDE5FF;
  149. font-size: 22rpx;
  150. line-height: 32rpx;
  151. margin-top: 14rpx;
  152. }
  153. .userInfo .info .generalize text::before {
  154. content: '';
  155. display: inline-block;
  156. width: 2rpx;
  157. height: 20rpx;
  158. background: #ffffff;
  159. margin-right: 6rpx;
  160. margin-left: 6rpx;
  161. vertical-align: middle;
  162. }
  163. .userInfo .info .generalize text:first-of-type::before {
  164. width: 0rpx;
  165. margin: 0;
  166. }
  167. .userInfo .info .user_text {
  168. display: inline-block;
  169. width: 400rpx;
  170. overflow: hidden;
  171. text-overflow: ellipsis;
  172. white-space: nowrap;
  173. vertical-align: middle;
  174. }
  175. .userInfo .info .user_text_more {
  176. color: #FFFFFF;
  177. vertical-align: middle;
  178. }
  179. .videoAnalysis {
  180. position: relative;
  181. min-height: 600rpx;
  182. background: #ffffff;
  183. }
  184. .videoAnalysis .echartsButton {
  185. background: #ffffff;
  186. }
  187. .videoAnalysis .echartsButton button {
  188. display: inline-block;
  189. width: 130rpx;
  190. height: 48rpx;
  191. font-size: 28rpx;
  192. padding: 0;
  193. margin: 10rpx;
  194. border-radius: 12rpx;
  195. color: #666666;
  196. border: 2rpx solid #666666;
  197. line-height: 48rpx;
  198. background: transparent;
  199. margin-left: 30rpx;
  200. }
  201. .videoAnalysis .echartsButton button.active {
  202. color: #2396F3;
  203. border: 2rpx solid #2396F3;
  204. }
  205. .bringGoodsList {
  206. padding: 20rpx;
  207. border-top: 2rpx solid #f4f4f4;
  208. margin-top: 20rpx;
  209. }
  210. .bringGoodsList .bringGoodsView .bringGoodsInfo {
  211. display: flex;
  212. align-items: center;
  213. padding: 20rpx;
  214. margin-bottom: 20rpx;
  215. border-bottom: 2rpx solid #f4f4f4;
  216. }
  217. .bringGoodsList .bringGoodsView .bringGoodsInfo .videoImg {
  218. width: 140rpx;
  219. height: 140rpx;
  220. border-radius: 4rpx;
  221. overflow: hidden;
  222. }
  223. .bringGoodsList .bringGoodsView .bringGoodsInfo .videoImg image {
  224. width: 100%;
  225. }
  226. .bringGoodsList .bringGoodsView .bringGoodsInfo .info {
  227. flex: 1;
  228. margin-left: 26rpx;
  229. }
  230. .bringGoodsList .bringGoodsView .bringGoodsInfo .info .name {
  231. color: #000000;
  232. font-size: 28rpx;
  233. line-height: 40rpx;
  234. font-weight: bold;
  235. width: 460rpx;
  236. overflow: hidden;
  237. text-overflow: ellipsis;
  238. white-space: nowrap;
  239. }
  240. .bringGoodsList .bringGoodsView .bringGoodsInfo .info .price {
  241. color: #F66A1B;
  242. font-size: 22rpx;
  243. margin-top: 6rpx;
  244. }
  245. .bringGoodsList .bringGoodsView .bringGoodsInfo .info .price .tag {
  246. background: #f1f4fb;
  247. padding: 2rpx 8rpx;
  248. color: #585858;
  249. border-radius: 2rpx;
  250. font-size: 20rpx;
  251. }
  252. .bringGoodsList .bringGoodsView .bringGoodsInfo .info .fan {
  253. display: flex;
  254. align-items: center;
  255. justify-content: space-between;
  256. color: #7D9CAB;
  257. font-size: 28rpx;
  258. line-height: 40rpx;
  259. margin-top: 6rpx;
  260. }
  261. .bringGoodsList .bringGoodsView .bringGoodsInfo .info .fan text {
  262. color: #333333;
  263. font-weight: bold;
  264. }
  265. .dataHint {
  266. color: #333333;
  267. font-size: 24rpx;
  268. line-height: 34rpx;
  269. padding-left: 26rpx;
  270. padding-top: 24rpx;
  271. }
  272. .videoListView .videoListInfo {
  273. display: inline-block;
  274. position: relative;
  275. width: 31%;
  276. height: 340rpx;
  277. overflow: hidden;
  278. margin: 0 1.1%;
  279. margin-bottom: 20rpx;
  280. border: 1px solid #dadada;
  281. border-radius: 8rpx;
  282. }
  283. .videoListView .videoListInfo .videoImg {
  284. width: 100%;
  285. height: 250rpx;
  286. overflow: hidden;
  287. position: relative;
  288. background: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/blur_bg.png") no-repeat;
  289. background-size: 100% 100%;
  290. }
  291. .videoListView .videoListInfo .videoImg image {
  292. width: 100%;
  293. }
  294. .videoListView .videoListInfo .videoImg .ad {
  295. position: absolute;
  296. background: rgba(0, 0, 0, 0.4);
  297. bottom: 0;
  298. left: 0;
  299. width: 100%;
  300. display: flex;
  301. align-items: center;
  302. padding: 10rpx;
  303. }
  304. .videoListView .videoListInfo .videoImg .ad image {
  305. width: 50rpx;
  306. height: 50rpx;
  307. border-radius: 4rpx;
  308. }
  309. .videoListView .videoListInfo .videoImg .ad text {
  310. color: #ffffff;
  311. font-size: 20rpx;
  312. margin-left: 10rpx;
  313. display: inline-block;
  314. width: 80%;
  315. overflow: hidden;
  316. text-overflow: ellipsis;
  317. white-space: nowrap;
  318. }
  319. .videoListView .videoListInfo .time {
  320. background: rgba(0, 0, 0, 0.5);
  321. border-radius: 6rpx;
  322. color: #fff;
  323. font-size: 20rpx;
  324. position: absolute;
  325. padding: 4rpx;
  326. z-index: 4;
  327. top: 14rpx;
  328. left: 8rpx;
  329. }
  330. .videoListView .videoListInfo .other {
  331. display: flex;
  332. align-items: center;
  333. justify-content: space-around;
  334. font-size: 20rpx;
  335. color: #7D9CAB;
  336. line-height: 40rpx;
  337. }
  338. .videoListView .videoListInfo .other view {
  339. text-align: center;
  340. }
  341. .videoListView .videoListInfo .other text {
  342. font-size: 24rpx;
  343. display: block;
  344. color: #333;
  345. }
  346. .videoTop {
  347. display: flex;
  348. align-items: center;
  349. justify-content: space-between;
  350. border-top: 2rpx solid #f4f4f4;
  351. padding: 20rpx 0;
  352. margin-top: 20rpx;
  353. }
  354. .videoTop .checkboxView {
  355. font-size: 24rpx;
  356. color: #333333;
  357. padding-right: 40rpx;
  358. vertical-align: middle;
  359. }
  360. .videoTop .checkboxView .checkbox {
  361. transform: scale(0.6, 0.6);
  362. vertical-align: middle;
  363. }
  364. .listView {
  365. margin: 0 20rpx 0;
  366. padding: 30rpx 22rpx;
  367. border-bottom: 2rpx solid #f4f4f4;
  368. }
  369. .listView .infoView {
  370. display: flex;
  371. align-items: center;
  372. }
  373. .listView .infoView .coverImg {
  374. width: 160rpx;
  375. height: 200rpx;
  376. position: relative;
  377. overflow: hidden;
  378. background: url("https://kx-bigdata.oss-cn-beijing.aliyuncs.com/blur_bg.png") no-repeat;
  379. background-size: 100% 100%;
  380. margin-right: 32rpx;
  381. }
  382. .listView .infoView .coverImg image {
  383. width: 100%;
  384. position: absolute;
  385. top: 0;
  386. bottom: 0;
  387. left: 0;
  388. right: 0;
  389. margin: auto;
  390. }
  391. .listView .infoView .info {
  392. flex: 1;
  393. padding: 0 10rpx;
  394. }
  395. .listView .infoView .info .caption {
  396. font-size: 28rpx;
  397. line-height: 40rpx;
  398. font-weight: bold;
  399. display: -webkit-box;
  400. overflow: hidden;
  401. text-overflow: ellipsis;
  402. word-wrap: break-word;
  403. white-space: normal !important;
  404. -webkit-line-clamp: 2;
  405. -webkit-box-orient: vertical;
  406. }
  407. .listView .infoView .info .nameInfo {
  408. display: flex;
  409. align-items: center;
  410. justify-content: space-between;
  411. font-size: 24rpx;
  412. color: #333333;
  413. margin-top: 6rpx;
  414. }
  415. .listView .infoView .info .nameInfo .name image {
  416. display: inline-block;
  417. width: 32rpx;
  418. height: 32rpx;
  419. vertical-align: middle;
  420. border-radius: 50%;
  421. margin-right: 10rpx;
  422. }
  423. .listView .infoView .info .time {
  424. font-size: 20rpx;
  425. color: #888888;
  426. line-height: 28rpx;
  427. margin-top: 12rpx;
  428. }
  429. .listView .infoView .info .other_info {
  430. display: flex;
  431. align-items: center;
  432. justify-content: space-between;
  433. font-size: 24rpx;
  434. line-height: 34rpx;
  435. color: #7D9CAB;
  436. margin-top: 4rpx;
  437. }
  438. .listView .infoView .info .other_info text {
  439. color: #333333;
  440. font-weight: bold;
  441. }