detail.scss 1.9 KB

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