app.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**app.wxss**/
  2. @import '/component/iView/button/index.wxss';
  3. @import '/component/iView/radio/index.wxss';
  4. @import '/component/iView/input/index.wxss';
  5. page {
  6. background: #f7f7f7;
  7. }
  8. .container {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: 200rpx 0;
  15. box-sizing: border-box;
  16. }
  17. .student-page {
  18. background: white;
  19. }
  20. .student-page button {
  21. height: 30px;
  22. line-height: 30px;
  23. margin-top: 7px;
  24. }
  25. .gapfilling-span {
  26. color: red;
  27. padding: 0px 30px;
  28. margin: 0px 5px;
  29. border-bottom: 3px double red;
  30. }
  31. .ueditor-p {
  32. display: inline !important;
  33. }
  34. .exam-hidden {
  35. display: none;
  36. }
  37. .exam-pick-input{
  38. height: 30px;
  39. }
  40. .radio-answer {
  41. line-height: 60rpx;
  42. margin-top:16rpx;
  43. }
  44. .checkbox-answer{
  45. margin-top:16rpx;
  46. line-height: 60rpx;
  47. }
  48. .p20{ padding: 20rpx;}
  49. .p10{padding: 10rpx;}
  50. .ml20{margin-left: 20rpx;}
  51. .ml40{margin-left: 40rpx;}
  52. .ml50{margin-left: 50rpx;}
  53. .mt10{margin-top: 10rpx;}
  54. .mt20{margin-top: 20rpx;}
  55. .mt30{margin-top: 30rpx;}
  56. .mt40{margin-top: 40rpx;}
  57. .mt50{margin-top: 50rpx;}
  58. .tc{text-align: center;}
  59. .tl{text-align: left;}
  60. .fl{float: left;}
  61. .pt20{ padding-top: 20rpx;}
  62. .pt30{ padding-top: 30rpx;}