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. margin-bottom: 20rpx;
  61. .row,
  62. .col {
  63. line-height: 34rpx;
  64. font-family: PingFang SC, PingFang SC;
  65. font-size: 24rpx;
  66. color: #333333;
  67. margin-top: 8rpx;
  68. }
  69. .row:first-child {
  70. margin-top: 0;
  71. }
  72. .two-box {
  73. width: 100%;
  74. display: flex;
  75. flex-wrap: wrap;
  76. .col {
  77. width: 50% !important;
  78. flex-shrink: 0;
  79. }
  80. }
  81. .price {
  82. color: #FF3B30;
  83. font-weight: bold;
  84. }
  85. }