index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. background-color: #fff;
  15. border-radius: 50rpx 50rpx 0 0 ;
  16. .close{
  17. position: absolute;
  18. top:26rpx;
  19. right: 30rpx;
  20. }
  21. }
  22. .checkbox {
  23. height: 160rpx;
  24. border-bottom: 2rpx solid #ddd;
  25. box-sizing: border-box;
  26. padding-left: 30rpx;
  27. overflow: hidden;
  28. }
  29. .label-class {
  30. width: 85%;
  31. height: 100%;
  32. margin-left: 30rpx;
  33. padding-left: 0;
  34. }
  35. .label {
  36. margin-top: 20rpx;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #000000;
  40. margin-bottom: 10rpx;
  41. }
  42. .check-text {
  43. font-size: 24rpx;
  44. font-family: PingFang SC-Regular, PingFang SC;
  45. color: #999999;
  46. }
  47. .footer {
  48. position: fixed;
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-around;
  52. height: 110rpx;
  53. width: 100vw;
  54. bottom: 0;
  55. font-size: 28rpx;
  56. font-family: PingFang SC-Regular, PingFang SC;
  57. color: #000000;
  58. .but {
  59. width: 400rpx;
  60. height: 90rpx;
  61. background: #3874F6;
  62. border-radius: 100rpx;
  63. font-family: PingFang SC-Bold, PingFang SC;
  64. font-weight: bold;
  65. color: #FFFFFF;
  66. line-height: 44px;
  67. }
  68. }