publisherQuestion.wxss 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* miniprogram/pages/publisherQuestion/publisherQuestion.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. background-color: #ffffff;
  18. border-radius: 28rpx;
  19. box-shadow: 5rpx 5rpx 8rpx 0rpx rgba(0, 0, 0, 0.16);
  20. }
  21. .title {
  22. margin: 20rpx 20rpx 20rpx 40rpx;
  23. font-size: 35rpx;
  24. }
  25. .question {
  26. margin: 0rpx 20rpx 0rpx 40rpx;
  27. font-size: 35rpx;
  28. line-height: 50rpx;
  29. }
  30. .answer {
  31. margin: 10rpx 20rpx 20rpx 20rpx;
  32. padding: 20rpx;
  33. width: 600rpx;
  34. border-radius: 10rpx;
  35. font-size: 35rpx;
  36. line-height: 50rpx;
  37. align-self: center;
  38. height: 100rpx;
  39. background-color: #EDEDED;
  40. }
  41. .save-btn {
  42. margin: 0rpx 10rpx 20rpx 10rpx;
  43. padding: 10rpx 20rpx;
  44. border-radius: 20rpx;
  45. font-size: 35rpx;
  46. align-self: center;
  47. }