testresult.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. page {
  2. /* background-color: #f1f0f0f0; */
  3. background-color:#ffffff;
  4. }
  5. .load {
  6. width: 100%;
  7. height: 2400rpx;
  8. position: absolute;
  9. left: 0;
  10. top: 0;
  11. z-index: 9999;
  12. background-color: #ffffff;
  13. text-align: center;
  14. line-height: 1300rpx;
  15. }
  16. .loadimg {
  17. width: 200rpx;
  18. height: 200rpx;
  19. }
  20. .imghead{
  21. width: 100%;
  22. height: 2145rpx;
  23. }
  24. .boxqrcode {
  25. width: 100%;
  26. height: 166rpx;
  27. position:absolute;
  28. left:0;
  29. top:1134rpx;
  30. display: flex;
  31. flex-direction:row;
  32. align-items:center;
  33. }
  34. .boxqrcoce {
  35. flex: 2;
  36. }
  37. .boxagain {
  38. flex: 4;
  39. }
  40. .boxsurprised {
  41. top:1310rpx;
  42. position:absolute;
  43. width: 86%;
  44. margin-left: 7%;
  45. margin-right: 7%;
  46. }
  47. .imgsurprised {
  48. width: 100%;
  49. height: 110rpx;
  50. }
  51. .imgqrcode {
  52. width: 140rpx;
  53. height: 140rpx;
  54. margin-left:70rpx;
  55. }
  56. .imgagain {
  57. width: 453rpx;
  58. height: 110rpx;
  59. margin-top:40rpx;
  60. }
  61. .boxscore {
  62. display: flex;
  63. flex-direction:row;
  64. top:90rpx;
  65. width: 39%;
  66. height: 100rpx;
  67. margin-right: 5%;
  68. margin-left:50%;
  69. position:absolute;
  70. justify-content:flex-end;
  71. }
  72. .score {
  73. color: #F50000;
  74. font-weight: 900;
  75. font-size: 92rpx;
  76. transform:rotate(14deg);
  77. }
  78. .scoredesc {
  79. color: #F50000;
  80. font-weight: 500;
  81. font-size: 46rpx;
  82. line-height:188rpx;
  83. transform:rotate(10deg);
  84. margin-left:5rpx;
  85. }
  86. .tips {
  87. width: 100%;
  88. height: 58rpx;
  89. position: absolute;
  90. background-color:rgba(10, 10, 10, 0.5);
  91. left:0;
  92. top: 0;
  93. color: #E6E6FA;
  94. font-weight: 400;
  95. font-size: 30rpx;
  96. text-align: center;
  97. line-height: 58rpx;
  98. }
  99. @-webkit-keyframes bounce-down {
  100. 25% {-webkit-transform: translateY(-10px);}
  101. 50%, 100% {-webkit-transform: translateY(0);}
  102. 75% {-webkit-transform: translateY(10px);}
  103. }
  104. @keyframes bounce-down {
  105. 25% {transform: translateY(-10px);}
  106. 50%, 100% {transform: translateY(0);}
  107. 75% {transform: translateY(10px);}
  108. }
  109. .animate-bounce-down{
  110. width: 100%;
  111. height: 110rpx;
  112. -webkit-animation: bounce-down 1.2s linear infinite;
  113. animation: bounce-down 1.2s linear infinite;
  114. }
  115. @-webkit-keyframes bounce-up {
  116. 25% {-webkit-transform: translateY(10px);}
  117. 50%, 100% {-webkit-transform: translateY(0);}
  118. 75% {-webkit-transform: translateY(-10px);}
  119. }
  120. @keyframes bounce-up {
  121. 25% {transform: translateY(10px);}
  122. 50%, 100% {transform: translateY(0);}
  123. 75% {transform: translateY(-10px);}
  124. }
  125. .animate-bounce-up{
  126. background:#ddd;
  127. width: 100px;
  128. height: 100px;
  129. margin:100px auto;
  130. -webkit-animation: bounce-up 1.4s linear infinite;
  131. animation: bounce-up 1.4s linear infinite;
  132. }