detail.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .header {
  2. position: sticky;
  3. top: 0;
  4. width: 100vw;
  5. padding: 20rpx 30rpx;
  6. background-color: #fff;
  7. font-size: 24rpx;
  8. color: #999999;
  9. box-sizing: border-box;
  10. box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. .title {
  15. font-size: 36rpx;
  16. font-weight: 600;
  17. color: #333333;
  18. margin-bottom: 10rpx;
  19. }
  20. .badeg {
  21. flex-shrink: 0;
  22. height: 118rpx;
  23. width: 48rpx;
  24. line-height: 48rpx;
  25. text-align: center;
  26. background: #F0F3FF;
  27. border-radius: 8rpx 0rpx 0rpx 8rpx;
  28. font-size: 24rpx;
  29. color: #3874F6;
  30. writing-mode: vertical-lr;
  31. margin: -20rpx -30rpx;
  32. margin-left: 20rpx;
  33. }
  34. }
  35. .rows {
  36. width: 100vw;
  37. padding: 30rpx;
  38. background-color: #fff;
  39. box-sizing: border-box;
  40. font-size: 30rpx;
  41. font-family: PingFang SC-Medium, PingFang SC;
  42. font-weight: 600;
  43. color: #333333;
  44. border-bottom: 1px solid #ddd;
  45. .main {
  46. font-size: 28rpx !important;
  47. font-weight: 400;
  48. width: 100%;
  49. white-space: pre-line;
  50. word-break: break-all;
  51. margin-top: -10rpx !important;
  52. }
  53. }
  54. .footer {
  55. display: flex;
  56. justify-content: center;
  57. position: fixed;
  58. bottom: 0;
  59. width: 100vw;
  60. min-height: 130rpx;
  61. background-color: #fff;
  62. box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
  63. z-index: 999999999999999;
  64. .but {
  65. width: 690rpx;
  66. height: 90rpx;
  67. background: #FA8C16;
  68. border-radius: 16rpx;
  69. font-size: 28rpx;
  70. font-weight: 600;
  71. color: #FFFFFF;
  72. margin-top: 10rpx;
  73. }
  74. }