detail.scss 695 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .table {
  2. padding-top: 10rpx;
  3. background-color: #fff;
  4. text-align: center;
  5. .table-head {
  6. position: sticky;
  7. top: 0px;
  8. display: flex;
  9. color: rgb(129, 129, 129);
  10. line-height: 80rpx;
  11. font-size: 26rpx;
  12. z-index: 9;
  13. view {
  14. flex-shrink: 0;
  15. background-color: #F2F2F2;
  16. }
  17. }
  18. .line {
  19. font-size: 26rpx;
  20. color: rgb(129, 129, 129);
  21. line-height: 60rpx;
  22. display: flex;
  23. .line-1 {
  24. flex-shrink: 0;
  25. padding: 0 10rpx;
  26. box-sizing: border-box;
  27. background-color: #fff;
  28. }
  29. }
  30. /* .line view:first-child {
  31. color: #13C0C0;
  32. text-decoration: underline;
  33. } */
  34. .table-head view:first-child,
  35. .line view:first-child {
  36. position: sticky;
  37. left: 0;
  38. z-index: 7;
  39. }
  40. }