C端小程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

135 satır
1.9 KiB

  1. /* pages/questionnaire/questionnaire.wxss */
  2. page {
  3. overflow-y: scroll !important;
  4. }
  5. .Box {
  6. background-color: rgba(242, 242, 242, 1);
  7. overflow: hidden;
  8. }
  9. .notice {
  10. font-size: 35rpx;
  11. font-weight: 600;
  12. text-align: center;
  13. margin-top: 50rpx;
  14. }
  15. .login {
  16. width: 80%;
  17. margin-top: 50rpx;
  18. }
  19. .imgBox {
  20. width: 96%;
  21. height: 300rpx;
  22. margin: 20rpx 15rpx;
  23. border-radius: 6rpx;
  24. /* background-color: aqua; */
  25. }
  26. .titleBox {
  27. width: 96%;
  28. margin: auto;
  29. }
  30. .title {
  31. font-size: 36rpx;
  32. font-weight: 700;
  33. color: #999;
  34. margin-top: 10rpx;
  35. }
  36. .content {
  37. padding: 20rpx 0;
  38. color: #999;
  39. font-size: 32rpx;
  40. /* overflow: hidden;
  41. text-overflow: ellipsis;
  42. height: 70rpx;
  43. display: -webkit-box;
  44. -webkit-box-orient: vertical;
  45. -webkit-line-clamp: 2; */
  46. }
  47. .hidBox {
  48. width: 100%;
  49. height: 100%;
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. background-color: rgba(0, 0, 0, 0.2)
  54. }
  55. .contcBox {
  56. width: 80%;
  57. height: 300rpx;
  58. background-color: #fff;
  59. }
  60. .time {
  61. font-size: 32rpx;
  62. padding: 10rpx 0;
  63. color: #999;
  64. }
  65. .oneBox {
  66. width: 96%;
  67. margin: 20rpx auto;
  68. background-color: #fff;
  69. border-radius: 6rpx;
  70. padding-bottom: 20rpx;
  71. }
  72. .moreBox {
  73. width: 96%;
  74. margin: 20rpx auto;
  75. background-color: #fff;
  76. border-radius: 6rpx;
  77. padding-bottom: 20rpx;
  78. }
  79. .oneTitle {
  80. font-weight: 700;
  81. padding: 10rpx;
  82. font-size: 36rpx;
  83. margin: 10rpx auto;
  84. }
  85. .item_hie {
  86. text-align: center;
  87. line-height: 68rpx;
  88. margin-top: 10rpx;
  89. }
  90. .item_show {
  91. text-align: center;
  92. line-height: 68rpx;
  93. color: #fff;
  94. background-color: rgba(243, 151, 56, 1);
  95. margin-top: 10rpx;
  96. }
  97. .submit {
  98. width: 600rpx;
  99. height: 80rpx;
  100. background-color: rgba(0, 153, 255, 1);
  101. color: #fff;
  102. text-align: center;
  103. line-height: 80rpx;
  104. border-radius: 6rpx;
  105. margin: 20rpx auto;
  106. }
  107. .invalid {
  108. width: 600rpx;
  109. height: 80rpx;
  110. background-color: rgba(0, 0, 0, 0.2);
  111. color: #fff;
  112. text-align: center;
  113. line-height: 80rpx;
  114. border-radius: 6rpx;
  115. margin: 20rpx auto;
  116. }