index.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .header {
  2. height: 90rpx;
  3. line-height: 90rpx;
  4. width: 100vw;
  5. text-align: center;
  6. font-size: 28rpx;
  7. font-family: PingFang SC-Bold, PingFang SC;
  8. font-weight: bold;
  9. color: #333333;
  10. border-bottom: 1rpx solid #dddddd;
  11. box-sizing: border-box;
  12. position: fixed;
  13. top: 0;
  14. }
  15. .checkbox {
  16. height: 160rpx;
  17. border-bottom: 2rpx solid #ddd;
  18. box-sizing: border-box;
  19. padding-left: 30rpx;
  20. overflow: hidden;
  21. }
  22. .label-class {
  23. width: 85%;
  24. height: 100%;
  25. margin-left: 30rpx;
  26. padding-left: 0;
  27. }
  28. .label {
  29. margin-top: 20rpx;
  30. font-size: 28rpx;
  31. font-family: PingFang SC-Regular, PingFang SC;
  32. color: #000000;
  33. margin-bottom: 10rpx;
  34. }
  35. .check-text {
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #999999;
  39. }
  40. .footer {
  41. position: fixed;
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-around;
  45. height: 110rpx;
  46. width: 100vw;
  47. bottom: 0;
  48. font-size: 28rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #000000;
  51. .but {
  52. width: 400rpx;
  53. height: 90rpx;
  54. background: #3874F6;
  55. border-radius: 100rpx;
  56. font-family: PingFang SC-Bold, PingFang SC;
  57. font-weight: bold;
  58. color: #FFFFFF;
  59. line-height: 44px;
  60. }
  61. }