index.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .search-page {
  2. box-sizing: border-box;
  3. width: 100vw;
  4. height: 100vh;
  5. padding: 0 30rpx;
  6. }
  7. .search-page .t-class__input-container {
  8. height: 64rpx !important;
  9. border-radius: 32rpx !important;
  10. }
  11. .search-page .t-search__input {
  12. font-size: 28rpx !important;
  13. color: #333 !important;
  14. }
  15. .search-page .search-wrap {
  16. margin-top: 44rpx;
  17. }
  18. .search-page .history-wrap {
  19. margin-bottom: 20px;
  20. }
  21. .search-page .search-header {
  22. display: flex;
  23. flex-flow: row nowrap;
  24. justify-content: space-between;
  25. align-items: center;
  26. }
  27. .search-page .search-title {
  28. font-size: 30rpx;
  29. font-family: PingFangSC-Semibold, PingFang SC;
  30. font-weight: 600;
  31. color: rgba(51, 51, 51, 1);
  32. line-height: 42rpx;
  33. }
  34. .search-page .search-clear {
  35. font-size: 24rpx;
  36. font-family: PingFang SC;
  37. line-height: 32rpx;
  38. color: #999999;
  39. font-weight: normal;
  40. }
  41. .search-page .search-content {
  42. overflow: hidden;
  43. display: flex;
  44. flex-flow: row wrap;
  45. justify-content: flex-start;
  46. align-items: flex-start;
  47. margin-top: 24rpx;
  48. }
  49. .search-page .search-item {
  50. color: #333333;
  51. font-size: 24rpx;
  52. line-height: 32rpx;
  53. font-weight: normal;
  54. margin-right: 24rpx;
  55. margin-bottom: 24rpx;
  56. background: #f5f5f5;
  57. border-radius: 38rpx;
  58. padding: 12rpx 24rpx;
  59. }
  60. .search-page .hover-history-item {
  61. position: relative;
  62. top: 3rpx;
  63. left: 3rpx;
  64. box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1) inset;
  65. }
  66. .add-notes__confirm {
  67. color: #fa4126 !important;
  68. }