questionDetail.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .top {
  2. background-color: #fff;
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. }
  7. .progress {
  8. width: 620rpx;
  9. margin-left: 30rpx;
  10. border-radius: 3rpx;
  11. overflow: hidden;
  12. }
  13. .progress-txt {
  14. flex: 1;
  15. text-align: center;
  16. font-size: 24rpx;
  17. font-weight: 400;
  18. color: #FF4330;
  19. }
  20. .content {
  21. background: #FFFFFF;
  22. margin: 20rpx;
  23. padding: 10rpx 30rpx 30rpx 10rpx;
  24. }
  25. .question {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .tag {
  30. width: 55rpx;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. height: 55rpx;
  35. background: linear-gradient(0deg, #FF7B60 0%, #FF4330 100%);
  36. border-radius: 20rpx;
  37. font-size: 28rpx;
  38. font-weight: 400;
  39. color: #FFFFFF;
  40. }
  41. .title {
  42. font-size: 28rpx;
  43. font-weight: 400;
  44. color: #333333;
  45. flex: 1;
  46. margin: 0 30rpx;
  47. }
  48. .type {
  49. font-size: 28rpx;
  50. font-weight: 400;
  51. color: #FF4330;
  52. }
  53. .opt-list {
  54. padding: 0rpx 10rpx;
  55. display: flex;
  56. /* flex-flow: wrap; */
  57. flex-direction: column;
  58. margin-top: 30rpx;
  59. }
  60. .opt {
  61. display: flex;
  62. align-items: center;
  63. }
  64. .radio-txt {
  65. margin: 0 25rpx;
  66. font-size: 24rpx;
  67. font-weight: 400;
  68. color: #333333;
  69. line-height: 24rpx;
  70. }
  71. .input-class {
  72. min-height: 300rpx !important;
  73. }
  74. .mtb50 {
  75. margin: 50rpx;
  76. }