chat.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .directQuesBox{
  2. padding-top: 32rpx;
  3. padding-left: 40rpx;
  4. // padding-right: 40rpx;
  5. background: #fff;
  6. height: calc(100vh - 360rpx);
  7. .quesList{
  8. display: flex;
  9. flex-wrap: wrap;
  10. .item{
  11. padding: 24rpx;
  12. width: 196rpx;
  13. height: 116rpx;
  14. background: #F7F7F7;
  15. border-radius: 4rpx;
  16. margin-right: 40rpx;
  17. margin-bottom: 40rpx;
  18. .inner{
  19. height: 68rpx;
  20. font-size: 26rpx;
  21. font-family: PingFang-SC-Medium, PingFang-SC;
  22. font-weight: 500;
  23. color: #666666;
  24. line-height: 34rpx;
  25. overflow: hidden; /* 隐藏溢出的文字 */
  26. text-overflow: ellipsis; /* 显示省略号 */
  27. display: -webkit-box; /* 将元素作为弹性伸缩盒子进行显示 */
  28. -webkit-line-clamp: 2; /* 设置最多显示的行数 */
  29. -webkit-box-orient: vertical;
  30. }
  31. }
  32. }
  33. .freshBtnBox{
  34. margin-top: 8rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. .con{
  39. width: 180rpx;
  40. height: 60rpx;
  41. background: #EDF5FF;
  42. border-radius: 8rpx;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. image{
  47. width: 28rpx;
  48. height: 28rpx;
  49. margin-right: 8rpx;
  50. }
  51. text{
  52. font-size: 26rpx;
  53. font-family: PingFang-SC-Medium, PingFang-SC;
  54. font-weight: 500;
  55. color: #509AFC;
  56. }
  57. }
  58. }
  59. }
  60. @keyframes rotate {
  61. 0%{
  62. transform: rotate(0deg);
  63. }
  64. 100%{
  65. transform: rotate(360deg);
  66. }
  67. }
  68. .go{
  69. animation: rotate 1s;
  70. }
  71. .bottomTopMenuList{
  72. padding: 36rpx 32rpx;
  73. padding-bottom: 16rpx;
  74. .item{
  75. width: 140rpx;
  76. height: 60rpx;
  77. background: #FFFFFF;
  78. border-radius: 12rpx;
  79. // opacity: 0.61;
  80. border: 2rpx solid #D9DFDF;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. margin-right: 20rpx;
  85. font-size: 24rpx;
  86. font-family: PingFang-SC-Medium, PingFang-SC;
  87. font-weight: 500;
  88. color: #333333;
  89. // color: red;
  90. }
  91. }
  92. .botBtnBg{
  93. background: #ECF3FB!important;
  94. // padding-bottom: 30rpx;
  95. }
  96. .botBtnBox{
  97. padding-left: 32rpx;
  98. padding-right: 32rpx;
  99. padding-bottom: 38rpx;
  100. }
  101. .inputBgColor{
  102. background: #fff;
  103. padding-left: 16rpx;
  104. padding-right: 16rpx;
  105. }
  106. .addclearBox{
  107. position: relative;
  108. width: 100%;
  109. .clearImg{
  110. position: absolute;
  111. width: 40rpx;
  112. height: 40rpx;
  113. right: 0;
  114. top: 50%;
  115. transform: translateY(-50%);
  116. }
  117. }
  118. .hotQuesFlag{
  119. font-size: 28rpx;
  120. // color: $tc;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. flex-direction: column;
  125. position: fixed;
  126. background-color: white;
  127. width: 100%;
  128. z-index: 999;
  129. }