answer.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /* pages/contest/answer/answer.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .bg {
  6. width: 100%;
  7. position: absolute;
  8. z-index: 0;
  9. background: transparent;
  10. }
  11. .top{
  12. position: relative;
  13. z-index: 9;
  14. padding-top: 176rpx;
  15. width: 100%;
  16. }
  17. .top-title {
  18. width: 100%;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. font-weight: 400;
  23. color: #FFFFFF;
  24. font-size: 32rpx;
  25. }
  26. .top-title .time {
  27. height: 66rpx;
  28. background: rgba(60, 70, 209,.5);
  29. padding: 0 10rpx;
  30. border-radius: 10rpx;
  31. margin: 10rpx;
  32. font-weight: 500;
  33. color: #FFFFFF;
  34. font-size: 48rpx;
  35. }
  36. .top-nav {
  37. margin-top: 15rpx;
  38. display: flex;
  39. font-weight: 400;
  40. justify-content: center;
  41. color: rgba(255, 255, 255,.7);
  42. align-items: center;
  43. font-size: 24rpx;
  44. }
  45. .top-nav > view {
  46. margin: 0 10rpx;
  47. }
  48. .top-nav .active {
  49. margin: 0!important;
  50. font-size: 28rpx;
  51. font-weight: 500;
  52. color: #59598D;
  53. background-repeat:no-repeat;
  54. background-size:100% 100%;
  55. -moz-background-size:100% 100%;
  56. height: 92rpx;
  57. width: 188rpx;
  58. display: flex;
  59. justify-content: center;
  60. align-items: center;
  61. }
  62. .content {
  63. position: relative;
  64. z-index: 9;
  65. width: 100%;
  66. }
  67. .content-title {
  68. margin-top: 70rpx;
  69. width: 100%;
  70. font-size: 40rpx;
  71. font-weight: 500;
  72. color: #59598D;
  73. text-align: center;
  74. }
  75. .problem {
  76. display: flex;
  77. align-items: center;
  78. margin-top: 42rpx;
  79. }
  80. .problem-num {
  81. position: relative;
  82. width: 40rpx;
  83. margin: 0 24rpx 0 48rpx;
  84. }
  85. .problem-icon {
  86. width: 40rpx;
  87. position: absolute;
  88. z-index: 1;
  89. }
  90. .problem-index {
  91. width: 40rpx;
  92. font-size: 28rpx;
  93. font-weight: 600;
  94. color: #FFFFFF;
  95. position: relative;
  96. z-index: 9;
  97. line-height: 42rpx;
  98. text-align: center;
  99. }
  100. .problem-text {
  101. font-size: 28rpx;
  102. font-weight: 500;
  103. color: #59598D;
  104. }
  105. .problem-key-list {
  106. margin-top: 24rpx;
  107. }
  108. .problem-key-list > view{
  109. width: 516rpx;
  110. height: 68rpx;
  111. background: #FFFFFF;
  112. border-radius: 34rpx;
  113. border: 2rpx solid #EFEFFF;
  114. margin: 0 146rpx 20rpx 88rpx;
  115. font-size: 28rpx;
  116. font-weight: 400;
  117. color: #353333;
  118. line-height: 68rpx;
  119. padding: 0 38rpx;
  120. }
  121. .problem-key-list .active {
  122. background: #5679F0;
  123. color: rgb(241, 241, 241);
  124. }
  125. .arrow-group {
  126. display: flex;
  127. justify-content: center;
  128. padding-bottom: 34rpx;
  129. margin-top: 30rpx;
  130. }
  131. .arrow-group > image {
  132. width: 160rpx;
  133. margin: 0 18rpx;
  134. }