index.module.less 2.6 KB

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