testpaper.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. .item_inp, .item_sel{
  34. border-radius: 10rpx;
  35. padding: 22rpx 30rpx;
  36. margin-top: 32rpx;
  37. }
  38. .item_selIs{
  39. background-color: #00C7C6;
  40. }
  41. .item_inp{
  42. background-color: #F3F3F3;
  43. display: flex;
  44. align-items: center;
  45. position: relative;
  46. }
  47. .input_area{
  48. width: 100%;
  49. height: 298rpx;
  50. }
  51. .area_tit{
  52. position: absolute;
  53. right: 40rpx;
  54. bottom: 26rpx;
  55. color: #8C8C8C;
  56. }
  57. .item_text{
  58. flex: 0 0 142rpx;
  59. }
  60. .input_inp{
  61. flex: 1 0 auto;
  62. height: 72rpx;
  63. line-height: 72rpx;
  64. }
  65. .select_img{
  66. width:24rpx;
  67. height:24rpx;
  68. margin-right: 22rpx;
  69. display: inline-block;
  70. }
  71. .isBtn{
  72. height:82rpx;
  73. line-height: 82rpx;
  74. background:linear-gradient(90deg,rgba(0,199,198,0.97) 0%,rgba(0,210,210,1) 100%);
  75. box-shadow:0px 14rpx 44rpx 2px rgba(0,199,198,0.2);
  76. border-radius:40rpx;
  77. margin-top: 138rpx;
  78. font-size:36rpx;
  79. color: #ffffff;
  80. font-weight:500;
  81. }