index.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. /* index.css */
  2. page {
  3. background: #f2f2f2;
  4. }
  5. .top-fixed {
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. right: 0;
  10. z-index: 50;
  11. }
  12. .bgcolor {
  13. background: var(--main);
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. transition: .3s all ease;
  19. opacity: 0;
  20. }
  21. .opacity {
  22. opacity: 1;
  23. }
  24. .top-fixed-c {
  25. position: relative;
  26. }
  27. .back {
  28. position: absolute;
  29. top: 50%;
  30. transform: translateY(-50%);
  31. left: 0;
  32. padding-left: 30rpx;
  33. padding-right: 30rpx;
  34. }
  35. .back image {
  36. width: 17rpx;
  37. height: 31rpx;
  38. }
  39. .top-title {
  40. font-size: 34rpx;
  41. color: #333;
  42. font-weight: 500;
  43. text-align: center;
  44. }
  45. .top-black {
  46. color: #000;
  47. }
  48. .bg {
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. right: 0;
  53. height: 540rpx;
  54. background: linear-gradient(180deg, var(--main) 0%, #fff 100%);
  55. }
  56. .bg image {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. .photo {
  61. width: 690rpx;
  62. height: 500rpx;
  63. position: relative;
  64. }
  65. .poster {
  66. width: 100%;
  67. height: 100%;
  68. border-radius: 20rpx 20rpx 0 0;
  69. }
  70. .change-option{
  71. position: absolute;
  72. right: 30rpx;
  73. bottom: -40rpx;
  74. }
  75. .change {
  76. font-size: 24rpx;
  77. color: #fff;
  78. border-radius: 100%;
  79. background-color: #4891EF;
  80. width: 80rpx;
  81. height: 80rpx;
  82. margin-right: 30rpx;
  83. }
  84. .change:last-child{
  85. margin-right: 0;
  86. }
  87. .change image {
  88. width: 32rpx;
  89. height: 25rpx;
  90. margin:auto;
  91. }
  92. .upload {
  93. width: 100%;
  94. height: 100%;
  95. flex-direction: column;
  96. justify-content: center;
  97. font-size: 26rpx;
  98. color: var(--main);
  99. }
  100. .upload image {
  101. width: 27rpx;
  102. height: 27rpx;
  103. margin: 0 auto 20rpx;
  104. }
  105. .infos {
  106. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 43%, #FFFFFF 100%);
  107. overflow: hidden;
  108. margin-bottom: 30rpx;
  109. }
  110. .infos-border {
  111. width: 683rpx;
  112. box-shadow: 0rpx 4rpx 24rpx 1rpx rgba(0, 0, 0, 0.1);
  113. border-radius: 20rpx 20rpx 20rpx 20rpx;
  114. margin: 32rpx 32rpx 0;
  115. overflow: hidden;
  116. padding-bottom: 30rpx;
  117. }
  118. .info {
  119. background: #fff;
  120. padding: 40rpx;
  121. }
  122. .company {
  123. font-size: 28rpx;
  124. color: #666;
  125. font-weight: 400;
  126. line-height: 40rpx;
  127. margin-top: 13rpx;
  128. }
  129. .company image{
  130. width: 23rpx;
  131. height: 28rpx;
  132. margin-right:9rpx ;
  133. }
  134. .name {
  135. font-size: 48rpx;
  136. color: #333;
  137. font-weight: bold;
  138. margin-top: 30rpx;
  139. line-height: 53rpx;
  140. }
  141. .job {
  142. font-size: 20rpx;
  143. color: #FFFFFF;
  144. margin-left: 12rpx;
  145. font-weight: 400;
  146. padding: 4rpx 10rpx;
  147. line-height: 32rpx;
  148. background: linear-gradient(80deg, #7EBFF1 0%, #458EEE 100%);
  149. border-radius: 5rpx 5rpx 5rpx 5rpx;
  150. opacity: 1;
  151. }
  152. .industry {
  153. display: inline-block;
  154. margin-top: 6rpx;
  155. font-size: 20rpx;
  156. color: #4C8EF1;
  157. padding: 0 12rpx;
  158. height: 36rpx;
  159. line-height: 36rpx;
  160. border-radius: 5rpx 5rpx 5rpx 5rpx;
  161. opacity: 1;
  162. border: 1rpx solid #4C8EF1;
  163. }
  164. .guanzhu {
  165. width: 125rpx;
  166. height: 50rpx;
  167. line-height: 50rpx;
  168. border-radius: 50rpx 50rpx 50rpx 50rpx;
  169. opacity: 1;
  170. border: 2rpx solid #999999;
  171. font-size: 22rpx;
  172. font-weight: 400;
  173. color: #333333;
  174. text-align: center;
  175. margin-top: 30rpx;
  176. }
  177. .logo {
  178. width: 128rpx;
  179. height: 128rpx;
  180. border: 1rpx solid #D9D9D9;
  181. border-radius: 50%;
  182. }
  183. .logo image {
  184. width: 100%;
  185. height: 100%;
  186. border-radius: 50%;
  187. }
  188. .zhan {
  189. justify-content: center;
  190. font-size: 24rpx;
  191. color: #999;
  192. padding: 30rpx 0;
  193. }
  194. .bico {
  195. width: 23rpx;
  196. height: 14rpx;
  197. margin-left: 15rpx;
  198. transition: all .3s ease;
  199. }
  200. .zhan-romate .bico {
  201. transform: rotate(180deg);
  202. }
  203. .share {
  204. width: 541rpx;
  205. height: 94rpx;
  206. background: #DB2A2A;
  207. border-radius: 47rpx;
  208. font-size: 36rpx;
  209. color: #fff;
  210. text-align: center;
  211. line-height: 94rpx;
  212. }
  213. .opt {
  214. justify-content: space-around;
  215. }
  216. .opt .li {
  217. font-size: 26rpx;
  218. color: #333;
  219. }
  220. .opt .li image {
  221. width: 43rpx;
  222. height: 41rpx;
  223. margin: 0 auto 10rpx;
  224. }
  225. .datas {
  226. padding: 28rpx 32rpx;
  227. }
  228. .users {
  229. padding-left: 10rpx;
  230. font-size: 24rpx;
  231. color: #999;
  232. }
  233. .users image {
  234. width: 50rpx;
  235. height: 50rpx;
  236. border-radius: 50%;
  237. margin-left: -10rpx;
  238. }
  239. .users view {
  240. margin-left: 15rpx;
  241. }
  242. .zan,
  243. .renqi {
  244. font-size: 22rpx;
  245. color: #5F5F5F;
  246. }
  247. .renqi {
  248. margin-left: 50rpx;
  249. }
  250. .zan image {
  251. width: 30rpx;
  252. height: 32rpx;
  253. margin-right: 10rpx;
  254. }
  255. .renqi image {
  256. width: 25rpx;
  257. height: 33rpx;
  258. margin-right: 10rpx;
  259. }
  260. .box {
  261. background: #fff;
  262. border-radius: 12rpx;
  263. margin: 30rpx 32rpx;
  264. padding: 0 30rpx;
  265. overflow: hidden;
  266. }
  267. .brief {
  268. padding-bottom: 45rpx;
  269. }
  270. .tit {
  271. font-size: 30rpx;
  272. color: #000;
  273. font-weight: 600;
  274. margin: 35rpx 0 0;
  275. }
  276. .tit image {
  277. width: 42rpx;
  278. height: 42rpx;
  279. margin-right: 20rpx;
  280. }
  281. .tit text {
  282. font-size: 24rpx;
  283. color: #999;
  284. margin-left: 15rpx;
  285. font-weight: normal;
  286. }
  287. .bri {
  288. font-size: 28rpx;
  289. color: #333;
  290. line-height: 38rpx;
  291. margin-top: 25rpx;
  292. }
  293. .card-datas {
  294. margin-top: 20rpx;
  295. }
  296. .card-datas .li {
  297. font-size: 24rpx;
  298. color: #999;
  299. width: 33.33%;
  300. text-align: center;
  301. padding: 35rpx 0;
  302. }
  303. .card-datas .li text {
  304. display: block;
  305. font-size: 38rpx;
  306. color: #333;
  307. margin-bottom: 5rpx;
  308. }
  309. .tit image.edit {
  310. width: 30rpx;
  311. height: 32rpx;
  312. margin-right: 0;
  313. }
  314. .videos {
  315. padding-bottom: 40rpx;
  316. }
  317. .video {
  318. margin-top: 30rpx;
  319. }
  320. .not {
  321. font-size: 30rpx;
  322. color: #999999;
  323. text-align: center;
  324. padding: 70rpx 0 30rpx;
  325. }
  326. .not image {
  327. width: 53rpx;
  328. height: 46rpx;
  329. margin: 0 auto 20rpx;
  330. }
  331. .video-sp {
  332. width: 100%;
  333. height: 352rpx;
  334. border-radius: 4rpx;
  335. }
  336. .pic {
  337. padding-bottom: 40rpx;
  338. }
  339. .picture {
  340. margin-top: 30rpx;
  341. }
  342. .pics image {
  343. width: 100%;
  344. }
  345. .also {
  346. font-size: 26rpx;
  347. color: #DB2A2A;
  348. text-align: center;
  349. padding: 20rpx 0 40rpx;
  350. }
  351. .contacts {
  352. height: 136rpx;
  353. overflow: hidden;
  354. margin: 0rpx 0 0;
  355. }
  356. .contact {
  357. white-space: nowrap;
  358. height: 136rpx;
  359. padding-bottom: 20rpx;
  360. }
  361. .contact .li {
  362. display: inline-block;
  363. height: 136rpx;
  364. background: #FFFFFF;
  365. border: 1rpx solid #CFCFCF;
  366. border-radius: 10rpx;
  367. box-sizing: border-box;
  368. padding: 25rpx 22rpx 0;
  369. margin-right: 25rpx;
  370. min-width: 270rpx;
  371. }
  372. .contact .li:first-child {
  373. margin-left: 32rpx;
  374. }
  375. .contact .li:last-child {
  376. margin-right: 32rpx;
  377. }
  378. .lit {
  379. font-size: 26rpx;
  380. color: #000;
  381. }
  382. .lit image {
  383. width: 34rpx;
  384. height: 34rpx;
  385. margin-right: 10rpx;
  386. }
  387. .num {
  388. font-size: 24rpx;
  389. color: #666;
  390. margin-top: 22rpx;
  391. }
  392. .btns {
  393. justify-content: space-between;
  394. margin: 45rpx 30rpx 30rpx;
  395. overflow: hidden;
  396. }
  397. .share-ta {
  398. height: 80rpx;
  399. font-size: 26rpx;
  400. font-weight: 500 !important;
  401. color: #FFFFFF;
  402. text-align: center;
  403. line-height: 80rpx !important;
  404. border-radius: 47rpx !important;
  405. margin-right: 15rpx !important;
  406. justify-content: center;
  407. }
  408. .share-ta:last-child{
  409. margin-right: 0;
  410. }
  411. .share-ta image{
  412. width: 36rpx;
  413. height: 36rpx;
  414. margin-right: 10rpx;
  415. }
  416. .save {
  417. width: 300rpx;
  418. height: 94rpx;
  419. background: #DB2A2A;
  420. font-size: 36rpx;
  421. color: #fff;
  422. text-align: center;
  423. line-height: 94rpx;
  424. border-radius: 47rpx;
  425. }
  426. .save-text{
  427. color: var(--main);
  428. text-align: center;
  429. margin-top: 43rpx;
  430. justify-content: center;
  431. }
  432. .save-text image{
  433. width: 28rpx;
  434. height: 27rpx;
  435. margin-right: 10rpx;
  436. }
  437. .q-hud {
  438. height: 104rpx;
  439. border-radius: 10rpx;
  440. position: relative;
  441. margin: 40rpx 30rpx 0;
  442. justify-content: space-between;
  443. border-top: 1px solid #E9E9E9;
  444. }
  445. .q-bg {
  446. width: 100%;
  447. height: 100%;
  448. position: absolute;
  449. top: 0;
  450. left: 0;
  451. }
  452. .q-hud-c {
  453. position: relative;
  454. z-index: 2;
  455. height: 100%;
  456. font-size: 24rpx;
  457. color: #999;
  458. padding: 0 0rpx 0 0rpx;
  459. }
  460. .q-users {
  461. margin-right: 20rpx;
  462. }
  463. .q-users image {
  464. width: 50rpx;
  465. height: 50rpx;
  466. border: 2rpx solid #E5E5E5;
  467. border-radius: 50%;
  468. margin-left: -14rpx;
  469. background: #D8D8D8;
  470. }
  471. .q-users image:first-child {
  472. margin-left: 0;
  473. }
  474. .q-rico {
  475. width: 15rpx;
  476. height: 25rpx;
  477. }
  478. .q-hud-r {
  479. font-size: 22rpx;
  480. color: #5F5F5F;
  481. }
  482. .extend-info{
  483. margin: 30rpx;
  484. padding: 37rpx 47rpx;
  485. background:#f8f8f8;
  486. border-radius: 20rpx 20rpx 20rpx 20rpx;
  487. }
  488. .extend-info-data{
  489. font-size: 39rpx;
  490. font-weight: 400;
  491. color: #333333;
  492. text-align: center;
  493. }
  494. .extend-info-label{
  495. font-size: 24rpx;
  496. font-weight: 500;
  497. color: #A1A1A1;
  498. justify-content: center;
  499. text-align: center;
  500. margin-top: 10rpx;
  501. }
  502. .extend-info-label image{
  503. width: 28rpx;
  504. height: 28rpx;
  505. margin-right: 10rpx;
  506. }
  507. .ry-image{
  508. width: 220rpx;
  509. height: 293rpx;
  510. margin-right: 20rpx;
  511. display: inline-block;
  512. }
  513. .ry-image:last-child{
  514. margin-right: 0;
  515. }
  516. .ry-image image{
  517. width: 100%;
  518. height: 100%;
  519. }
  520. /* 评分 */
  521. .pf-box{
  522. padding: 30rpx;
  523. background-color: #fff;
  524. }
  525. .pf-nav{
  526. line-height: 45rpx;
  527. font-size: 32rpx;
  528. font-family: PingFang SC-Bold, PingFang SC;
  529. font-weight: bold;
  530. color: #333333;
  531. }
  532. .pf-more{
  533. line-height: 33rpx;
  534. font-size: 24rpx;
  535. font-family: PingFang SC Regular-, PingFang SC Regular;
  536. font-weight: normal;
  537. color: #9C9392;
  538. }
  539. .pf-number{
  540. line-height: 79rpx;
  541. font-size: 60rpx;
  542. font-family: HarmonyOS Sans-Bold, HarmonyOS Sans;
  543. font-weight: bold;
  544. color: #FF4600;
  545. }
  546. .pf-note{
  547. line-height: 33rpx;
  548. font-size: 24rpx;
  549. font-family: PingFang SC-Regular, PingFang SC;
  550. font-weight: 400;
  551. color: #999999;
  552. text-align: center;
  553. }
  554. .pf-data{
  555. padding: 30rpx;
  556. background: rgba(241, 241, 241, 0.5);
  557. border-radius: 20rpx 20rpx 20rpx 20rpx;
  558. margin-top: 25rpx;
  559. }
  560. .pf-user{
  561. justify-content: space-between;
  562. }
  563. .pf-user-header{
  564. width: 30rpx;
  565. height: 30rpx;
  566. border-radius: 100%;
  567. margin-right: 4rpx;
  568. }
  569. .pf-user-name{
  570. line-height: 40rpx;
  571. font-size: 28rpx;
  572. font-family: PingFang SC-Regular, PingFang SC;
  573. font-weight: 400;
  574. color: #222222;
  575. max-width: 175rpx;
  576. }
  577. .pf-user-time{
  578. line-height: 30rpx;
  579. font-size: 22rpx;
  580. font-family: PingFang SC-Regular, PingFang SC;
  581. font-weight: 400;
  582. color: #999999;
  583. }
  584. .pf-user-content{
  585. margin-top: 20rpx;
  586. line-height: 33rpx;
  587. font-size: 24rpx;
  588. font-family: PingFang SC-Regular, PingFang SC;
  589. font-weight: 400;
  590. color: #333333;
  591. }
  592. .pf-btn{
  593. height: 76rpx;
  594. line-height: 76rpx;
  595. background: #FFFFFF;
  596. border-radius: 10rpx 10rpx 10rpx 10rpx;
  597. opacity: 1;
  598. border: 2rpx solid #DEDEDE;
  599. font-size: 28rpx;
  600. font-family: PingFang SC-Regular, PingFang SC;
  601. font-weight: 400;
  602. color: #7A7B7F;
  603. text-align: center;
  604. margin-top: 30rpx;
  605. }
  606. .index-tab{
  607. padding: 30rpx 30rpx 10rpx;
  608. }
  609. .index-tab view{
  610. margin-right: 40rpx;
  611. color: #7A7B7F;
  612. font-weight: bold;
  613. font-size: 32rpx;
  614. }
  615. .index-tab-active{
  616. color: #333333 !important;
  617. position: relative;
  618. }
  619. .index-tab-active::after{
  620. content: '';
  621. width: 30rpx;
  622. height: 7rpx;
  623. background: #27D699;
  624. border-radius: 4rpx 4rpx 4rpx 4rpx;
  625. opacity: 1;
  626. position: absolute;
  627. bottom: -17rpx;
  628. left: 50%;
  629. transform: translateX(-50%);
  630. }
  631. /* 动态 */
  632. .list{
  633. border-top: 20rpx solid #f5f5f5;
  634. }
  635. .list .li{background: #fff;padding: 40rpx 30rpx 45rpx;margin-bottom: 20rpx;margin: 30rpx;border-radius: 10rpx;}
  636. .userimg{width: 66rpx;height: 66rpx;border-radius: 50%;margin-right: 12rpx;}
  637. .name{font-size: 28rpx;color: #333;font-weight: bold;}
  638. .vip-tag{width: 41rpx;height: 31rpx;margin-left: 10rpx;}
  639. .time{font-size: 24rpx;color: #999;}
  640. .area{font-size: 24rpx;color: #999;margin-top: 8rpx;}
  641. .des{font-size: 30rpx;color: #000;line-height: 50rpx;margin: 30rpx 0 0;-webkit-line-clamp: 5;}
  642. .wen{display: inline-block;width: 60rpx;height: 34rpx;background: #3DB4FF;border-radius: 4rpx;font-size: 24rpx;color: #fff;text-align: center;line-height: 34rpx;margin-right: 15rpx;}
  643. .link{height: 150rpx;background: #F8F8F8;border-radius: 16rpx;padding: 24rpx;font-size: 28rpx;color: #333;box-sizing: border-box;margin-top: 30rpx;}
  644. .link image{width: 102rpx;height: 102rpx;border-radius: 12rpx;margin-right: 12rpx;}
  645. .video{margin: 20rpx 0 0;position: relative;}
  646. .video video{width: 100%;height: 397rpx;border-radius: 15rpx;display: block;}
  647. .video-play{position: absolute;top: 0;left: 0;right: 0;bottom: 0;justify-content: center;background: rgba(0,0,0,.5);border-radius: 15rpx;}
  648. .video-play image{width: 82rpx;height: 82rpx;}
  649. .imgbox{flex-wrap: wrap;margin-top: 20rpx;}
  650. .imgbox image{width: 222rpx;height: 222rpx;border-radius: 16rpx;margin: 0 12rpx 12rpx 0;}
  651. .imgbox image:nth-child(3n){margin-right: 0;}
  652. .topic{height: 40rpx;background: #E1FFF4;border-radius: 20rpx;font-size: 20rpx;color: var(--main);padding: 0 20rpx 0 10rpx;margin-top: 18rpx;}
  653. .topic image{width: 28rpx;height: 28rpx;margin-right: 7rpx;}
  654. .loca{margin-top: 20rpx;font-size: 20rpx;color: #666;}
  655. .loca image{width: 26rpx;height: 31rpx;margin-right: 8rpx;}
  656. .loca text{margin-right: 10rpx;}
  657. .step-box{
  658. background-color: #f7f8fa;
  659. border-radius: 16rpx;
  660. padding: 40rpx;
  661. margin-top: 30rpx;
  662. color: var(--main);
  663. }
  664. .step-date{
  665. font-size: 64rpx;
  666. font-weight: 500;
  667. }
  668. .step-label{
  669. font-size: 24rpx;
  670. font-weight: 500;
  671. }
  672. .step-pic{
  673. width: 150rpx;
  674. height: 150rpx;
  675. background: #E2E2E2;
  676. border-radius: 16rpx 16rpx 16rpx 16rpx;
  677. opacity: 1;
  678. margin-right: 20rpx;
  679. }
  680. .step-title{
  681. height: 74rpx;
  682. line-height: 37rpx;
  683. font-size: 26rpx;
  684. font-family: PingFang SC-Regular, PingFang SC;
  685. font-weight: 400;
  686. color: #1A1F30;
  687. }
  688. .step-price{
  689. line-height: 33rpx;
  690. font-size: 24rpx;
  691. font-family: PingFang SC-Medium, PingFang SC;
  692. font-weight: 500;
  693. color: #999;
  694. }
  695. .step-btn{
  696. width: 94rpx;
  697. height: 46rpx;
  698. line-height: 46rpx;
  699. background: var(--main);
  700. border-radius: 23rpx 23rpx 23rpx 23rpx;
  701. opacity: 1;
  702. text-align: center;
  703. font-size: 28rpx;
  704. color: #FFFFFF;
  705. }
  706. .product{height: 168rpx;margin-top: 30rpx;overflow: hidden;}
  707. .pro-view{height: 168rpx;padding-bottom: 20rpx;white-space: nowrap;}
  708. .pro-view .li{display: inline-block;width: 554rpx;height: 168rpx;background: #F7F8FA;border-radius: 16rpx;margin-right: 20rpx;padding: 16rpx;box-sizing: border-box;}
  709. .pro-view1 .li{width: 688rpx;}
  710. /* .pro-view .li:first-child{margin-left: 30rpx;} */
  711. /* .pro-view .li:last-child{margin-right: 30rpx;} */
  712. .pro-pic{width: 136rpx;height: 136rpx;border-radius: 16rpx;background: #fff;margin-right: 19rpx;}
  713. .title{white-space: initial;font-size: 26rpx;color: #1A1F30;line-height: 37rpx;height: 74rpx;}
  714. .opts{justify-content: space-between;margin-top: 10rpx;}
  715. .money{font-size: 24rpx;color: var(--main);}
  716. .pro-btn{width: 94rpx;height: 46rpx;background: var(--main);border-radius: 23rpx;font-size: 28rpx;color: #fff;text-align: center;line-height: 46rpx;}
  717. .opt{font-size: 24rpx;color: #999;margin-top: 30rpx;justify-content: flex-end;}
  718. .opt image{width: 33rpx;height: 33rpx;margin-right: 8rpx;}
  719. .opt .ddflex{margin-left: 50rpx;}
  720. .opt-share{font-size: 24rpx;color: #999;margin-left: 50rpx !important;}
  721. .vote-box{margin-top: 50rpx;}
  722. .vote-box.ends{background: #f8f8f8;margin-top: 30rpx;padding: 20rpx;}
  723. .vote-tit{font-size: 28rpx;color: #000;}
  724. .vote-list .lis{height: 74rpx;background: #F9FAFC;border: 1rpx solid #EBEBEB;border-radius: 8rpx;font-size: 30rpx;color: var(--main);text-align: center;line-height: 74rpx;margin-top: 20rpx;padding: 0 28rpx;position: relative;overflow: hidden;}
  725. .end .lis{text-align: left;color: #9B9B9B;}
  726. .end .lis view{position: relative;z-index: 2;}
  727. .end .lis view.percent{position: absolute;top: 0;bottom: 0;left: 0;background: #F0F0F0;z-index: 0;}
  728. .end .lis.active{color: var(--main);}
  729. .end .lis.active view.percent{background: #E1FFF4;}
  730. .vote-can{font-size: 22rpx;color: #999;margin-top: 15rpx;}
  731. .vote-can text{margin-right: 15rpx;}