index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. font-weight: 600;
  13. }
  14. .expand {
  15. flex: 1;
  16. display: flex;
  17. justify-content: flex-end;
  18. .but {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. width: 80rpx;
  23. height: 80rpx;
  24. background: #FFFFFF;
  25. border-radius: 8rpx;
  26. border: 2rpx solid #CCCCCC;
  27. margin-left: 20rpx;
  28. color: #666666;
  29. }
  30. }
  31. }
  32. .discount {
  33. display: flex;
  34. align-items: center;
  35. height: 58rpx;
  36. width: 100%;
  37. font-size: 24rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. margin-top: -20rpx;
  40. .label {
  41. color: #666666;
  42. }
  43. .input {
  44. width: 140rpx;
  45. height: 58rpx;
  46. background: #FFFFFF;
  47. border-radius: 4rpx;
  48. border: 1rpx solid #CCCCCC;
  49. text-align: center;
  50. }
  51. .price {
  52. color: #F60909;
  53. }
  54. }