receivedQuestion.wxss 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* miniprogram/pages/receivedQuestion/receivedQuestion.wxss */
  2. .checkbox {
  3. transform:scale(0.8);
  4. margin-left:10rpx;
  5. }
  6. .checkbox-group {
  7. width: 750rpx;
  8. margin-top: 30rpx;
  9. display: flex;
  10. justify-content: center;
  11. }
  12. .card {
  13. position: relative;
  14. display: flex;
  15. flex-direction: column;
  16. margin: 20rpx;
  17. border-bottom-style: solid;
  18. border-bottom-width: 1rpx;
  19. border-bottom-color: #C5CAE9;
  20. }
  21. .title {
  22. margin: 20rpx;
  23. font-size: 40rpx;
  24. font-weight: 800;
  25. }
  26. .question {
  27. margin: 20rpx;
  28. font-size: 35rpx;
  29. line-height: 50rpx;
  30. }
  31. .answer {
  32. margin: 20rpx;
  33. padding: 20rpx;
  34. width: 600rpx;
  35. border-radius: 10rpx;
  36. font-size: 35rpx;
  37. line-height: 50rpx;
  38. align-self: center;
  39. }
  40. .save-btn {
  41. margin: 20rpx;
  42. padding: 10rpx 20rpx;
  43. border-radius: 20rpx;
  44. font-size: 35rpx;
  45. align-self: center;
  46. }