publisherQuestion.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. padding: 10rpx 20rpx;
  43. border-radius: 20rpx;
  44. font-size: 35rpx;
  45. align-self: center;
  46. margin-right: 20rpx;
  47. }
  48. .top-btn {
  49. margin: 0rpx !important;
  50. padding: 10rpx 20rpx !important;
  51. border-radius: 20rpx;
  52. font-size: 35rpx;
  53. font-weight: normal !important;
  54. }
  55. .btn {
  56. display: flex;
  57. justify-content: center;
  58. margin-bottom: 20rpx;
  59. }