subject.wxss 947 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/subject/subject.wxss */
  2. .top{
  3. padding: 12px;
  4. }
  5. .top text{
  6. width:60px;
  7. height:28px;
  8. border-radius:16px;
  9. border:1px solid rgba(153,153,153,1);
  10. text-align: center;
  11. line-height: 28px;
  12. float: right;
  13. position: relative;
  14. top: -3px;
  15. }
  16. .count{
  17. position: absolute;
  18. top: 55px;
  19. right: 12px;
  20. color: #358BFF;
  21. text-align: right;
  22. }
  23. .content{
  24. padding: 0 12px;
  25. transition: all .3s linear;
  26. }
  27. .num{
  28. margin: 12px 0;
  29. }
  30. .num image{
  31. width: 38px;
  32. position: relative;
  33. top: 2px;
  34. }
  35. .ques{
  36. margin-bottom: 120rpx;
  37. }
  38. .ans view{
  39. margin-bottom: 24px;
  40. padding-left: 10px;
  41. }
  42. .btn{
  43. position: fixed;
  44. width: 100%;
  45. left: 0;
  46. z-index: 9;
  47. bottom: 80rpx;
  48. display: flex;
  49. justify-content: space-between;
  50. padding: 0 24px;
  51. }
  52. .btn text{
  53. width:100px;
  54. height:40px;
  55. background:rgba(212,230,255,1);
  56. border-radius:31px;
  57. display: block;
  58. text-align: center;
  59. line-height: 40px;
  60. }
  61. .btn .hide{
  62. visibility: hidden;
  63. }