detail.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. margin-bottom: 10rpx;
  15. }
  16. .exp {
  17. height: 34rpx;
  18. line-height: 34rpx;
  19. font-size: 26rpx;
  20. margin-bottom: 8rpx;
  21. color: #666;
  22. }
  23. .copy {
  24. position: absolute;
  25. right: 30rpx;
  26. top: 20rpx;
  27. background-color: #FF9933;
  28. border-radius: 12rpx;
  29. padding: 0 10rpx;
  30. color: #fff;
  31. border: none;
  32. height: 70rpx;
  33. }
  34. }
  35. .box {
  36. width: 100vw;
  37. padding: 20rpx 30rpx;
  38. box-sizing: border-box;
  39. background-color: #fff;
  40. margin-top: 10rpx;
  41. .row {
  42. display: flex;
  43. justify-content: space-between;
  44. min-height: 60rpx;
  45. align-items: center;
  46. .label {
  47. font-size: 28rpx;
  48. }
  49. checkbox {
  50. width: 36rpx;
  51. height: 36rpx;
  52. margin-right: 6rpx;
  53. }
  54. checkbox .wx-checkbox-input {
  55. width: 36rpx;
  56. height: 36rpx;
  57. }
  58. }
  59. }
  60. .footer {
  61. display: flex;
  62. justify-content: center;
  63. padding: 0 30rpx;
  64. position: fixed;
  65. width: 100vw;
  66. height: 130rpx;
  67. background: #FFFFFF;
  68. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  69. bottom: 0;
  70. box-sizing: border-box;
  71. z-index: 9999;
  72. padding-top: 10rpx;
  73. .but {
  74. width: 690rpx;
  75. height: 90rpx;
  76. background: var(--warning);
  77. border-radius: 16rpx;
  78. font-size: 28rpx;
  79. font-family: PingFang SC-Bold, PingFang SC;
  80. font-weight: bold;
  81. color: #fff;
  82. }
  83. }