detail.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .head {
  2. width: 100vw;
  3. background: #FFFFFF;
  4. padding: 20rpx 30rpx;
  5. box-sizing: border-box;
  6. .title {
  7. line-height: 44rpx;
  8. font-family: PingFang SC, PingFang SC;
  9. font-weight: bold;
  10. font-size: 32rpx;
  11. color: #333333;
  12. }
  13. .amount {
  14. color: #666666;
  15. font-size: 24rpx;
  16. line-height: 34rpx;
  17. margin-top: 8rpx;
  18. text {
  19. color: #FF3B30;
  20. font-weight: bold;
  21. }
  22. }
  23. .date {
  24. color: #666666;
  25. font-size: 24rpx;
  26. line-height: 34rpx;
  27. margin-top: 8rpx;
  28. .value {
  29. color: #333;
  30. }
  31. }
  32. }
  33. .search {
  34. display: flex;
  35. height: 100rpx;
  36. align-items: center;
  37. overflow: hidden;
  38. .label {
  39. width: 114rpx;
  40. font-family: PingFang SC, PingFang SC;
  41. font-size: 28rpx;
  42. color: #666666;
  43. flex-shrink: 0;
  44. font-weight: bold;
  45. padding: 0 30rpx;
  46. margin: 0;
  47. }
  48. .box {
  49. flex: 1;
  50. .custom-class {
  51. --search-background-color: #fff !important;
  52. }
  53. }
  54. }
  55. .item {
  56. width: 100vw;
  57. background-color: #fff;
  58. padding: 30rpx;
  59. box-sizing: border-box;
  60. .row {
  61. line-height: 34rpx;
  62. font-family: PingFang SC, PingFang SC;
  63. font-size: 24rpx;
  64. color: #333333;
  65. margin-top: 8rpx;
  66. }
  67. .row:first-child {
  68. margin-top: 0;
  69. }
  70. .two-lines {
  71. display: flex;
  72. >view {
  73. width: 50%;
  74. }
  75. .left {
  76. padding-right: 6rpx;
  77. box-sizing: border-box;
  78. }
  79. }
  80. .price {
  81. color: #FF3B30;
  82. font-weight: bold;
  83. }
  84. }