detail.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. body {
  2. background-color: #fff;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  4. }
  5. .nav-bar {
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 2.75rem;
  11. padding-top: var(--status-bar-height);
  12. background-color: #fff;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. padding: 0 0.9375rem;
  17. box-sizing: border-box;
  18. z-index: 100;
  19. border-bottom: 0.03125rem solid #f5f5f5;
  20. }
  21. .nav-placeholder {
  22. height: calc(2.75rem + var(--status-bar-height));
  23. }
  24. .back-icon {
  25. width: 1.25rem;
  26. height: 1.25rem;
  27. }
  28. .nav-title {
  29. font-size: 1.0625rem;
  30. font-weight: bold;
  31. color: #333;
  32. }
  33. .nav-right { width: 1.25rem;
  34. }
  35. .detail-content {
  36. padding: 1.25rem 0.9375rem;
  37. }
  38. .detail-title {
  39. font-size: 1.25rem;
  40. font-weight: bold;
  41. color: #333;
  42. display: block;
  43. margin-bottom: 0.625rem;
  44. }
  45. .detail-time {
  46. font-size: 0.75rem;
  47. color: #999;
  48. display: block;
  49. margin-bottom: 1.25rem;
  50. }
  51. .detail-body {
  52. font-size: 0.9375rem;
  53. color: #333;
  54. line-height: 1.8;
  55. }
  56. .detail-footer {
  57. margin-top: 1.875rem;
  58. text-align: center;
  59. }
  60. .divider {
  61. height: 0.03125rem;
  62. background-color: #eee;
  63. margin-bottom: 0.9375rem;
  64. }
  65. .footer-text {
  66. font-size: 0.8125rem;
  67. color: #ccc;
  68. }