index.module.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .finishResult {
  2. color: #333333;
  3. font-size: 15px;
  4. .finishContainer {
  5. position: relative;
  6. background: url('../../images/exam-default-bg.png') no-repeat top center;
  7. background-size: contain;
  8. height: 240px;
  9. margin: 0 42px;
  10. }
  11. }
  12. .finishTitle {
  13. padding-top: 74px;
  14. padding-left: 26px;
  15. font-size: 18px;
  16. font-family: AlimamaShuHeiTi-Bold, AlimamaShuHeiTi;
  17. font-weight: bold;
  18. color: #0F75BB;
  19. line-height: 24px;
  20. span {
  21. position: relative;
  22. z-index: 1;
  23. &::after {
  24. content: ' ';
  25. display: inline-block;
  26. position: absolute;
  27. left: 0;
  28. bottom: 0;
  29. width: 100%;
  30. height: 9px;
  31. background: linear-gradient(270deg, rgba(119, 255, 239, 0.59) 0%, #42CDFF 100%);
  32. opacity: 0.5;
  33. z-index: -1;
  34. }
  35. }
  36. }
  37. .scoreResult {
  38. display: flex;
  39. align-items: center;
  40. min-height: 76px;
  41. padding: 15px 32px 0;
  42. font-size: 14px;
  43. color: #333333;
  44. line-height: 20px;
  45. }
  46. .finishFail {
  47. .finishContainer {
  48. background: url('../../images/exam-fail-bg.png') no-repeat top center;
  49. background-size: contain;
  50. }
  51. }
  52. .finishPass {
  53. .finishContainer {
  54. background: url('../../images/exam-pass-bg.png') no-repeat top center;
  55. background-size: contain;
  56. }
  57. }
  58. .finishGood {
  59. .finishContainer {
  60. background: url('../../images/exam-good-bg.png') no-repeat top center;
  61. background-size: contain;
  62. }
  63. }
  64. .finishCountdown {
  65. .finishContainer {
  66. background: url('../../images/exam-countdown-bg.png') no-repeat top center;
  67. background-size: contain;
  68. }
  69. }
  70. .finishClose {
  71. display: inline-block;
  72. width: 24px;
  73. height: 24px;
  74. position: absolute;
  75. right: 1px;
  76. top: 50px;
  77. background: url('../../images/icon-popup-close.png') no-repeat center;
  78. background-size: contain;
  79. }
  80. .finishBtnGroup {
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. position: absolute;
  85. bottom: 0px;
  86. left: 0;
  87. padding: 0 24px 21px;
  88. width: 100%;
  89. .finishLeft,
  90. .finishRight {
  91. text-align: center;
  92. height: 39px;
  93. line-height: 38px;
  94. min-width: 111px;
  95. width: 111px;
  96. font-size: 13px;
  97. font-family: STYuanti-SC-Bold, STYuanti-SC;
  98. font-weight: bold;
  99. }
  100. .finishLeft {
  101. color: #587C98;
  102. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  103. background: url('../../images/exam-left-btn.png') no-repeat center center;
  104. background-size: contain;
  105. margin-right: 16px;
  106. }
  107. .finishRight {
  108. color: #FFFFFF;
  109. text-shadow: 0px 1px 1px #218CD7;
  110. background: url('../../images/exam-right-btn.png') no-repeat center center;
  111. background-size: contain;
  112. }
  113. }