C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 line
1.1 KiB

  1. /* pages/questionnaire/questionnaireLsit/questionnaireLsit.wxss */
  2. page {
  3. overflow-y: scroll !important;
  4. }
  5. .questionLsi {
  6. background-color: #fff;
  7. border-radius: 6rpx;
  8. margin: 20rpx auto;
  9. overflow: hidden;
  10. width: 96%;
  11. position: relative;
  12. height: 520rpx;
  13. }
  14. .img {
  15. width: 96%;
  16. margin: 20rpx 16rpx;
  17. /* background-color: aqua; */
  18. height: 300rpx;
  19. }
  20. .title {
  21. width: 96%;
  22. font-size: 36rpx;
  23. font-weight: 700;
  24. color: #999;
  25. margin: auto;
  26. }
  27. .conten {
  28. width: 96%;
  29. padding: 20rpx 0;
  30. color: #999;
  31. font-size: 32rpx;
  32. margin: 0 auto 20rpx auto;
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. height: 70rpx;
  36. display: -webkit-box;
  37. -webkit-box-orient: vertical;
  38. -webkit-line-clamp: 2;
  39. }
  40. .accomplish {
  41. position: absolute;
  42. left: 0;
  43. top: 0;
  44. width: 100%;
  45. height: 100%;
  46. background-color: rgb(0, 0, 0, 0.2);
  47. text-align: center;
  48. line-height: 480rpx;
  49. color: #fff;
  50. font-size: 36rpx;
  51. font-weight: 700;
  52. }
  53. .noData {
  54. width: 100%;
  55. z-index: 1000;
  56. position: fixed;
  57. top: 0;
  58. left: 0;
  59. text-align: center;
  60. line-height: 100vh;
  61. height: 100vh;
  62. background-color: rgb(0, 0, 0, 0.2);
  63. color: #fff;
  64. }