question.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html,
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. box-sizing: border-box;
  10. }
  11. .content {
  12. width: 100%;
  13. height: 100%;
  14. overflow-y: scroll;
  15. }
  16. .question-container {
  17. width: 100%;
  18. position: relative;
  19. }
  20. .container-bg {
  21. width: 100%;
  22. display: block;
  23. }
  24. .title {
  25. position: absolute;
  26. top: 4.96rem;
  27. left: 50%;
  28. transform: translateX(-50%);
  29. width: 7.12rem;
  30. height: .54rem;
  31. }
  32. .title img {
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. width: 100%;
  37. height: 100%;
  38. }
  39. .subject {
  40. position: absolute;
  41. top: 5.2rem;
  42. left: 0;
  43. right: 0;
  44. margin:0 auto;
  45. width: 6.62rem;
  46. }
  47. .question {
  48. position: relative;
  49. z-index: 2;
  50. width: 6.62rem;
  51. height: auto;
  52. border-radius: 0 0 .2rem .2rem;
  53. box-shadow: 0 4px 8px 0 #A691D3;
  54. background: #fff;
  55. overflow: hidden;
  56. padding: 0 .4rem;
  57. box-sizing: border-box;
  58. }
  59. .inset {
  60. position: absolute;
  61. left: 0;
  62. top: 0;
  63. z-index: 99;
  64. width: 100%;
  65. height: .54rem;
  66. }
  67. .bottom {
  68. position: absolute;
  69. left: 0;
  70. bottom: -.18rem;
  71. width: 100%;
  72. height: .26rem;
  73. }
  74. .question-box {
  75. overflow: hidden;
  76. border-radius: 0 0 .2rem .2rem;
  77. background: #fff;
  78. }
  79. .audio {
  80. position: absolute;
  81. top: .5rem;
  82. left: .5rem;
  83. height: .7rem;
  84. line-height: .7rem;
  85. padding-left: .7rem;
  86. }
  87. .audio .audiobtn {
  88. position: absolute;
  89. left: 0;
  90. top: 0;
  91. width: .7rem;
  92. height: .7rem;
  93. }
  94. .audio span {
  95. font-size: .38rem;
  96. float: left;
  97. }
  98. .question-photo {
  99. width: 100%;
  100. height: 1.9rem;
  101. background: red;
  102. margin-top: 1.5rem;
  103. }
  104. .question-photo img {
  105. width: 100%;
  106. }
  107. .option {
  108. width: 100%;
  109. margin-top: .5rem;
  110. }
  111. .option li {
  112. width: 100%;
  113. height: .7rem;
  114. border: .02rem #FEA10F solid;
  115. margin-bottom: .3rem;
  116. font-size: .28rem;
  117. text-align: center;
  118. line-height: .7rem;
  119. border-radius: .16rem;
  120. list-style:none;
  121. }
  122. .select {
  123. background: #FEA10F;
  124. color: #fff;
  125. }
  126. .order {
  127. font-size: .28rem;
  128. text-align: center;
  129. padding-bottom: .3rem;
  130. }
  131. .ind {
  132. color: #7A81FF;
  133. }
  134. .popup {
  135. position: absolute;
  136. left: 0;
  137. top: 0;
  138. width: 100%;
  139. height: 100%;
  140. background: rgba(0, 0, 0, .8);
  141. z-index: 999;
  142. display: none;
  143. }
  144. .popup-content {
  145. width: 100%;
  146. height: 100%;
  147. }
  148. .popup-content .bg {
  149. position: absolute;
  150. left: 15%;
  151. top: 10%;
  152. width: 70%;
  153. height: 70%;
  154. }
  155. canvas {
  156. position: absolute;
  157. top: -9999px;
  158. }
  159. .baocun {
  160. position: absolute;
  161. left: 50%;
  162. bottom: 15%;
  163. transform: translateX(-50%);
  164. color: #fff;
  165. font-size: .28rem;
  166. }
  167. .code {
  168. position: absolute;
  169. left: 0;
  170. bottom: 0;
  171. width: 100%;
  172. height: 1.6rem;
  173. background: #fff;
  174. display: flex;
  175. align-items: center;
  176. }
  177. .code img {
  178. width: 1.32rem;
  179. height: 1.32rem;
  180. margin: 0 .45rem;
  181. }
  182. .code .text {
  183. display: flex;
  184. flex-direction: column;
  185. font-size: .28rem;
  186. }
  187. /*卷边效果 需要完善已经注释*/
  188. /*
  189. .question:before{
  190. content: '';
  191. position: absolute;
  192. right:0;
  193. bottom:0;
  194. border-style: solid;
  195. border-width: 0;
  196. border-color:#fff rgba(0, 0, 0, 0.2);
  197. transition: all .5s;
  198. border-radius: 0 0 50% 0;
  199. }
  200. .question:hover:before {
  201. border-top-width: 300px;
  202. border-right-width: 300px;
  203. } */