testing.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* pages/testpaper/testpaper.wxss */
  2. page{overflow: auto;}
  3. .testpaper{
  4. padding: 0 56rpx;
  5. }
  6. .testpaper_cont{
  7. padding: 56rpx 0;
  8. }
  9. .is_navbar{
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. z-index: 10;
  15. }
  16. .list_name{
  17. font-size:40rpx;
  18. font-weight:bold;
  19. color: #00C7C6;
  20. line-height:40rpx;
  21. margin-top: 56rpx;
  22. }
  23. .testpaper_list:first-child .list_name{margin-top: 0;}
  24. .list_desc{
  25. font-size:28rpx;
  26. font-weight:400;
  27. color: #8C8C8C;
  28. line-height:44rpx;
  29. margin-top: 16rpx;
  30. }
  31. /* 问题内容item */
  32. .list_content{margin-top: 32rpx;}
  33. .rightanswer{
  34. color: #00C7C6;
  35. margin-top: 40rpx;
  36. }
  37. .item_inp, .item_sel{
  38. border-radius: 44rpx;
  39. padding: 18rpx 30rpx;
  40. margin-top: 32rpx;
  41. border: 2rpx solid #999;
  42. color: #999;
  43. }
  44. .item_selIs{
  45. color: #fff;
  46. background-color: #00C7C6;
  47. border: 2rpx solid #00C7C6;
  48. }
  49. .haveSel{
  50. color: #fff;
  51. background-color:#aaa;
  52. border: 2rpx solid #aaa;
  53. }
  54. .isright{
  55. color: #fff;
  56. background-color: #00C7C6;
  57. border: 2rpx solid #00C7C6;
  58. }
  59. .item_inp{
  60. background-color: #F3F3F3;
  61. display: flex;
  62. align-items: center;
  63. position: relative;
  64. }
  65. .input_area{
  66. width: 100%;
  67. height: 298rpx;
  68. }
  69. .area_tit{
  70. position: absolute;
  71. right: 40rpx;
  72. bottom: 26rpx;
  73. color: #8C8C8C;
  74. }
  75. .item_text{
  76. flex: 0 0 142rpx;
  77. }
  78. .input_inp{
  79. flex: 1 0 auto;
  80. height: 72rpx;
  81. line-height: 72rpx;
  82. }
  83. .select_img{
  84. width:24rpx;
  85. height:24rpx;
  86. margin-right: 22rpx;
  87. display: inline-block;
  88. }
  89. .isBtn{
  90. height:82rpx;
  91. line-height: 82rpx;
  92. background:linear-gradient(90deg,rgba(0,199,198,0.97) 0%,rgba(0,210,210,1) 100%);
  93. box-shadow:0px 14rpx 44rpx 2px rgba(0,199,198,0.2);
  94. border-radius:40rpx;
  95. margin-top: 138rpx;
  96. font-size:36rpx;
  97. color: #ffffff;
  98. font-weight:500;
  99. }