disclaimer.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .content {
  2. padding: 52rpx 32rpx;
  3. }
  4. .content .question checkbox {
  5. display: inline-block;
  6. vertical-align: middle;
  7. margin-bottom: 2px;
  8. }
  9. .content .question text {
  10. font-weight: bold;
  11. color: #000;
  12. font-size: 30rpx;
  13. }
  14. .btm {
  15. height: 170rpx;
  16. position: fixed;
  17. width: 100%;
  18. left: 0;
  19. bottom: 0;
  20. /* background: #fff; */
  21. }
  22. .btm-btn {
  23. width: 100%;
  24. height: 84rpx;
  25. font-size: 36rpx;
  26. color: #FFFFFF;
  27. margin: 0 40rpx;
  28. background: #FA7D22;
  29. border-radius: 42rpx;
  30. }
  31. checkbox .wx-checkbox-input {
  32. border-radius: 50%;
  33. width: 46rpx;
  34. height: 46rpx;
  35. box-sizing: border-box;
  36. }
  37. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  38. border: 1rpx solid #f3333e;
  39. background: #f3333e;
  40. }
  41. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  42. border-radius: 50%;
  43. width: 40rpx;
  44. height: 40rpx;
  45. line-height: 40rpx;
  46. text-align: center;
  47. font-size: 30rpx;
  48. color: #fff;
  49. background: transparent;
  50. transform: translate(-50%, -50%) scale(1);
  51. -webkit-transform: translate(-50%, -50%) scale(1);
  52. }