public.wxss 940 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. button::after{
  2. border: none;
  3. }
  4. button{
  5. background-color: #fff;
  6. padding: 0;
  7. border-radius: 0;
  8. text-align: inherit;
  9. }
  10. .search-view{
  11. display: flex;
  12. width: 550rpx;
  13. height: 70rpx;
  14. background: #F6F7F8;
  15. border-radius: 35px;
  16. }
  17. .search-view>image{
  18. height: 30rpx;
  19. width: 30rpx;
  20. margin: 20rpx;
  21. }
  22. .search-view>input{
  23. margin: 14rpx 0;
  24. width: 450rpx;
  25. height: 42rpx;
  26. line-height: 42rpx;
  27. font-size: 30rpx;
  28. }
  29. .line{
  30. width: 100%;
  31. height: 1rpx;
  32. background-color: #eeeeee;
  33. }
  34. .question{
  35. width: 750rpx;
  36. height: 100rpx;
  37. display: flex;
  38. }
  39. .question>text{
  40. width: 640rpx;
  41. font-family: PingFangSC-Regular;
  42. font-size: 32rpx;
  43. color: #333333;
  44. margin: auto 8rpx auto 30rpx;
  45. line-height: 100rpx;
  46. white-space: nowrap;
  47. text-overflow: ellipsis;
  48. overflow: hidden;
  49. }
  50. .question>image{
  51. width: 16rpx;
  52. /* height: 26rpx; */
  53. margin: auto 30rpx auto 26rpx;
  54. }