抖音c端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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