detail-style.css 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. /* 页面背景 */
  2. page {
  3. background-color: #F8F8F8;
  4. }
  5. .detail-container {
  6. padding-bottom: 200rpx;
  7. }
  8. /* 骨架屏加载动画 */
  9. .loading-container {
  10. padding: 30rpx;
  11. }
  12. .skeleton-header {
  13. background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  14. border-radius: 20rpx;
  15. padding: 40rpx;
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. margin-bottom: 20rpx;
  20. }
  21. .skeleton-progress {
  22. background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  23. border-radius: 0 0 20rpx 20rpx;
  24. margin-top: -40rpx;
  25. padding: 30rpx 40rpx 40rpx;
  26. display: flex;
  27. justify-content: space-around;
  28. margin-bottom: 25rpx;
  29. }
  30. .skeleton-circle {
  31. width: 40rpx;
  32. height: 40rpx;
  33. border-radius: 50%;
  34. background-color: rgba(255, 255, 255, 0.3);
  35. }
  36. .skeleton-card {
  37. background-color: #fff;
  38. border-radius: 20rpx;
  39. padding: 30rpx;
  40. margin-bottom: 25rpx;
  41. box-shadow: 0 5rpx 20rpx rgba(0, 0, 0, 0.03);
  42. }
  43. .skeleton-line {
  44. border-radius: 8rpx;
  45. background-color: #f0f0f0;
  46. }
  47. /* 骨架屏闪光动画 */
  48. .skeleton-ani {
  49. background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
  50. background-size: 400% 100%;
  51. animation: skeleton-loading 1.4s ease infinite;
  52. }
  53. .skeleton-header .skeleton-ani {
  54. background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.35) 37%, rgba(255, 255, 255, 0.2) 63%);
  55. background-size: 400% 100%;
  56. animation: skeleton-loading 1.4s ease infinite;
  57. }
  58. .skeleton-progress .skeleton-ani {
  59. background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.35) 37%, rgba(255, 255, 255, 0.2) 63%);
  60. background-size: 400% 100%;
  61. animation: skeleton-loading 1.4s ease infinite;
  62. }
  63. @keyframes skeleton-loading {
  64. 0% {
  65. background-position: 100% 50%;
  66. }
  67. 100% {
  68. background-position: 0 50%;
  69. }
  70. }
  71. /* 顶部动态状态区 */
  72. .detail-header {
  73. background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  74. padding: 40rpx 40rpx 50rpx 40rpx;
  75. color: #fff;
  76. border-radius: 20rpx;
  77. margin: 30rpx 30rpx 25rpx 30rpx;
  78. box-shadow: 0 5rpx 15rpx rgba(255, 87, 34, 0.2);
  79. }
  80. .status-row {
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. margin-bottom: 40rpx;
  85. }
  86. .status-title {
  87. font-size: 28rpx;
  88. font-weight: bold;
  89. }
  90. .status-price {
  91. font-size: 40rpx;
  92. font-weight: bold;
  93. }
  94. /* 进度条 */
  95. .progress-bar {
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: flex-start;
  99. padding: 0 10rpx;
  100. }
  101. /* 默认步骤:未完成,半透明 */
  102. .step-item {
  103. display: flex;
  104. flex-direction: column;
  105. align-items: center;
  106. flex: 1;
  107. position: relative;
  108. opacity: 0.5;
  109. }
  110. /* 已完成步骤:高亮 */
  111. .step-item.done {
  112. opacity: 1;
  113. }
  114. .step-item.done .step-circle {
  115. background-color: #fff;
  116. color: #FF5722;
  117. font-weight: bold;
  118. }
  119. .step-item.done .step-text {
  120. font-weight: 500;
  121. }
  122. /* 当前步骤:最强调 */
  123. .step-item.active {
  124. opacity: 1;
  125. }
  126. .step-item.active .step-circle {
  127. background-color: #fff;
  128. color: #FF5722;
  129. font-weight: bold;
  130. width: 48rpx;
  131. height: 48rpx;
  132. font-size: 24rpx;
  133. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.15);
  134. }
  135. .step-item.active .step-text {
  136. font-weight: bold;
  137. }
  138. .step-circle-wrapper {
  139. position: relative;
  140. width: 100%;
  141. display: flex;
  142. justify-content: center;
  143. margin-bottom: 10rpx;
  144. }
  145. /* 默认圆圈:半透明 */
  146. .step-circle {
  147. width: 40rpx;
  148. height: 40rpx;
  149. border-radius: 50%;
  150. background-color: rgba(255, 255, 255, 0.3);
  151. color: rgba(255, 255, 255, 0.8);
  152. font-size: 20rpx;
  153. display: flex;
  154. justify-content: center;
  155. align-items: center;
  156. position: relative;
  157. z-index: 2;
  158. transition: all 0.2s;
  159. }
  160. /* 连接线 */
  161. .step-line {
  162. position: absolute;
  163. top: 50%;
  164. right: calc(50% + 20rpx);
  165. width: calc(100% - 40rpx);
  166. height: 2rpx;
  167. background-color: rgba(255, 255, 255, 0.3);
  168. z-index: 1;
  169. transform: translateY(-50%);
  170. }
  171. .step-line.active-line {
  172. background-color: #fff;
  173. height: 3rpx;
  174. }
  175. .step-text {
  176. font-size: 24rpx;
  177. }
  178. /* 内容区通用卡片 */
  179. .detail-content {
  180. width: 100%;
  181. box-sizing: border-box;
  182. padding: 0 30rpx;
  183. position: relative;
  184. z-index: 10;
  185. }
  186. .white-card {
  187. background-color: #fff;
  188. border-radius: 20rpx;
  189. padding: 30rpx;
  190. margin-bottom: 25rpx;
  191. box-shadow: 0 5rpx 20rpx rgba(0, 0, 0, 0.03);
  192. }
  193. /* 宠物信息条 */
  194. .pet-bar {
  195. display: flex;
  196. align-items: center;
  197. }
  198. .pb-avatar {
  199. width: 100rpx;
  200. height: 100rpx;
  201. border-radius: 50%;
  202. margin-right: 20rpx;
  203. }
  204. .pb-info {
  205. flex: 1;
  206. display: flex;
  207. flex-direction: column;
  208. }
  209. .pb-name-row {
  210. margin-bottom: 10rpx;
  211. }
  212. .pb-name {
  213. font-size: 32rpx;
  214. font-weight: bold;
  215. color: #333;
  216. margin-right: 15rpx;
  217. }
  218. .pb-breed {
  219. font-size: 26rpx;
  220. color: #999;
  221. }
  222. .pb-tags {
  223. display: flex;
  224. }
  225. .pb-tag {
  226. background-color: #FFF3E0;
  227. color: #FF9800;
  228. font-size: 22rpx;
  229. padding: 4rpx 16rpx;
  230. border-radius: 8rpx;
  231. }
  232. .pb-actions {
  233. display: flex;
  234. align-items: center;
  235. }
  236. .pb-btn {
  237. display: flex;
  238. align-items: center;
  239. justify-content: center;
  240. }
  241. .profile-btn {
  242. border: 2rpx solid #FF9800;
  243. color: #FF9800;
  244. font-size: 24rpx;
  245. padding: 8rpx 20rpx;
  246. border-radius: 30rpx;
  247. margin-right: 20rpx;
  248. }
  249. .phone-btn {
  250. width: 60rpx;
  251. height: 60rpx;
  252. border-radius: 50%;
  253. background-color: #FFF3E0;
  254. }
  255. .phone-icon {
  256. width: 32rpx;
  257. height: 32rpx;
  258. }
  259. /* 服务及路线信息 */
  260. .si-row {
  261. display: flex;
  262. align-items: flex-start;
  263. margin-bottom: 30rpx;
  264. }
  265. .si-row:last-child {
  266. margin-bottom: 0;
  267. }
  268. .si-icon {
  269. width: 36rpx;
  270. height: 36rpx;
  271. margin-right: 20rpx;
  272. margin-top: 4rpx;
  273. }
  274. .si-icon-uni {
  275. margin-right: 20rpx;
  276. margin-top: 4rpx;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. }
  281. .si-content {
  282. flex: 1;
  283. display: flex;
  284. flex-direction: column;
  285. }
  286. .si-label {
  287. font-size: 24rpx;
  288. color: #999;
  289. margin-bottom: 6rpx;
  290. }
  291. .icon-bg {
  292. width: 44rpx;
  293. height: 44rpx;
  294. border-radius: 8rpx;
  295. display: flex;
  296. justify-content: center;
  297. align-items: center;
  298. margin-right: 20rpx;
  299. margin-top: 4rpx;
  300. flex-shrink: 0;
  301. }
  302. .icon-bg.grey-bg {
  303. background-color: #F8F8F8;
  304. }
  305. .custom-icon {
  306. width: 28rpx;
  307. height: 28rpx;
  308. }
  309. .custom-icon-file {
  310. width: 36rpx;
  311. height: 36rpx;
  312. }
  313. .si-val {
  314. font-size: 28rpx;
  315. color: #333;
  316. }
  317. .record-btn {
  318. font-size: 24rpx;
  319. color: #FF5722;
  320. display: flex;
  321. align-items: center;
  322. }
  323. .record-arrow {
  324. width: 24rpx;
  325. height: 24rpx;
  326. margin-left: 6rpx;
  327. }
  328. .record-history-row {
  329. margin-top: 30rpx;
  330. padding-top: 25rpx;
  331. border-top: 1px dashed #f0f0f0;
  332. display: flex;
  333. justify-content: space-between;
  334. align-items: center;
  335. }
  336. /* 地址展现复用图标逻辑 */
  337. .addr-row {
  338. position: relative;
  339. align-items: stretch;
  340. }
  341. .icon-circle {
  342. width: 40rpx;
  343. height: 40rpx;
  344. border-radius: 50%;
  345. color: #fff;
  346. font-size: 22rpx;
  347. display: flex;
  348. align-items: center;
  349. justify-content: center;
  350. margin-right: 20rpx;
  351. flex-shrink: 0;
  352. font-weight: bold;
  353. margin-top: 6rpx;
  354. position: relative;
  355. z-index: 1;
  356. }
  357. .icon-circle.start {
  358. background-color: #FFB74D;
  359. }
  360. .icon-circle.end {
  361. background-color: #81C784;
  362. }
  363. .icon-circle.service {
  364. background-color: #81C784;
  365. }
  366. .route-line-vertical {
  367. position: absolute;
  368. left: 19rpx;
  369. top: 46rpx;
  370. bottom: -6rpx;
  371. border-left: 2rpx dashed #E0E0E0;
  372. width: 0;
  373. z-index: 0;
  374. }
  375. .si-addr-title {
  376. font-size: 30rpx;
  377. font-weight: bold;
  378. color: #333;
  379. margin-bottom: 6rpx;
  380. }
  381. .si-addr-desc {
  382. font-size: 24rpx;
  383. color: #999;
  384. }
  385. .nav-btn-circle {
  386. width: 50rpx;
  387. height: 50rpx;
  388. background-color: #FFF3E0;
  389. border-radius: 50%;
  390. display: flex;
  391. align-items: center;
  392. justify-content: center;
  393. margin-top: 6rpx;
  394. }
  395. .nav-arrow {
  396. width: 28rpx;
  397. height: 28rpx;
  398. }
  399. /* 打卡任务区 */
  400. .task-card {
  401. display: flex;
  402. flex-direction: column;
  403. }
  404. .tc-title {
  405. font-size: 30rpx;
  406. font-weight: bold;
  407. color: #333;
  408. margin-bottom: 15rpx;
  409. }
  410. .tc-desc {
  411. font-size: 22rpx;
  412. color: #666;
  413. margin-bottom: 12rpx;
  414. }
  415. .media-grid {
  416. display: flex;
  417. flex-wrap: wrap;
  418. gap: 20rpx;
  419. margin-bottom: 20rpx;
  420. }
  421. .media-item {
  422. width: 160rpx;
  423. height: 160rpx;
  424. position: relative;
  425. border-radius: 12rpx;
  426. }
  427. .media-preview {
  428. width: 100%;
  429. height: 100%;
  430. border-radius: 12rpx;
  431. }
  432. .media-del {
  433. position: absolute;
  434. top: -10rpx;
  435. right: -10rpx;
  436. width: 36rpx;
  437. height: 36rpx;
  438. background-color: rgba(0, 0, 0, 0.5);
  439. color: #fff;
  440. border-radius: 50%;
  441. display: flex;
  442. align-items: center;
  443. justify-content: center;
  444. font-size: 24rpx;
  445. z-index: 2;
  446. }
  447. .media-add {
  448. width: 160rpx;
  449. height: 160rpx;
  450. border: 2rpx dashed #ccc;
  451. border-radius: 12rpx;
  452. display: flex;
  453. flex-direction: column;
  454. align-items: center;
  455. justify-content: center;
  456. background-color: #FAFAFA;
  457. box-sizing: border-box;
  458. }
  459. .upload-icon-small {
  460. width: 40rpx;
  461. height: 40rpx;
  462. margin-bottom: 10rpx;
  463. }
  464. .upload-text-small {
  465. font-size: 22rpx;
  466. color: #999;
  467. }
  468. .full-media-add {
  469. width: 100%;
  470. height: 140rpx;
  471. background-color: #FAFAFA;
  472. border: 2rpx dashed #E0E0E0;
  473. border-radius: 12rpx;
  474. display: flex;
  475. flex-direction: column;
  476. justify-content: center;
  477. align-items: center;
  478. margin-top: 10rpx;
  479. }
  480. .upload-icon-large {
  481. width: 50rpx;
  482. height: 50rpx;
  483. margin-bottom: 10rpx;
  484. opacity: 0.5;
  485. }
  486. .upload-text-large {
  487. font-size: 24rpx;
  488. color: #999;
  489. }
  490. /* 基础信息区 */
  491. .bi-row {
  492. display: flex;
  493. align-items: flex-start;
  494. margin-bottom: 25rpx;
  495. }
  496. .bi-row:last-child {
  497. margin-bottom: 0;
  498. }
  499. .bi-icon {
  500. width: 32rpx;
  501. height: 32rpx;
  502. margin-right: 20rpx;
  503. margin-top: 4rpx;
  504. }
  505. .bi-icon-uni {
  506. margin-right: 20rpx;
  507. margin-top: 4rpx;
  508. display: flex;
  509. align-items: center;
  510. justify-content: center;
  511. }
  512. .bi-content {
  513. flex: 1;
  514. display: flex;
  515. flex-direction: column;
  516. }
  517. .bi-label {
  518. font-size: 24rpx;
  519. color: #999;
  520. margin-bottom: 6rpx;
  521. }
  522. .bi-val-row {
  523. display: flex;
  524. align-items: center;
  525. }
  526. .bi-val {
  527. font-size: 28rpx;
  528. color: #333;
  529. }
  530. .bi-copy {
  531. background-color: #F0F0F0;
  532. color: #666;
  533. font-size: 20rpx;
  534. padding: 2rpx 10rpx;
  535. border-radius: 6rpx;
  536. margin-left: 15rpx;
  537. }
  538. /* 订单进度 */
  539. .tl-title-row {
  540. display: flex;
  541. align-items: center;
  542. margin-bottom: 30rpx;
  543. }
  544. .orange-bar {
  545. width: 8rpx;
  546. height: 32rpx;
  547. background-color: #FF9800;
  548. margin-right: 16rpx;
  549. border-radius: 4rpx;
  550. }
  551. .tl-title {
  552. font-size: 30rpx;
  553. font-weight: bold;
  554. color: #333;
  555. }
  556. .tl-list {
  557. display: flex;
  558. flex-direction: column;
  559. padding-left: 10rpx;
  560. }
  561. .tl-item {
  562. display: flex;
  563. position: relative;
  564. padding-bottom: 40rpx;
  565. }
  566. .tl-item:last-child {
  567. padding-bottom: 0;
  568. }
  569. .tl-marker {
  570. width: 16rpx;
  571. height: 16rpx;
  572. border-radius: 50%;
  573. background-color: #E0E0E0;
  574. position: absolute;
  575. left: 0;
  576. top: 6rpx;
  577. z-index: 2;
  578. display: flex;
  579. justify-content: center;
  580. align-items: center;
  581. }
  582. .tl-marker.active {
  583. background-color: #fff;
  584. border: 3rpx solid #FF9800;
  585. width: 18rpx;
  586. height: 18rpx;
  587. left: -1rpx;
  588. /* offset for border width */
  589. }
  590. .tl-dot-inner {
  591. width: 10rpx;
  592. height: 10rpx;
  593. border-radius: 50%;
  594. background-color: #FF9800;
  595. }
  596. .tl-item:not(:last-child)::after {
  597. content: '';
  598. position: absolute;
  599. left: 7rpx;
  600. top: 24rpx;
  601. bottom: -6rpx;
  602. width: 2rpx;
  603. background-color: #FFE0B2;
  604. z-index: 1;
  605. }
  606. .tl-content-row {
  607. margin-left: 40rpx;
  608. display: flex;
  609. flex-direction: column;
  610. width: 100%;
  611. }
  612. .tl-header {
  613. display: flex;
  614. justify-content: space-between;
  615. align-items: center;
  616. width: 100%;
  617. margin-bottom: 10rpx;
  618. }
  619. .tl-status {
  620. font-size: 28rpx;
  621. color: #333;
  622. font-weight: 500;
  623. }
  624. .tl-time {
  625. font-size: 24rpx;
  626. color: #999;
  627. }
  628. .tl-medias {
  629. display: flex;
  630. flex-wrap: wrap;
  631. gap: 15rpx;
  632. margin-bottom: 15rpx;
  633. }
  634. .tl-img {
  635. width: 140rpx;
  636. height: 140rpx;
  637. border-radius: 8rpx;
  638. }
  639. .tl-remark {
  640. font-size: 24rpx;
  641. color: #666;
  642. background-color: #F9F9F9;
  643. padding: 15rpx;
  644. border-radius: 8rpx;
  645. line-height: 1.5;
  646. }
  647. /* 底部操作栏 */
  648. .bottom-action-bar {
  649. position: fixed;
  650. bottom: 0;
  651. left: 0;
  652. width: 100%;
  653. height: 120rpx;
  654. background-color: #fff;
  655. display: flex;
  656. align-items: center;
  657. justify-content: space-between;
  658. padding: 0 30rpx;
  659. box-shadow: 0 -5rpx 20rpx rgba(0, 0, 0, 0.05);
  660. box-sizing: border-box;
  661. padding-bottom: constant(safe-area-inset-bottom);
  662. padding-bottom: env(safe-area-inset-bottom);
  663. z-index: 100;
  664. }
  665. .action-left,
  666. .action-right {
  667. display: flex;
  668. align-items: center;
  669. }
  670. .action-btn {
  671. height: 64rpx;
  672. line-height: 64rpx;
  673. border-radius: 32rpx;
  674. font-size: 26rpx;
  675. padding: 0 35rpx;
  676. margin: 0;
  677. }
  678. .action-left .action-btn:first-child {
  679. margin-right: 20rpx;
  680. }
  681. .action-btn.grey-outline {
  682. background-color: #fff;
  683. color: #666;
  684. border: 1px solid #E0E0E0;
  685. }
  686. .action-btn.orange-outline {
  687. background-color: #FFF8F0;
  688. color: #FF9800;
  689. border: 1px solid #FF9800;
  690. }
  691. .action-btn.primary {
  692. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  693. color: #fff;
  694. box-shadow: 0 4rpx 12rpx rgba(255, 87, 34, 0.2);
  695. border: none;
  696. }
  697. .action-btn.grey-bg {
  698. background: #E0E0E0;
  699. color: #999;
  700. box-shadow: none;
  701. border: none;
  702. }
  703. .action-btn::after {
  704. border: none;
  705. }
  706. /* 上传图片视频弹窗 */
  707. .upload-modal-mask {
  708. position: fixed;
  709. top: 0;
  710. left: 0;
  711. width: 100%;
  712. height: 100%;
  713. background-color: rgba(0, 0, 0, 0.4);
  714. z-index: 999;
  715. display: flex;
  716. justify-content: center;
  717. align-items: center;
  718. }
  719. .upload-modal-content {
  720. width: 600rpx;
  721. background-color: #ffffff;
  722. border-radius: 20rpx;
  723. padding: 40rpx;
  724. box-sizing: border-box;
  725. display: flex;
  726. flex-direction: column;
  727. }
  728. .um-header {
  729. text-align: center;
  730. margin-bottom: 40rpx;
  731. }
  732. .um-title {
  733. font-size: 32rpx;
  734. font-weight: bold;
  735. color: #333;
  736. }
  737. .um-remark-hint {
  738. display: block;
  739. font-size: 22rpx;
  740. color: #999;
  741. margin-top: 16rpx;
  742. line-height: 1.4;
  743. }
  744. .um-grid {
  745. display: flex;
  746. flex-wrap: wrap;
  747. margin-bottom: 30rpx;
  748. }
  749. .um-item {
  750. width: 130rpx;
  751. height: 130rpx;
  752. border-radius: 8rpx;
  753. margin-right: 20rpx;
  754. margin-bottom: 20rpx;
  755. position: relative;
  756. background-color: #f5f5f5;
  757. overflow: hidden;
  758. }
  759. .um-item:nth-child(4n) {
  760. margin-right: 0;
  761. }
  762. .um-preview {
  763. width: 100%;
  764. height: 100%;
  765. }
  766. .um-del {
  767. position: absolute;
  768. top: 4rpx;
  769. right: 4rpx;
  770. width: 36rpx;
  771. height: 36rpx;
  772. line-height: 32rpx;
  773. text-align: center;
  774. background-color: rgba(0, 0, 0, 0.5);
  775. color: #fff;
  776. border-radius: 50%;
  777. font-size: 28rpx;
  778. z-index: 10;
  779. }
  780. .um-video-badge {
  781. position: absolute;
  782. top: 0;
  783. left: 0;
  784. right: 0;
  785. bottom: 0;
  786. display: flex;
  787. justify-content: center;
  788. align-items: center;
  789. background-color: rgba(0, 0, 0, 0.2);
  790. z-index: 5;
  791. }
  792. .play-icon-small {
  793. width: 48rpx;
  794. height: 48rpx;
  795. opacity: 0.9;
  796. }
  797. .um-add {
  798. width: 130rpx;
  799. height: 130rpx;
  800. border-radius: 8rpx;
  801. border: 1px dashed #e5e5e5;
  802. display: flex;
  803. flex-direction: column;
  804. justify-content: center;
  805. align-items: center;
  806. box-sizing: border-box;
  807. margin-bottom: 20rpx;
  808. }
  809. .um-add-icon {
  810. width: 44rpx;
  811. height: 44rpx;
  812. margin-bottom: 10rpx;
  813. opacity: 0.4;
  814. }
  815. .um-add-text {
  816. font-size: 24rpx;
  817. color: #ccc;
  818. }
  819. .um-textarea {
  820. width: 100%;
  821. height: 160rpx;
  822. background-color: #ffffff;
  823. border-radius: 12rpx;
  824. padding: 24rpx;
  825. font-size: 28rpx;
  826. color: #333;
  827. box-sizing: border-box;
  828. border: 1px solid #f0f0f0;
  829. }
  830. .um-footer {
  831. margin-top: 40rpx;
  832. display: flex;
  833. justify-content: center;
  834. }
  835. .um-submit-btn {
  836. width: 100%;
  837. height: 88rpx;
  838. line-height: 88rpx;
  839. border-radius: 44rpx;
  840. font-size: 32rpx;
  841. background-color: #E0E0E0;
  842. color: #fff;
  843. border: none;
  844. text-align: center;
  845. }
  846. .um-submit-btn.active {
  847. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  848. color: #fff;
  849. box-shadow: 0 4rpx 10rpx rgba(255, 87, 34, 0.3);
  850. }
  851. .um-submit-btn::after {
  852. border: none;
  853. }
  854. /* 宠物档案弹窗 */
  855. .pet-modal-mask {
  856. position: fixed;
  857. top: 0;
  858. left: 0;
  859. width: 100%;
  860. height: 100%;
  861. background-color: rgba(0, 0, 0, 0.5);
  862. z-index: 999;
  863. display: flex;
  864. justify-content: center;
  865. align-items: center;
  866. }
  867. .pet-modal-content {
  868. width: 680rpx;
  869. max-height: 85vh;
  870. background-color: #fff;
  871. border-radius: 20rpx;
  872. display: flex;
  873. flex-direction: column;
  874. overflow: hidden;
  875. box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
  876. }
  877. .pet-modal-header {
  878. display: flex;
  879. align-items: center;
  880. padding: 28rpx 30rpx 20rpx;
  881. border-bottom: 1px solid #f5f5f5;
  882. flex-shrink: 0;
  883. }
  884. .pet-modal-title {
  885. font-size: 32rpx;
  886. font-weight: bold;
  887. color: #333;
  888. }
  889. .close-icon-btn {
  890. width: 52rpx;
  891. height: 52rpx;
  892. line-height: 52rpx;
  893. text-align: center;
  894. font-size: 36rpx;
  895. color: #999;
  896. border-radius: 50%;
  897. background-color: #f5f5f5;
  898. flex-shrink: 0;
  899. }
  900. .pm-remark-btn {
  901. height: 52rpx;
  902. line-height: 52rpx;
  903. padding: 0 24rpx;
  904. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  905. color: #fff;
  906. font-size: 26rpx;
  907. border-radius: 26rpx;
  908. margin-right: 16rpx;
  909. font-weight: bold;
  910. flex-shrink: 0;
  911. }
  912. .pet-modal-scroll {
  913. flex: 1;
  914. height: 65vh;
  915. overflow: auto;
  916. }
  917. .pet-base-info {
  918. display: flex;
  919. align-items: center;
  920. padding: 24rpx 30rpx;
  921. border-bottom: 1px solid #f9f9f9;
  922. }
  923. .pm-avatar {
  924. width: 100rpx;
  925. height: 100rpx;
  926. border-radius: 50%;
  927. margin-right: 20rpx;
  928. flex-shrink: 0;
  929. }
  930. .pm-info-text {
  931. flex: 1;
  932. display: flex;
  933. flex-direction: column;
  934. }
  935. .pm-name-row {
  936. display: flex;
  937. align-items: center;
  938. margin-bottom: 8rpx;
  939. }
  940. .pm-name {
  941. font-size: 32rpx;
  942. font-weight: bold;
  943. color: #333;
  944. margin-right: 12rpx;
  945. }
  946. .pm-gender {
  947. display: flex;
  948. align-items: center;
  949. background-color: #E3F2FD;
  950. color: #1976D2;
  951. font-size: 22rpx;
  952. padding: 2rpx 10rpx;
  953. border-radius: 10rpx;
  954. }
  955. .pm-gender.female {
  956. background-color: #FCE4EC;
  957. color: #C2185B;
  958. }
  959. .gender-icon {
  960. font-size: 22rpx;
  961. margin-right: 4rpx;
  962. }
  963. .pm-breed {
  964. font-size: 26rpx;
  965. color: #999;
  966. }
  967. .pm-detail-grid {
  968. padding: 20rpx 30rpx;
  969. display: flex;
  970. flex-wrap: wrap;
  971. gap: 16rpx;
  972. border-bottom: 1px solid #f9f9f9;
  973. }
  974. .pm-grid-item {
  975. background-color: #FAFAFA;
  976. border-radius: 12rpx;
  977. padding: 16rpx 20rpx;
  978. display: flex;
  979. flex-direction: column;
  980. }
  981. .pm-grid-item.half {
  982. width: calc(50% - 8rpx);
  983. }
  984. .pm-grid-item.full {
  985. width: 100%;
  986. }
  987. .pm-label {
  988. font-size: 24rpx;
  989. color: #999;
  990. margin-bottom: 8rpx;
  991. }
  992. .pm-val {
  993. font-size: 28rpx;
  994. color: #333;
  995. line-height: 1.5;
  996. }
  997. .pm-tags-row {
  998. display: flex;
  999. flex-wrap: wrap;
  1000. padding: 16rpx 30rpx;
  1001. gap: 16rpx;
  1002. border-bottom: 1px solid #f9f9f9;
  1003. }
  1004. .pm-tag-chip {
  1005. background-color: #FFF3E0;
  1006. border: 1px solid #FFB74D;
  1007. border-radius: 20rpx;
  1008. padding: 6rpx 20rpx;
  1009. }
  1010. .pm-tag-chip-text {
  1011. font-size: 24rpx;
  1012. color: #FF9800;
  1013. }
  1014. .pm-log-section {
  1015. padding: 20rpx 30rpx;
  1016. }
  1017. .pm-log-header {
  1018. display: flex;
  1019. align-items: center;
  1020. margin-bottom: 20rpx;
  1021. }
  1022. .pm-log-section-title {
  1023. font-size: 28rpx;
  1024. font-weight: bold;
  1025. color: #333;
  1026. }
  1027. .pm-log-item {
  1028. padding: 18rpx 0;
  1029. border-bottom: 1rpx solid #f5f5f5;
  1030. display: flex;
  1031. flex-direction: column;
  1032. }
  1033. .pm-log-date {
  1034. font-size: 24rpx;
  1035. color: #999;
  1036. margin-bottom: 8rpx;
  1037. }
  1038. .pm-log-text {
  1039. font-size: 28rpx;
  1040. color: #333;
  1041. line-height: 1.6;
  1042. margin-bottom: 6rpx;
  1043. }
  1044. .pm-log-recorder {
  1045. font-size: 22rpx;
  1046. color: #FF9800;
  1047. text-align: right;
  1048. }
  1049. .pm-log-recorder.system {
  1050. color: #999;
  1051. }
  1052. .pm-bottom-close {
  1053. margin: 16rpx 30rpx;
  1054. height: 72rpx;
  1055. line-height: 72rpx;
  1056. border-radius: 36rpx;
  1057. font-size: 28rpx;
  1058. background-color: #f5f5f5;
  1059. color: #666;
  1060. border: none;
  1061. }
  1062. .pm-bottom-close::after {
  1063. border: none;
  1064. }
  1065. /* 宠护小结底部弹窗 */
  1066. .sum-modal-mask {
  1067. position: fixed;
  1068. top: 0;
  1069. left: 0;
  1070. width: 100%;
  1071. height: 100%;
  1072. background-color: rgba(0, 0, 0, 0.50);
  1073. z-index: 999;
  1074. display: flex;
  1075. align-items: flex-end;
  1076. }
  1077. .sum-modal-sheet {
  1078. width: 100%;
  1079. max-height: 90vh;
  1080. background-color: #fff;
  1081. border-radius: 24rpx 24rpx 0 0;
  1082. display: flex;
  1083. flex-direction: column;
  1084. overflow: hidden;
  1085. }
  1086. .sum-modal-scroll {
  1087. flex: 1;
  1088. overflow: hidden;
  1089. }
  1090. .sum-modal-inner {
  1091. padding: 32rpx 36rpx 0;
  1092. }
  1093. .sum-modal-title {
  1094. display: block;
  1095. font-size: 34rpx;
  1096. font-weight: bold;
  1097. color: #333;
  1098. text-align: center;
  1099. margin-bottom: 30rpx;
  1100. }
  1101. .sum-meta-row {
  1102. display: flex;
  1103. margin-bottom: 16rpx;
  1104. align-items: flex-start;
  1105. }
  1106. .sum-meta-label {
  1107. font-size: 26rpx;
  1108. color: #999;
  1109. flex-shrink: 0;
  1110. width: 140rpx;
  1111. }
  1112. .sum-meta-val {
  1113. font-size: 24rpx;
  1114. color: #333;
  1115. flex: 1;
  1116. }
  1117. .sum-section-title {
  1118. font-size: 26rpx;
  1119. font-weight: bold;
  1120. color: #333;
  1121. padding-left: 12rpx;
  1122. border-left: 6rpx solid #FF9800;
  1123. margin-top: 24rpx;
  1124. margin-bottom: 16rpx;
  1125. }
  1126. .sum-pet-card {
  1127. background-color: #FAFAFA;
  1128. border-radius: 12rpx;
  1129. padding: 20rpx;
  1130. display: flex;
  1131. align-items: center;
  1132. }
  1133. .sum-pet-avatar {
  1134. width: 80rpx;
  1135. height: 80rpx;
  1136. border-radius: 50%;
  1137. margin-right: 20rpx;
  1138. flex-shrink: 0;
  1139. }
  1140. .sum-pet-info {
  1141. flex: 1;
  1142. display: flex;
  1143. flex-direction: column;
  1144. }
  1145. .sum-pet-name-row {
  1146. display: flex;
  1147. align-items: center;
  1148. margin-bottom: 8rpx;
  1149. }
  1150. .sum-pet-name {
  1151. font-size: 26rpx;
  1152. font-weight: bold;
  1153. color: #333;
  1154. margin-right: 12rpx;
  1155. }
  1156. .sum-pet-breed {
  1157. font-size: 24rpx;
  1158. color: #999;
  1159. }
  1160. .sum-pet-remark {
  1161. font-size: 24rpx;
  1162. color: #666;
  1163. line-height: 1.5;
  1164. }
  1165. .sum-textarea {
  1166. width: 100%;
  1167. min-height: 220rpx;
  1168. background-color: #fff;
  1169. border: 1px solid #eeeeee;
  1170. border-radius: 12rpx;
  1171. padding: 18rpx;
  1172. font-size: 26rpx;
  1173. color: #333;
  1174. box-sizing: border-box;
  1175. line-height: 1.8;
  1176. }
  1177. .sum-sign-row {
  1178. display: flex;
  1179. align-items: center;
  1180. margin-top: 30rpx;
  1181. padding: 16rpx 0;
  1182. border-top: 1px solid #f5f5f5;
  1183. }
  1184. .sum-sign-label {
  1185. font-size: 26rpx;
  1186. color: #999;
  1187. margin-right: 10rpx;
  1188. }
  1189. .sum-sign-val {
  1190. font-size: 26rpx;
  1191. color: #333;
  1192. }
  1193. .sum-footer {
  1194. padding: 20rpx 36rpx 36rpx;
  1195. padding-bottom: max(36rpx, constant(safe-area-inset-bottom));
  1196. padding-bottom: max(36rpx, env(safe-area-inset-bottom));
  1197. background-color: #fff;
  1198. }
  1199. .sum-submit-btn {
  1200. width: 100%;
  1201. height: 84rpx;
  1202. line-height: 84rpx;
  1203. border-radius: 42rpx;
  1204. font-size: 30rpx;
  1205. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  1206. color: #fff;
  1207. border: none;
  1208. box-shadow: 0 4rpx 16rpx rgba(255, 87, 34, 0.25);
  1209. }
  1210. .sum-submit-btn::after {
  1211. border: none;
  1212. }
  1213. /* 宠护小结 - 居中白卡样式 */
  1214. .sum-modal-mask {
  1215. position: fixed;
  1216. top: 0;
  1217. left: 0;
  1218. width: 100%;
  1219. height: 100%;
  1220. background-color: rgba(0, 0, 0, 0.5);
  1221. z-index: 999;
  1222. display: flex;
  1223. justify-content: center;
  1224. align-items: center;
  1225. }
  1226. .sum-modal-card {
  1227. width: 660rpx;
  1228. max-height: 80vh;
  1229. background-color: #fff;
  1230. border-radius: 20rpx;
  1231. display: flex;
  1232. flex-direction: column;
  1233. overflow: hidden;
  1234. box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
  1235. }
  1236. .sum-modal-scroll {
  1237. flex: 1;
  1238. overflow: hidden;
  1239. }
  1240. /* 宠物档案 - 备注按钮 */
  1241. .pet-modal-header {
  1242. display: flex;
  1243. align-items: center;
  1244. padding: 30rpx 30rpx 20rpx;
  1245. border-bottom: 1px solid #f5f5f5;
  1246. }
  1247. .pm-remark-btn {
  1248. height: 52rpx;
  1249. line-height: 52rpx;
  1250. padding: 0 24rpx;
  1251. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  1252. color: #fff;
  1253. font-size: 26rpx;
  1254. border-radius: 26rpx;
  1255. margin-right: 16rpx;
  1256. font-weight: bold;
  1257. }
  1258. /* 标签芯片 */
  1259. .pm-tags-row {
  1260. display: flex;
  1261. flex-wrap: wrap;
  1262. padding: 0 24rpx 20rpx;
  1263. gap: 16rpx;
  1264. }
  1265. .pm-tag-chip {
  1266. background-color: #FFF3E0;
  1267. border: 1px solid #FFB74D;
  1268. border-radius: 20rpx;
  1269. padding: 6rpx 20rpx;
  1270. }
  1271. .pm-tag-chip-text {
  1272. font-size: 24rpx;
  1273. color: #FF9800;
  1274. }
  1275. /* 备注日志 */
  1276. .pm-log-section {
  1277. padding: 20rpx 24rpx;
  1278. border-top: 1px solid #f5f5f5;
  1279. margin-top: 10rpx;
  1280. }
  1281. .pm-log-header {
  1282. display: flex;
  1283. align-items: center;
  1284. margin-bottom: 20rpx;
  1285. }
  1286. .pm-log-section-title {
  1287. font-size: 28rpx;
  1288. font-weight: bold;
  1289. color: #333;
  1290. }
  1291. .pm-log-item {
  1292. padding: 16rpx 0;
  1293. border-bottom: 1px solid #f9f9f9;
  1294. display: flex;
  1295. flex-direction: column;
  1296. }
  1297. .pm-log-date {
  1298. font-size: 24rpx;
  1299. color: #999;
  1300. margin-bottom: 8rpx;
  1301. }
  1302. .pm-log-text {
  1303. font-size: 28rpx;
  1304. color: #333;
  1305. line-height: 1.6;
  1306. margin-bottom: 6rpx;
  1307. }
  1308. .pm-log-recorder {
  1309. font-size: 22rpx;
  1310. color: #FF9800;
  1311. text-align: right;
  1312. }
  1313. .pm-log-recorder.system {
  1314. color: #999;
  1315. }
  1316. /* 弹窗遮罩 */
  1317. .modal-mask {
  1318. position: fixed;
  1319. top: 0;
  1320. left: 0;
  1321. right: 0;
  1322. bottom: 0;
  1323. background-color: rgba(0, 0, 0, 0.5);
  1324. z-index: 999;
  1325. display: flex;
  1326. align-items: center;
  1327. justify-content: center;
  1328. }
  1329. /* 异常记录弹窗 */
  1330. .anomaly-modal-content {
  1331. width: 650rpx;
  1332. background-color: #fff;
  1333. border-radius: 20rpx;
  1334. padding: 30rpx;
  1335. position: relative;
  1336. max-height: 80vh;
  1337. display: flex;
  1338. flex-direction: column;
  1339. }
  1340. .am-header {
  1341. display: flex;
  1342. justify-content: space-between;
  1343. align-items: center;
  1344. margin-bottom: 30rpx;
  1345. padding-bottom: 20rpx;
  1346. border-bottom: 1px solid #f5f5f5;
  1347. }
  1348. .am-title {
  1349. font-size: 32rpx;
  1350. font-weight: bold;
  1351. color: #333;
  1352. }
  1353. .am-scroll-list {
  1354. flex: 1;
  1355. }
  1356. .am-item {
  1357. padding: 24rpx;
  1358. background-color: #F9FAFB;
  1359. border-radius: 12rpx;
  1360. margin-bottom: 24rpx;
  1361. }
  1362. .am-item-header {
  1363. display: flex;
  1364. justify-content: space-between;
  1365. align-items: center;
  1366. margin-bottom: 16rpx;
  1367. }
  1368. .am-item-type {
  1369. font-size: 28rpx;
  1370. font-weight: bold;
  1371. color: #333;
  1372. }
  1373. .am-item-status {
  1374. font-size: 22rpx;
  1375. padding: 4rpx 16rpx;
  1376. border-radius: 20rpx;
  1377. }
  1378. .am-item-status.status-0 {
  1379. background-color: #FFF3E0;
  1380. color: #FF9800;
  1381. }
  1382. .am-item-status.status-1 {
  1383. background-color: #E8F5E9;
  1384. color: #4CAF50;
  1385. }
  1386. .am-item-status.status-2 {
  1387. background-color: #FFEBEE;
  1388. color: #F44336;
  1389. }
  1390. .am-item-content {
  1391. font-size: 26rpx;
  1392. color: #666;
  1393. line-height: 1.6;
  1394. display: block;
  1395. margin-bottom: 16rpx;
  1396. }
  1397. .am-item-photos {
  1398. display: flex;
  1399. flex-wrap: wrap;
  1400. gap: 12rpx;
  1401. margin-bottom: 20rpx;
  1402. }
  1403. .am-photo {
  1404. width: 130rpx;
  1405. height: 130rpx;
  1406. border-radius: 8rpx;
  1407. }
  1408. .am-audit-box {
  1409. margin-top: 20rpx;
  1410. padding-top: 20rpx;
  1411. border-top: 1px dashed #E0E0E0;
  1412. }
  1413. .am-audit-header {
  1414. display: flex;
  1415. justify-content: space-between;
  1416. align-items: center;
  1417. margin-bottom: 8rpx;
  1418. }
  1419. .am-audit-label {
  1420. font-size: 24rpx;
  1421. font-weight: bold;
  1422. color: #333;
  1423. }
  1424. .am-audit-time {
  1425. font-size: 22rpx;
  1426. color: #999;
  1427. }
  1428. .am-audit-remark {
  1429. font-size: 24rpx;
  1430. color: #666;
  1431. line-height: 1.5;
  1432. }
  1433. .empty-list {
  1434. display: flex;
  1435. flex-direction: column;
  1436. align-items: center;
  1437. padding: 100rpx 0;
  1438. }
  1439. .empty-icon {
  1440. width: 200rpx;
  1441. height: 200rpx;
  1442. margin-bottom: 20rpx;
  1443. opacity: 0.5;
  1444. }
  1445. .empty-text {
  1446. font-size: 26rpx;
  1447. color: #999;
  1448. }
  1449. /* 媒体项容器 */
  1450. .tl-media-item {
  1451. position: relative;
  1452. width: 140rpx;
  1453. height: 140rpx;
  1454. }
  1455. /* 视频占位样式(不取第一帧,直接用图标) */
  1456. .tl-video-placeholder {
  1457. width: 100%;
  1458. height: 100%;
  1459. background: linear-gradient(135deg, #444 0%, #222 100%);
  1460. border-radius: 8rpx;
  1461. display: flex;
  1462. flex-direction: column;
  1463. justify-content: center;
  1464. align-items: center;
  1465. }
  1466. .tl-video-placeholder.miniaturized {
  1467. border-radius: 8rpx;
  1468. overflow: hidden;
  1469. }
  1470. .tl-video-label {
  1471. color: #fff;
  1472. font-size: 20rpx;
  1473. margin-top: 50rpx;
  1474. opacity: 0.8;
  1475. }
  1476. .tl-video-label.small {
  1477. margin-top: 35rpx;
  1478. font-size: 18rpx;
  1479. }
  1480. .tl-play-icon {
  1481. position: absolute;
  1482. top: 50%;
  1483. left: 50%;
  1484. transform: translate(-50%, -50%);
  1485. width: 60rpx;
  1486. height: 60rpx;
  1487. display: flex;
  1488. justify-content: center;
  1489. align-items: center;
  1490. background-color: rgba(255, 255, 255, 0.2);
  1491. border: 2rpx solid #fff;
  1492. border-radius: 50%;
  1493. }
  1494. .tl-play-icon::after {
  1495. content: '';
  1496. display: block;
  1497. width: 0;
  1498. height: 0;
  1499. border-top: 15rpx solid transparent;
  1500. border-bottom: 15rpx solid transparent;
  1501. border-left: 20rpx solid #fff;
  1502. margin-left: 6rpx;
  1503. }
  1504. .tl-play-icon.small {
  1505. width: 40rpx;
  1506. height: 40rpx;
  1507. }
  1508. .tl-play-icon.small::after {
  1509. border-top: 10rpx solid transparent;
  1510. border-bottom: 10rpx solid transparent;
  1511. border-left: 14rpx solid #fff;
  1512. margin-left: 4rpx;
  1513. }
  1514. /* 视频播放弹窗 */
  1515. .video-player-mask {
  1516. position: fixed;
  1517. top: 0;
  1518. left: 0;
  1519. right: 0;
  1520. bottom: 0;
  1521. background-color: rgba(0, 0, 0, 0.9);
  1522. z-index: 999;
  1523. display: flex;
  1524. justify-content: center;
  1525. align-items: center;
  1526. }
  1527. .video-player-content {
  1528. position: relative;
  1529. width: 100%;
  1530. height: 600rpx;
  1531. }
  1532. .v-player {
  1533. width: 100%;
  1534. height: 100%;
  1535. }
  1536. .v-close {
  1537. position: absolute;
  1538. top: -80rpx;
  1539. right: 40rpx;
  1540. width: 60rpx;
  1541. height: 60rpx;
  1542. background-color: rgba(255, 255, 255, 0.2);
  1543. color: #fff;
  1544. border-radius: 50%;
  1545. display: flex;
  1546. justify-content: center;
  1547. align-items: center;
  1548. font-size: 40rpx;
  1549. }
  1550. /* 异常列表媒体样式 */
  1551. .am-photo-item {
  1552. position: relative;
  1553. width: 150rpx;
  1554. height: 150rpx;
  1555. border-radius: 8rpx;
  1556. overflow: hidden;
  1557. }
  1558. .am-photo {
  1559. width: 150rpx;
  1560. height: 150rpx;
  1561. border-radius: 8rpx;
  1562. }
  1563. .am-video-poster.miniaturized {
  1564. width: 100%;
  1565. height: 100%;
  1566. position: relative;
  1567. }
  1568. .tl-play-icon.small {
  1569. width: 40rpx;
  1570. height: 40rpx;
  1571. }
  1572. .tl-play-icon.small::after {
  1573. border-top: 10rpx solid transparent;
  1574. border-bottom: 10rpx solid transparent;
  1575. border-left: 14rpx solid #fff;
  1576. margin-left: 4rpx;
  1577. }
  1578. /* 导航选择弹窗 */
  1579. .nav-modal-mask {
  1580. position: fixed;
  1581. top: 0;
  1582. left: 0;
  1583. right: 0;
  1584. bottom: 0;
  1585. background-color: rgba(0, 0, 0, 0.6);
  1586. z-index: 1000;
  1587. display: flex;
  1588. align-items: flex-end;
  1589. }
  1590. .nav-action-sheet {
  1591. width: 100%;
  1592. background-color: #fff;
  1593. border-radius: 30rpx 30rpx 0 0;
  1594. padding-bottom: constant(safe-area-inset-bottom);
  1595. padding-bottom: env(safe-area-inset-bottom);
  1596. overflow: hidden;
  1597. }
  1598. .nav-sheet-title {
  1599. display: block;
  1600. text-align: center;
  1601. font-size: 26rpx;
  1602. color: #999;
  1603. padding: 30rpx 0;
  1604. border-bottom: 1px solid #f5f5f5;
  1605. }
  1606. .nav-sheet-item {
  1607. display: block;
  1608. text-align: center;
  1609. font-size: 32rpx;
  1610. color: #333;
  1611. padding: 35rpx 0;
  1612. border-bottom: 1px solid #f5f5f5;
  1613. background-color: #fff;
  1614. }
  1615. .nav-sheet-item:active {
  1616. background-color: #f9f9f9;
  1617. }
  1618. .nav-sheet-item.cancel {
  1619. color: #999;
  1620. }
  1621. .nav-sheet-gap {
  1622. height: 12rpx;
  1623. background-color: #f5f5f5;
  1624. }