question.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .plv-mp-question-wrap {
  2. height: 100%;
  3. border-radius: 8px 8px 0 0;
  4. background: #fff;
  5. color: #333;
  6. font-size: 32rpx;
  7. }
  8. .plv-mp-question-wrap.show {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. right: 0;
  13. bottom: 0;
  14. z-index: 2000;
  15. }
  16. .plv-mp-question-panel-title {
  17. height: 98rpx;
  18. border-bottom: 1px solid #EDEDEF;
  19. font-size: 32rpx;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. position: relative;
  24. box-sizing: border-box;
  25. }
  26. .plv-mp-question-panel-title__close {
  27. position: absolute;
  28. width: 46rpx;
  29. height: 46rpx;
  30. right: 32rpx;
  31. top: 50%;
  32. transform: translateY(-50%);
  33. }
  34. .plv-mp-question-content {
  35. position: absolute;
  36. width: 100%;
  37. top: 98rpx;
  38. left: 0;
  39. bottom: 176rpx;
  40. }
  41. .plv-mp-question-content_container {
  42. padding: 40rpx 48rpx;
  43. }
  44. .plv-mp-question-title {
  45. font-weight: 600;
  46. font-size: 32rpx;
  47. text-align: center;
  48. margin-bottom: 40rpx;
  49. }
  50. .plv-mp-question-subject {
  51. margin-bottom: 40rpx;
  52. }
  53. .plv-mp-question-subject-title {
  54. margin-bottom: 40rpx;
  55. }
  56. .plv-mp-question-subject-title_require {
  57. color: #FF5722;
  58. }
  59. .plv-mp-question-subject-title_type {
  60. color: #666666;
  61. }
  62. .plv-mp-question-subject-title_score {
  63. color: #3082FE;
  64. }
  65. .plv-mp-question-subject-option {
  66. height: 80rpx;
  67. border-radius: 40rpx;
  68. border: 1px solid #CFD8DC;
  69. padding: 0 32rpx;
  70. display: flex;
  71. align-items: center;
  72. margin-bottom: 24rpx;
  73. line-height: 60rpx;
  74. }
  75. .plv-mp-question-subject-option.selected {
  76. border-color: #3082FE;
  77. color: #3082FE;
  78. }
  79. .plv-mp-question-subject-option:last-of-type {
  80. margin-bottom: 0;
  81. }
  82. .plv-mp-question-subject-textarea {
  83. height: 160rpx;
  84. border-radius: 8rpx;
  85. font-size: 32rpx;
  86. width: 100%;
  87. display: block;
  88. border: 1px solid #CFD8DC;
  89. box-sizing: border-box;
  90. padding: 20rpx 30rpx;
  91. }
  92. .plv-mp-question-bottom {
  93. position: absolute;
  94. width: 100%;
  95. height: 176rpx;
  96. left: 0;
  97. bottom: 0;
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. }
  102. .plv-mp-question-bottom_submit_btn {
  103. height: 96rpx;
  104. width: 654rpx;
  105. border-radius: 50rpx;
  106. background: #3082FE;
  107. color: #fff;
  108. font-size: 32rpx;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. }
  113. .plv-mp-question-modal {
  114. position: absolute;
  115. top: 0;
  116. left: 0;
  117. width: 100%;
  118. height: 100%;
  119. z-index: 1000;
  120. }