index.module.less 2.6 KB

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