testResultB.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* subpages/textStep/textStep.wxss */
  2. page {
  3. background: linear-gradient(180deg, #D6E8FE 0%, #FFFFFF 100%);
  4. }
  5. .nav-bar {
  6. --nav-bar-icon-color: black !important;
  7. width: 100vw;
  8. background-color: transparent !important;
  9. background: transparent !important;
  10. position: sticky;
  11. top: 0;
  12. left: 0;
  13. }
  14. .w-card {
  15. display: flex;
  16. flex-direction: column;
  17. margin-top: 20rpx;
  18. margin-left: auto;
  19. margin-right: auto;
  20. width: 710rpx;
  21. padding-bottom: 30rpx;
  22. box-shadow: 0rpx 8rpx 20rpx 0rpx #D3E0F4;
  23. border-radius: 24rpx;
  24. background: linear-gradient(90deg, #F8FBFF 4%, #FFFFFF 100%);
  25. }
  26. .card-tag {
  27. width: fit-content;
  28. padding: 12rpx 26rpx;
  29. background: linear-gradient(90deg, #1E8BFF 80%, #53A9FF 100%);
  30. font-weight: 400;
  31. font-size: 28rpx;
  32. color: #FFFFFF;
  33. border-radius: 24rpx 0rpx 24rpx 0rpx;
  34. }
  35. .title-view {
  36. margin: 20rpx auto;
  37. display: flex;
  38. flex-direction: row;
  39. align-items: center;
  40. justify-content: center;
  41. }
  42. .title-view image {
  43. display: block;
  44. width: 38rpx;
  45. height: 22rpx;
  46. }
  47. .title-view text {
  48. margin: 0 20rpx;
  49. font-size: 48rpx;
  50. color: #1E8BFF;
  51. font-weight: 600;
  52. }
  53. .desc {
  54. padding: 16rpx 32rpx;
  55. width: fit-content;
  56. display: block;
  57. margin: 0 auto;
  58. background: #F7F8FD;
  59. border-radius: 12rpx;
  60. font-weight: 400;
  61. font-size: 24rpx;
  62. color: #5C748D;
  63. }
  64. .base-title-view {
  65. margin-left: auto;
  66. margin-right: auto;
  67. margin-top: 30rpx;
  68. width: calc(100% - 20rpx);
  69. display: flex;
  70. flex-direction: row;
  71. align-items: center;
  72. }
  73. .base-title-line {
  74. width: 6rpx;
  75. margin-right: 16rpx;
  76. margin-left: 20rpx;
  77. height: 28rpx;
  78. background: #1E8BFF;
  79. border-radius: 4rpx;
  80. }
  81. .base-title {
  82. flex: 1;
  83. font-weight: 400;
  84. font-size: 32rpx;
  85. color: #333333;
  86. font-weight: 600;
  87. }
  88. .resultAnalysis {
  89. font-size: 28rpx;
  90. color: #666666;
  91. margin: 30rpx 30rpx 30rpx;
  92. }
  93. .ad-box {
  94. margin: 20rpx auto;
  95. width: 710rpx;
  96. height: 104rpx;
  97. position: relative;
  98. }
  99. .ad-box image {
  100. display: block;
  101. width: 710rpx;
  102. height: 108rpx;
  103. border-radius: 24rpx 24rpx 24rpx 24rpx;
  104. box-shadow: 0rpx 8rpx 20rpx 0rpx #E2ECFA;
  105. }
  106. .ad-box button {
  107. position: absolute;
  108. top: 0;
  109. left: 0;
  110. bottom: 0;
  111. right: 0;
  112. width: 100%;
  113. height: 100%;
  114. padding: 0;
  115. opacity: 0;
  116. margin: 0;
  117. }
  118. .bottom-btn-view {
  119. position: fixed;
  120. bottom: 0;
  121. left: 0;
  122. right: 0;
  123. width: 100%;
  124. height: 180rpx;
  125. background: #FFFFFF;
  126. display: flex;
  127. flex-direction: column;
  128. align-items: center;
  129. justify-content: flex-start;
  130. }
  131. .res-test-btn-view {
  132. margin-top: 16rpx;
  133. width: 690rpx;
  134. display: flex;
  135. flex-direction: row;
  136. align-items: center;
  137. justify-content: space-between;
  138. }
  139. .restart-test-btn {
  140. width: 336rpx;
  141. height: 84rpx;
  142. background: linear-gradient(135deg, #53A9FF 0%, #1E8BFF 100%);
  143. border-radius: 84rpx;
  144. text-align: center;
  145. line-height: 84rpx;
  146. font-size: 32rpx;
  147. color: #FFFFFF;
  148. font-weight: bold;
  149. }
  150. .restart-test-btn:active {
  151. opacity: 0.7;
  152. }
  153. .view-res-btn {
  154. width: 336rpx;
  155. height: 84rpx;
  156. background: #EFF7FF;
  157. text-align: center;
  158. border-radius: 84rpx;
  159. line-height: 84rpx;
  160. font-size: 32rpx;
  161. color: #1E8BFF;
  162. font-weight: bold;
  163. }
  164. .view-res-btn:active {
  165. opacity: 0.7;
  166. }