index.scss 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .box {
  2. position: relative;
  3. padding: 10rpx 20rpx;
  4. height: 100%;
  5. box-sizing: border-box;
  6. overflow: hidden;
  7. .head {
  8. .title {
  9. font-size: 30rpx;
  10. font-weight: bold;
  11. line-height: 46rpx;
  12. text-align: center;
  13. }
  14. .rep {
  15. display: flex;
  16. justify-content: space-between;
  17. margin-top: 8rpx;
  18. padding-bottom: 8rpx;
  19. border-bottom: 1rpx solid #ddd;
  20. .rep-left,
  21. .rep-right {
  22. display: flex;
  23. align-items: center;
  24. height: 16px;
  25. font-size: 24rpx;
  26. color: #666;
  27. }
  28. }
  29. padding-bottom: 8rpx;
  30. box-sizing: border-box;
  31. }
  32. .bottom {
  33. position: fixed;
  34. left: 0;
  35. bottom: 0;
  36. width: 100%;
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. border-top: 1px solid #ddd;
  41. padding: 20rpx;
  42. box-sizing: border-box;
  43. background-color: #fff;
  44. .count {
  45. font-size: 28rpx;
  46. color: #666;
  47. flex: 1;
  48. }
  49. .button-box {
  50. display: flex;
  51. justify-content: flex-end;
  52. flex: 1;
  53. .button {
  54. height: 50rpx;
  55. }
  56. }
  57. }
  58. }