index.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 80rpx;
  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. line-height: 80rpx;
  25. margin-left: 30rpx;
  26. padding-left: 0;
  27. font-size: 28rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #000000;
  30. }
  31. .footer {
  32. position: fixed;
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-around;
  36. height: 110rpx;
  37. width: 100vw;
  38. bottom: 0;
  39. font-size: 28rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. color: #000000;
  42. .but {
  43. width: 400rpx;
  44. height: 90rpx;
  45. background: #3874F6;
  46. border-radius: 100rpx;
  47. font-family: PingFang SC-Bold, PingFang SC;
  48. font-weight: bold;
  49. color: #FFFFFF;
  50. line-height: 44px;
  51. }
  52. }