detail.css 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624
  1. /* 页面背景 */
  2. body {
  3. background-color: #F8F8F8;
  4. }
  5. .detail-container {
  6. padding-bottom: 6.25rem;
  7. }
  8. /* 骨架屏加载动画 */
  9. .loading-container {
  10. padding: 0.9375rem;
  11. }
  12. .skeleton-header {
  13. background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  14. border-radius: 0.625rem;
  15. padding: 1.25rem;
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. margin-bottom: 0.625rem;
  20. }
  21. .skeleton-progress {
  22. background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  23. border-radius: 0 0 0.625rem 0.625rem;
  24. margin-top: -1.25rem;
  25. padding: 0.9375rem 1.25rem 1.25rem;
  26. display: flex;
  27. justify-content: space-around;
  28. margin-bottom: 0.78125rem;
  29. }
  30. .skeleton-circle {
  31. width: 1.25rem;
  32. height: 1.25rem;
  33. border-radius: 50%;
  34. background-color: rgba(255, 255, 255, 0.3);
  35. }
  36. .skeleton-card {
  37. background-color: #fff;
  38. border-radius: 0.625rem;
  39. padding: 0.9375rem;
  40. margin-bottom: 0.78125rem;
  41. box-shadow: 0 0.15625rem 0.625rem rgba(0, 0, 0, 0.03);
  42. }
  43. .skeleton-line {
  44. border-radius: 0.25rem;
  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: 1.25rem 1.25rem 1.5625rem 1.25rem;
  75. color: #fff;
  76. border-radius: 0.625rem;
  77. margin: 0.9375rem 0.9375rem 0.78125rem 0.9375rem;
  78. box-shadow: 0 0.15625rem 0.46875rem 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: 1.25rem;
  85. }
  86. .status-title {
  87. font-size: 0.875rem;
  88. font-weight: bold;
  89. }
  90. .status-price {
  91. font-size: 1.25rem;
  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 0.3125rem;
  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: 1.5rem;
  131. height: 1.5rem;
  132. font-size: 0.75rem;
  133. box-shadow: 0 0.125rem 0.5rem 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: 0.3125rem;
  144. }
  145. /* 默认圆圈:半透明 */
  146. .step-circle {
  147. width: 1.25rem;
  148. height: 1.25rem;
  149. border-radius: 50%;
  150. background-color: rgba(255, 255, 255, 0.3);
  151. color: rgba(255, 255, 255, 0.8);
  152. font-size: 0.625rem;
  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% + 0.625rem);
  165. width: calc(100% - 1.25rem);
  166. height: 0.0625rem;
  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: 0.09375rem;
  174. }
  175. .step-text {
  176. font-size: 0.75rem;
  177. }
  178. /* 内容区通用卡片 */
  179. .detail-content {
  180. width: 100%;
  181. box-sizing: border-box;
  182. padding: 0 0.9375rem;
  183. position: relative;
  184. z-index: 10;
  185. }
  186. .white-card {
  187. background-color: #fff;
  188. border-radius: 0.625rem;
  189. padding: 0.9375rem;
  190. margin-bottom: 0.78125rem;
  191. box-shadow: 0 0.15625rem 0.625rem rgba(0, 0, 0, 0.03);
  192. }
  193. /* 宠物信息条 */
  194. .pet-bar {
  195. display: flex;
  196. align-items: center;
  197. }
  198. .pb-avatar {
  199. width: 3.125rem;
  200. height: 3.125rem;
  201. border-radius: 50%;
  202. margin-right: 0.625rem;
  203. }
  204. .pb-info {
  205. flex: 1;
  206. display: flex;
  207. flex-direction: column;
  208. }
  209. .pb-name-row {
  210. margin-bottom: 0.3125rem;
  211. }
  212. .pb-name {
  213. font-size: 1rem;
  214. font-weight: bold;
  215. color: #333;
  216. margin-right: 0.46875rem;
  217. }
  218. .pb-breed {
  219. font-size: 0.8125rem;
  220. color: #999;
  221. }
  222. .pb-tags {
  223. display: flex;
  224. }
  225. .pb-tag {
  226. background-color: #FFF3E0;
  227. color: #FF9800;
  228. font-size: 0.6875rem;
  229. padding: 0.125rem 0.5rem;
  230. border-radius: 0.25rem;
  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: 0.0625rem solid #FF9800;
  243. color: #FF9800;
  244. font-size: 0.75rem;
  245. padding: 0.25rem 0.625rem;
  246. border-radius: 0.9375rem;
  247. margin-right: 0.625rem;
  248. }
  249. .phone-btn {
  250. width: 1.875rem;
  251. height: 1.875rem;
  252. border-radius: 50%;
  253. background-color: #FFF3E0;
  254. }
  255. .phone-icon {
  256. width: 1rem;
  257. height: 1rem;
  258. }
  259. /* 服务及路线信息 */
  260. .si-row {
  261. display: flex;
  262. align-items: flex-start;
  263. margin-bottom: 0.9375rem;
  264. }
  265. .si-row:last-child {
  266. margin-bottom: 0;
  267. }
  268. .si-icon {
  269. width: 1.125rem;
  270. height: 1.125rem;
  271. margin-right: 0.625rem;
  272. margin-top: 0.125rem;
  273. }
  274. .si-icon-uni {
  275. margin-right: 0.625rem;
  276. margin-top: 0.125rem;
  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: 0.75rem;
  288. color: #999;
  289. margin-bottom: 0.1875rem;
  290. }
  291. .icon-bg {
  292. width: 1.375rem;
  293. height: 1.375rem;
  294. border-radius: 0.25rem;
  295. display: flex;
  296. justify-content: center;
  297. align-items: center;
  298. margin-right: 0.625rem;
  299. margin-top: 0.125rem;
  300. flex-shrink: 0;
  301. }
  302. .icon-bg.grey-bg {
  303. background-color: #F8F8F8;
  304. }
  305. .custom-icon {
  306. width: 0.875rem;
  307. height: 0.875rem;
  308. }
  309. .custom-icon-file {
  310. width: 1.125rem;
  311. height: 1.125rem;
  312. }
  313. .si-val {
  314. font-size: 0.875rem;
  315. color: #333;
  316. }
  317. .record-btn {
  318. font-size: 0.75rem;
  319. color: #FF5722;
  320. display: flex;
  321. align-items: center;
  322. }
  323. .record-arrow {
  324. width: 0.75rem;
  325. height: 0.75rem;
  326. margin-left: 0.1875rem;
  327. }
  328. .record-history-row {
  329. margin-top: 0.9375rem;
  330. padding-top: 0.78125rem;
  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: 1.25rem;
  343. height: 1.25rem;
  344. border-radius: 50%;
  345. color: #fff;
  346. font-size: 0.6875rem;
  347. display: flex;
  348. align-items: center;
  349. justify-content: center;
  350. margin-right: 0.625rem;
  351. flex-shrink: 0;
  352. font-weight: bold;
  353. margin-top: 0.1875rem;
  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: 0.59375rem;
  369. top: 1.4375rem;
  370. bottom: -0.1875rem;
  371. border-left: 0.0625rem dashed #E0E0E0;
  372. width: 0;
  373. z-index: 0;
  374. }
  375. .si-addr-title {
  376. font-size: 0.9375rem;
  377. font-weight: bold;
  378. color: #333;
  379. margin-bottom: 0.1875rem;
  380. }
  381. .si-addr-desc {
  382. font-size: 0.75rem;
  383. color: #999;
  384. }
  385. .nav-btn-circle {
  386. width: 1.5625rem;
  387. height: 1.5625rem;
  388. background-color: #FFF3E0;
  389. border-radius: 50%;
  390. display: flex;
  391. align-items: center;
  392. justify-content: center;
  393. margin-top: 0.1875rem;
  394. }
  395. .nav-arrow {
  396. width: 0.875rem;
  397. height: 0.875rem;
  398. }
  399. /* 打卡任务区 */
  400. .task-card {
  401. display: flex;
  402. flex-direction: column;
  403. }
  404. .tc-title {
  405. font-size: 0.9375rem;
  406. font-weight: bold;
  407. color: #333;
  408. margin-bottom: 0.46875rem;
  409. }
  410. .tc-desc {
  411. font-size: 0.6875rem;
  412. color: #666;
  413. margin-bottom: 0.375rem;
  414. }
  415. .media-grid {
  416. display: flex;
  417. flex-wrap: wrap;
  418. gap: 0.625rem;
  419. margin-bottom: 0.625rem;
  420. }
  421. .media-item {
  422. width: 5rem;
  423. height: 5rem;
  424. position: relative;
  425. border-radius: 0.375rem;
  426. }
  427. .media-preview {
  428. width: 100%;
  429. height: 100%;
  430. border-radius: 0.375rem;
  431. }
  432. .media-del {
  433. position: absolute;
  434. top: -0.3125rem;
  435. right: -0.3125rem;
  436. width: 1.125rem;
  437. height: 1.125rem;
  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: 0.75rem;
  445. z-index: 2;
  446. }
  447. .media-add {
  448. width: 5rem;
  449. height: 5rem;
  450. border: 0.0625rem dashed #ccc;
  451. border-radius: 0.375rem;
  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: 1.25rem;
  461. height: 1.25rem;
  462. margin-bottom: 0.3125rem;
  463. }
  464. .upload-text-small {
  465. font-size: 0.6875rem;
  466. color: #999;
  467. }
  468. .full-media-add {
  469. width: 100%;
  470. height: 4.375rem;
  471. background-color: #FAFAFA;
  472. border: 0.0625rem dashed #E0E0E0;
  473. border-radius: 0.375rem;
  474. display: flex;
  475. flex-direction: column;
  476. justify-content: center;
  477. align-items: center;
  478. margin-top: 0.3125rem;
  479. }
  480. .upload-icon-large {
  481. width: 1.5625rem;
  482. height: 1.5625rem;
  483. margin-bottom: 0.3125rem;
  484. opacity: 0.5;
  485. }
  486. .upload-text-large {
  487. font-size: 0.75rem;
  488. color: #999;
  489. }
  490. /* 基础信息区 */
  491. .bi-row {
  492. display: flex;
  493. align-items: flex-start;
  494. margin-bottom: 0.78125rem;
  495. }
  496. .bi-row:last-child {
  497. margin-bottom: 0;
  498. }
  499. .bi-icon {
  500. width: 1rem;
  501. height: 1rem;
  502. margin-right: 0.625rem;
  503. margin-top: 0.125rem;
  504. }
  505. .bi-icon-uni {
  506. margin-right: 0.625rem;
  507. margin-top: 0.125rem;
  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: 0.75rem;
  519. color: #999;
  520. margin-bottom: 0.1875rem;
  521. }
  522. .bi-val-row {
  523. display: flex;
  524. align-items: center;
  525. }
  526. .bi-val {
  527. font-size: 0.875rem;
  528. color: #333;
  529. }
  530. .bi-copy {
  531. background-color: #F0F0F0;
  532. color: #666;
  533. font-size: 0.625rem;
  534. padding: 0.0625rem 0.3125rem;
  535. border-radius: 0.1875rem;
  536. margin-left: 0.46875rem;
  537. }
  538. /* 订单进度 */
  539. .tl-title-row {
  540. display: flex;
  541. align-items: center;
  542. margin-bottom: 0.9375rem;
  543. }
  544. .orange-bar {
  545. width: 0.25rem;
  546. height: 1rem;
  547. background-color: #FF9800;
  548. margin-right: 0.5rem;
  549. border-radius: 0.125rem;
  550. }
  551. .tl-title {
  552. font-size: 0.9375rem;
  553. font-weight: bold;
  554. color: #333;
  555. }
  556. .tl-list {
  557. display: flex;
  558. flex-direction: column;
  559. padding-left: 0.3125rem;
  560. }
  561. .tl-item {
  562. display: flex;
  563. position: relative;
  564. padding-bottom: 1.25rem;
  565. }
  566. .tl-item:last-child {
  567. padding-bottom: 0;
  568. }
  569. .tl-marker {
  570. width: 0.5rem;
  571. height: 0.5rem;
  572. border-radius: 50%;
  573. background-color: #E0E0E0;
  574. position: absolute;
  575. left: 0;
  576. top: 0.1875rem;
  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: 0.09375rem solid #FF9800;
  585. width: 0.5625rem;
  586. height: 0.5625rem;
  587. left: -0.03125rem;
  588. /* offset for border width */
  589. }
  590. .tl-dot-inner {
  591. width: 0.3125rem;
  592. height: 0.3125rem;
  593. border-radius: 50%;
  594. background-color: #FF9800;
  595. }
  596. .tl-item:not(:last-child)::after {
  597. content: '';
  598. position: absolute;
  599. left: 0.21875rem;
  600. top: 0.75rem;
  601. bottom: -0.1875rem;
  602. width: 0.0625rem;
  603. background-color: #FFE0B2;
  604. z-index: 1;
  605. }
  606. .tl-content-row {
  607. margin-left: 1.25rem;
  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: 0.3125rem;
  618. }
  619. .tl-status {
  620. font-size: 0.875rem;
  621. color: #333;
  622. font-weight: 500;
  623. }
  624. .tl-time {
  625. font-size: 0.75rem;
  626. color: #999;
  627. }
  628. .tl-medias {
  629. display: flex;
  630. flex-wrap: wrap;
  631. gap: 0.46875rem;
  632. margin-bottom: 0.46875rem;
  633. }
  634. .tl-img {
  635. width: 4.375rem;
  636. height: 4.375rem;
  637. border-radius: 0.25rem;
  638. }
  639. .tl-remark {
  640. font-size: 0.75rem;
  641. color: #666;
  642. background-color: #F9F9F9;
  643. padding: 0.46875rem;
  644. border-radius: 0.25rem;
  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: 3.75rem;
  654. background-color: #fff;
  655. display: flex;
  656. align-items: center;
  657. justify-content: space-between;
  658. padding: 0 0.9375rem;
  659. box-shadow: 0 -0.15625rem 0.625rem 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: 2rem;
  672. line-height: 2rem;
  673. border-radius: 1rem;
  674. font-size: 0.8125rem;
  675. padding: 0 1.09375rem;
  676. margin: 0;
  677. }
  678. .action-left .action-btn:first-child {
  679. margin-right: 0.625rem;
  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 0.125rem 0.375rem 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: 18.75rem;
  721. background-color: #ffffff;
  722. border-radius: 0.625rem;
  723. padding: 1.25rem;
  724. box-sizing: border-box;
  725. display: flex;
  726. flex-direction: column;
  727. }
  728. .um-header {
  729. text-align: center;
  730. margin-bottom: 1.25rem;
  731. }
  732. .um-title {
  733. font-size: 1rem;
  734. font-weight: bold;
  735. color: #333;
  736. }
  737. .um-remark-hint {
  738. display: block;
  739. font-size: 0.6875rem;
  740. color: #999;
  741. margin-top: 0.5rem;
  742. line-height: 1.4;
  743. }
  744. .um-grid {
  745. display: flex;
  746. flex-wrap: wrap;
  747. margin-bottom: 0.9375rem;
  748. }
  749. .um-item {
  750. width: 4.0625rem;
  751. height: 4.0625rem;
  752. border-radius: 0.25rem;
  753. margin-right: 0.625rem;
  754. margin-bottom: 0.625rem;
  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: 0.125rem;
  769. right: 0.125rem;
  770. width: 1.125rem;
  771. height: 1.125rem;
  772. line-height: 1rem;
  773. text-align: center;
  774. background-color: rgba(0, 0, 0, 0.5);
  775. color: #fff;
  776. border-radius: 50%;
  777. font-size: 0.875rem;
  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: 1.5rem;
  794. height: 1.5rem;
  795. opacity: 0.9;
  796. }
  797. .um-add {
  798. width: 4.0625rem;
  799. height: 4.0625rem;
  800. border-radius: 0.25rem;
  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: 0.625rem;
  808. }
  809. .um-add-icon {
  810. width: 1.375rem;
  811. height: 1.375rem;
  812. margin-bottom: 0.3125rem;
  813. opacity: 0.4;
  814. }
  815. .um-add-text {
  816. font-size: 0.75rem;
  817. color: #ccc;
  818. }
  819. .um-textarea {
  820. width: 100%;
  821. height: 5rem;
  822. background-color: #ffffff;
  823. border-radius: 0.375rem;
  824. padding: 0.75rem;
  825. font-size: 0.875rem;
  826. color: #333;
  827. box-sizing: border-box;
  828. border: 1px solid #f0f0f0;
  829. }
  830. .um-footer {
  831. margin-top: 1.25rem;
  832. display: flex;
  833. justify-content: center;
  834. }
  835. .um-submit-btn {
  836. width: 100%;
  837. height: 2.75rem;
  838. line-height: 2.75rem;
  839. border-radius: 1.375rem;
  840. font-size: 1rem;
  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 0.125rem 0.3125rem 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: 21.25rem;
  869. max-height: 85vh;
  870. background-color: #fff;
  871. border-radius: 0.625rem;
  872. display: flex;
  873. flex-direction: column;
  874. overflow: hidden;
  875. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  876. }
  877. .pet-modal-header {
  878. display: flex;
  879. align-items: center;
  880. padding: 0.875rem 0.9375rem 0.625rem;
  881. border-bottom: 1px solid #f5f5f5;
  882. flex-shrink: 0;
  883. }
  884. .pet-modal-title {
  885. font-size: 1rem;
  886. font-weight: bold;
  887. color: #333;
  888. }
  889. .close-icon-btn {
  890. width: 1.625rem;
  891. height: 1.625rem;
  892. line-height: 1.625rem;
  893. text-align: center;
  894. font-size: 1.125rem;
  895. color: #999;
  896. border-radius: 50%;
  897. background-color: #f5f5f5;
  898. flex-shrink: 0;
  899. }
  900. .pm-remark-btn {
  901. height: 1.625rem;
  902. line-height: 1.625rem;
  903. padding: 0 0.75rem;
  904. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  905. color: #fff;
  906. font-size: 0.8125rem;
  907. border-radius: 0.8125rem;
  908. margin-right: 0.5rem;
  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: 0.75rem 0.9375rem;
  921. border-bottom: 1px solid #f9f9f9;
  922. }
  923. .pm-avatar {
  924. width: 3.125rem;
  925. height: 3.125rem;
  926. border-radius: 50%;
  927. margin-right: 0.625rem;
  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: 0.25rem;
  939. }
  940. .pm-name {
  941. font-size: 1rem;
  942. font-weight: bold;
  943. color: #333;
  944. margin-right: 0.375rem;
  945. }
  946. .pm-gender {
  947. display: flex;
  948. align-items: center;
  949. background-color: #E3F2FD;
  950. color: #1976D2;
  951. font-size: 0.6875rem;
  952. padding: 0.0625rem 0.3125rem;
  953. border-radius: 0.3125rem;
  954. }
  955. .pm-gender.female {
  956. background-color: #FCE4EC;
  957. color: #C2185B;
  958. }
  959. .gender-icon {
  960. font-size: 0.6875rem;
  961. margin-right: 0.125rem;
  962. }
  963. .pm-breed {
  964. font-size: 0.8125rem;
  965. color: #999;
  966. }
  967. .pm-detail-grid {
  968. padding: 0.625rem 0.9375rem;
  969. display: flex;
  970. flex-wrap: wrap;
  971. gap: 0.5rem;
  972. border-bottom: 1px solid #f9f9f9;
  973. }
  974. .pm-grid-item {
  975. background-color: #FAFAFA;
  976. border-radius: 0.375rem;
  977. padding: 0.5rem 0.625rem;
  978. display: flex;
  979. flex-direction: column;
  980. }
  981. .pm-grid-item.half {
  982. width: calc(50% - 0.25rem);
  983. }
  984. .pm-grid-item.full {
  985. width: 100%;
  986. }
  987. .pm-label {
  988. font-size: 0.75rem;
  989. color: #999;
  990. margin-bottom: 0.25rem;
  991. }
  992. .pm-val {
  993. font-size: 0.875rem;
  994. color: #333;
  995. line-height: 1.5;
  996. }
  997. .pm-tags-row {
  998. display: flex;
  999. flex-wrap: wrap;
  1000. padding: 0.5rem 0.9375rem;
  1001. gap: 0.5rem;
  1002. border-bottom: 1px solid #f9f9f9;
  1003. }
  1004. .pm-tag-chip {
  1005. background-color: #FFF3E0;
  1006. border: 1px solid #FFB74D;
  1007. border-radius: 0.625rem;
  1008. padding: 0.1875rem 0.625rem;
  1009. }
  1010. .pm-tag-chip-text {
  1011. font-size: 0.75rem;
  1012. color: #FF9800;
  1013. }
  1014. .pm-log-section {
  1015. padding: 0.625rem 0.9375rem;
  1016. }
  1017. .pm-log-header {
  1018. display: flex;
  1019. align-items: center;
  1020. margin-bottom: 0.625rem;
  1021. }
  1022. .pm-log-section-title {
  1023. font-size: 0.875rem;
  1024. font-weight: bold;
  1025. color: #333;
  1026. }
  1027. .pm-log-item {
  1028. padding: 0.5625rem 0;
  1029. border-bottom: 0.03125rem solid #f5f5f5;
  1030. display: flex;
  1031. flex-direction: column;
  1032. }
  1033. .pm-log-date {
  1034. font-size: 0.75rem;
  1035. color: #999;
  1036. margin-bottom: 0.25rem;
  1037. }
  1038. .pm-log-text {
  1039. font-size: 0.875rem;
  1040. color: #333;
  1041. line-height: 1.6;
  1042. margin-bottom: 0.1875rem;
  1043. }
  1044. .pm-log-recorder {
  1045. font-size: 0.6875rem;
  1046. color: #FF9800;
  1047. text-align: right;
  1048. }
  1049. .pm-log-recorder.system {
  1050. color: #999;
  1051. }
  1052. .pm-bottom-close {
  1053. margin: 0.5rem 0.9375rem;
  1054. height: 2.25rem;
  1055. line-height: 2.25rem;
  1056. border-radius: 1.125rem;
  1057. font-size: 0.875rem;
  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: 0.75rem 0.75rem 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: 1rem 1.125rem 0;
  1092. }
  1093. .sum-modal-title {
  1094. display: block;
  1095. font-size: 1.0625rem;
  1096. font-weight: bold;
  1097. color: #333;
  1098. text-align: center;
  1099. margin-bottom: 0.9375rem;
  1100. }
  1101. .sum-meta-row {
  1102. display: flex;
  1103. margin-bottom: 0.5rem;
  1104. align-items: flex-start;
  1105. }
  1106. .sum-meta-label {
  1107. font-size: 0.8125rem;
  1108. color: #999;
  1109. flex-shrink: 0;
  1110. width: 4.375rem;
  1111. }
  1112. .sum-meta-val {
  1113. font-size: 0.75rem;
  1114. color: #333;
  1115. flex: 1;
  1116. }
  1117. .sum-section-title {
  1118. font-size: 0.8125rem;
  1119. font-weight: bold;
  1120. color: #333;
  1121. padding-left: 0.375rem;
  1122. border-left: 0.1875rem solid #FF9800;
  1123. margin-top: 0.75rem;
  1124. margin-bottom: 0.5rem;
  1125. }
  1126. .sum-pet-card {
  1127. background-color: #FAFAFA;
  1128. border-radius: 0.375rem;
  1129. padding: 0.625rem;
  1130. display: flex;
  1131. align-items: center;
  1132. }
  1133. .sum-pet-avatar {
  1134. width: 2.5rem;
  1135. height: 2.5rem;
  1136. border-radius: 50%;
  1137. margin-right: 0.625rem;
  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: 0.25rem;
  1149. }
  1150. .sum-pet-name {
  1151. font-size: 0.8125rem;
  1152. font-weight: bold;
  1153. color: #333;
  1154. margin-right: 0.375rem;
  1155. }
  1156. .sum-pet-breed {
  1157. font-size: 0.75rem;
  1158. color: #999;
  1159. }
  1160. .sum-pet-remark {
  1161. font-size: 0.75rem;
  1162. color: #666;
  1163. line-height: 1.5;
  1164. }
  1165. .sum-textarea {
  1166. width: 100%;
  1167. min-height: 6.875rem;
  1168. background-color: #fff;
  1169. border: 1px solid #eeeeee;
  1170. border-radius: 0.375rem;
  1171. padding: 0.5625rem;
  1172. font-size: 0.8125rem;
  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: 0.9375rem;
  1181. padding: 0.5rem 0;
  1182. border-top: 1px solid #f5f5f5;
  1183. }
  1184. .sum-sign-label {
  1185. font-size: 0.8125rem;
  1186. color: #999;
  1187. margin-right: 0.3125rem;
  1188. }
  1189. .sum-sign-val {
  1190. font-size: 0.8125rem;
  1191. color: #333;
  1192. }
  1193. .sum-footer {
  1194. padding: 0.625rem 1.125rem 1.125rem;
  1195. padding-bottom: max(1.125rem, constant(safe-area-inset-bottom));
  1196. padding-bottom: max(1.125rem, env(safe-area-inset-bottom));
  1197. background-color: #fff;
  1198. }
  1199. .sum-submit-btn {
  1200. width: 100%;
  1201. height: 2.625rem;
  1202. line-height: 2.625rem;
  1203. border-radius: 1.3125rem;
  1204. font-size: 0.9375rem;
  1205. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  1206. color: #fff;
  1207. border: none;
  1208. box-shadow: 0 0.125rem 0.5rem 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: 20.625rem;
  1228. max-height: 80vh;
  1229. background-color: #fff;
  1230. border-radius: 0.625rem;
  1231. display: flex;
  1232. flex-direction: column;
  1233. overflow: hidden;
  1234. box-shadow: 0 0.25rem 1rem 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: 0.9375rem 0.9375rem 0.625rem;
  1245. border-bottom: 1px solid #f5f5f5;
  1246. }
  1247. .pm-remark-btn {
  1248. height: 1.625rem;
  1249. line-height: 1.625rem;
  1250. padding: 0 0.75rem;
  1251. background: linear-gradient(90deg, #FF9800 0%, #FF5722 100%);
  1252. color: #fff;
  1253. font-size: 0.8125rem;
  1254. border-radius: 0.8125rem;
  1255. margin-right: 0.5rem;
  1256. font-weight: bold;
  1257. }
  1258. /* 标签芯片 */
  1259. .pm-tags-row {
  1260. display: flex;
  1261. flex-wrap: wrap;
  1262. padding: 0 0.75rem 0.625rem;
  1263. gap: 0.5rem;
  1264. }
  1265. .pm-tag-chip {
  1266. background-color: #FFF3E0;
  1267. border: 1px solid #FFB74D;
  1268. border-radius: 0.625rem;
  1269. padding: 0.1875rem 0.625rem;
  1270. }
  1271. .pm-tag-chip-text {
  1272. font-size: 0.75rem;
  1273. color: #FF9800;
  1274. }
  1275. /* 备注日志 */
  1276. .pm-log-section {
  1277. padding: 0.625rem 0.75rem;
  1278. border-top: 1px solid #f5f5f5;
  1279. margin-top: 0.3125rem;
  1280. }
  1281. .pm-log-header {
  1282. display: flex;
  1283. align-items: center;
  1284. margin-bottom: 0.625rem;
  1285. }
  1286. .pm-log-section-title {
  1287. font-size: 0.875rem;
  1288. font-weight: bold;
  1289. color: #333;
  1290. }
  1291. .pm-log-item {
  1292. padding: 0.5rem 0;
  1293. border-bottom: 1px solid #f9f9f9;
  1294. display: flex;
  1295. flex-direction: column;
  1296. }
  1297. .pm-log-date {
  1298. font-size: 0.75rem;
  1299. color: #999;
  1300. margin-bottom: 0.25rem;
  1301. }
  1302. .pm-log-text {
  1303. font-size: 0.875rem;
  1304. color: #333;
  1305. line-height: 1.6;
  1306. margin-bottom: 0.1875rem;
  1307. }
  1308. .pm-log-recorder {
  1309. font-size: 0.6875rem;
  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: 20.3125rem;
  1332. background-color: #fff;
  1333. border-radius: 0.625rem;
  1334. padding: 0.9375rem;
  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: 0.9375rem;
  1345. padding-bottom: 0.625rem;
  1346. border-bottom: 1px solid #f5f5f5;
  1347. }
  1348. .am-title {
  1349. font-size: 1rem;
  1350. font-weight: bold;
  1351. color: #333;
  1352. }
  1353. .am-scroll-list {
  1354. flex: 1;
  1355. }
  1356. .am-item {
  1357. padding: 0.75rem;
  1358. background-color: #F9FAFB;
  1359. border-radius: 0.375rem;
  1360. margin-bottom: 0.75rem;
  1361. }
  1362. .am-item-header {
  1363. display: flex;
  1364. justify-content: space-between;
  1365. align-items: center;
  1366. margin-bottom: 0.5rem;
  1367. }
  1368. .am-item-type {
  1369. font-size: 0.875rem;
  1370. font-weight: bold;
  1371. color: #333;
  1372. }
  1373. .am-item-status {
  1374. font-size: 0.6875rem;
  1375. padding: 0.125rem 0.5rem;
  1376. border-radius: 0.625rem;
  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: 0.8125rem;
  1392. color: #666;
  1393. line-height: 1.6;
  1394. display: block;
  1395. margin-bottom: 0.5rem;
  1396. }
  1397. .am-item-photos {
  1398. display: flex;
  1399. flex-wrap: wrap;
  1400. gap: 0.375rem;
  1401. margin-bottom: 0.625rem;
  1402. }
  1403. .am-photo {
  1404. width: 4.0625rem;
  1405. height: 4.0625rem;
  1406. border-radius: 0.25rem;
  1407. }
  1408. .am-audit-box {
  1409. margin-top: 0.625rem;
  1410. padding-top: 0.625rem;
  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: 0.25rem;
  1418. }
  1419. .am-audit-label {
  1420. font-size: 0.75rem;
  1421. font-weight: bold;
  1422. color: #333;
  1423. }
  1424. .am-audit-time {
  1425. font-size: 0.6875rem;
  1426. color: #999;
  1427. }
  1428. .am-audit-remark {
  1429. font-size: 0.75rem;
  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: 3.125rem 0;
  1438. }
  1439. .empty-icon {
  1440. width: 6.25rem;
  1441. height: 6.25rem;
  1442. margin-bottom: 0.625rem;
  1443. opacity: 0.5;
  1444. }
  1445. .empty-text {
  1446. font-size: 0.8125rem;
  1447. color: #999;
  1448. }
  1449. /* 媒体项容器 */
  1450. .tl-media-item {
  1451. position: relative;
  1452. width: 4.375rem;
  1453. height: 4.375rem;
  1454. }
  1455. /* 视频占位样式(不取第一帧,直接用图标) */
  1456. .tl-video-placeholder {
  1457. width: 100%;
  1458. height: 100%;
  1459. background: linear-gradient(135deg, #444 0%, #222 100%);
  1460. border-radius: 0.25rem;
  1461. display: flex;
  1462. flex-direction: column;
  1463. justify-content: center;
  1464. align-items: center;
  1465. }
  1466. .tl-video-placeholder.miniaturized {
  1467. border-radius: 0.25rem;
  1468. overflow: hidden;
  1469. }
  1470. .tl-video-label {
  1471. color: #fff;
  1472. font-size: 0.625rem;
  1473. margin-top: 1.5625rem;
  1474. opacity: 0.8;
  1475. }
  1476. .tl-video-label.small {
  1477. margin-top: 1.09375rem;
  1478. font-size: 0.5625rem;
  1479. }
  1480. .tl-play-icon {
  1481. position: absolute;
  1482. top: 50%;
  1483. left: 50%;
  1484. transform: translate(-50%, -50%);
  1485. width: 1.875rem;
  1486. height: 1.875rem;
  1487. display: flex;
  1488. justify-content: center;
  1489. align-items: center;
  1490. background-color: rgba(255, 255, 255, 0.2);
  1491. border: 0.0625rem 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: 0.46875rem solid transparent;
  1500. border-bottom: 0.46875rem solid transparent;
  1501. border-left: 0.625rem solid #fff;
  1502. margin-left: 0.1875rem;
  1503. }
  1504. .tl-play-icon.small {
  1505. width: 1.25rem;
  1506. height: 1.25rem;
  1507. }
  1508. .tl-play-icon.small::after {
  1509. border-top: 0.3125rem solid transparent;
  1510. border-bottom: 0.3125rem solid transparent;
  1511. border-left: 0.4375rem solid #fff;
  1512. margin-left: 0.125rem;
  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: 18.75rem;
  1531. }
  1532. .v-player {
  1533. width: 100%;
  1534. height: 100%;
  1535. }
  1536. .v-close {
  1537. position: absolute;
  1538. top: -2.5rem;
  1539. right: 1.25rem;
  1540. width: 1.875rem;
  1541. height: 1.875rem;
  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: 1.25rem;
  1549. }
  1550. /* 异常列表媒体样式 */
  1551. .am-photo-item {
  1552. position: relative;
  1553. width: 4.6875rem;
  1554. height: 4.6875rem;
  1555. border-radius: 0.25rem;
  1556. overflow: hidden;
  1557. }
  1558. .am-photo {
  1559. width: 4.6875rem;
  1560. height: 4.6875rem;
  1561. border-radius: 0.25rem;
  1562. }
  1563. .am-video-poster.miniaturized {
  1564. width: 100%;
  1565. height: 100%;
  1566. position: relative;
  1567. }
  1568. .tl-play-icon.small {
  1569. width: 1.25rem;
  1570. height: 1.25rem;
  1571. }
  1572. .tl-play-icon.small::after {
  1573. border-top: 0.3125rem solid transparent;
  1574. border-bottom: 0.3125rem solid transparent;
  1575. border-left: 0.4375rem solid #fff;
  1576. margin-left: 0.125rem;
  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: 0.9375rem 0.9375rem 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: 0.8125rem;
  1602. color: #999;
  1603. padding: 0.9375rem 0;
  1604. border-bottom: 1px solid #f5f5f5;
  1605. }
  1606. .nav-sheet-item {
  1607. display: block;
  1608. text-align: center;
  1609. font-size: 1rem;
  1610. color: #333;
  1611. padding: 1.09375rem 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: 0.375rem;
  1623. background-color: #f5f5f5;
  1624. }