detail.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .intr {
  2. position: relative;
  3. width: 100vw;
  4. box-sizing: border-box;
  5. background-color: #fff;
  6. padding: 20rpx 30rpx;
  7. .num {
  8. height: 40rpx;
  9. line-height: 40rpx;
  10. font-size: 32rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. }
  15. .tags {
  16. margin-bottom: 15rpx;
  17. text {
  18. display: inline-block;
  19. height: 40rpx;
  20. line-height: 40rpx;
  21. background: #E7EEFF;
  22. border-radius: 20rpx;
  23. padding: 0 15rpx;
  24. font-size: 20rpx;
  25. color: #fff;
  26. margin-right: 10rpx;
  27. }
  28. }
  29. .exp {
  30. height: 34rpx;
  31. line-height: 34rpx;
  32. font-size: 26rpx;
  33. margin-bottom: 8rpx;
  34. color: #666;
  35. }
  36. }
  37. .footer {
  38. display: flex;
  39. justify-content: space-between;
  40. padding: 0 30rpx;
  41. position: fixed;
  42. width: 100vw;
  43. height: 130rpx;
  44. background: #FFFFFF;
  45. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  46. bottom: 0;
  47. box-sizing: border-box;
  48. z-index: 9999;
  49. padding-top: 10rpx;
  50. .price {
  51. line-height: 90rpx;
  52. view {
  53. font-size: 24rpx;
  54. color: rgb(163, 162, 162);
  55. }
  56. .count {
  57. font-size: 32rpx;
  58. font-weight: bold;
  59. color: var(--error);
  60. margin: 2rpx 0 10rpx 0;
  61. }
  62. }
  63. .but-box {
  64. .but {
  65. min-width: 156rpx;
  66. height: 90rpx;
  67. background: #3874F6;
  68. border-radius: 8rpx;
  69. font-size: 28rpx;
  70. font-family: PingFang SC-Bold, PingFang SC;
  71. font-weight: bold;
  72. color: #FFFFFF;
  73. }
  74. .delete {
  75. background: var(--warning);
  76. }
  77. }
  78. }