Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. :host {
  2. position: relative;
  3. display: block;
  4. min-height: 100vh;
  5. background: #f4eee4;
  6. color: #2f2720;
  7. }
  8. .search-page {
  9. display: grid;
  10. grid-template-columns: 172px minmax(0, 1fr);
  11. gap: 20px;
  12. padding: 0 38px 36px 0;
  13. background: #f4eee4;
  14. }
  15. .search-main {
  16. min-width: 0;
  17. box-sizing: border-box;
  18. }
  19. .search-panel {
  20. min-height: 760px;
  21. padding: 34px 42px 40px;
  22. background: #ffffff;
  23. border: 2px solid #d8caba;
  24. border-radius: 64px;
  25. box-sizing: border-box;
  26. }
  27. .page-title-row {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: flex-start;
  31. gap: 24px;
  32. margin-bottom: 22px;
  33. }
  34. .page-title-row h1 {
  35. margin: 0;
  36. color: #2f2720;
  37. font-size: 34px;
  38. line-height: 1.1;
  39. font-weight: 800;
  40. }
  41. .top-action-list {
  42. display: flex;
  43. gap: 8px;
  44. }
  45. .top-button {
  46. width: 92px;
  47. height: 36px;
  48. border: 2px solid #d8caba;
  49. border-radius: 6px;
  50. background: #ffffff;
  51. color: #2f2720;
  52. font-size: 15px;
  53. font-weight: 800;
  54. text-decoration: none;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. box-sizing: border-box;
  59. cursor: pointer;
  60. }
  61. .top-button:hover {
  62. background: #f6efe6;
  63. }
  64. .search-condition-area {
  65. margin-top: 0;
  66. }
  67. .search-input-row {
  68. display: grid;
  69. grid-template-columns: minmax(0, 1fr) 104px 104px;
  70. gap: 12px;
  71. align-items: center;
  72. }
  73. .search-input-box {
  74. height: 46px;
  75. border: 2px solid #d8caba;
  76. border-radius: 6px;
  77. background: #fffdf9;
  78. display: flex;
  79. align-items: center;
  80. padding: 0 16px;
  81. box-sizing: border-box;
  82. }
  83. .search-icon {
  84. width: 30px;
  85. color: #7b6b5c;
  86. font-size: 24px;
  87. font-weight: 800;
  88. }
  89. .search-input-box input {
  90. width: 100%;
  91. border: none;
  92. outline: none;
  93. background: transparent;
  94. color: #2f2720;
  95. font-size: 16px;
  96. font-weight: 700;
  97. font-family: inherit;
  98. }
  99. .search-input-box input::placeholder {
  100. color: #7b6b5c;
  101. font-weight: 600;
  102. }
  103. .search-button,
  104. .filter-button-main,
  105. .back-list-button {
  106. height: 46px;
  107. border-radius: 6px;
  108. font-size: 16px;
  109. font-weight: 800;
  110. cursor: pointer;
  111. box-sizing: border-box;
  112. }
  113. .search-button {
  114. border: 2px solid #8a6543;
  115. background: #8a6543;
  116. color: #ffffff;
  117. }
  118. .search-button:hover {
  119. background: #765639;
  120. }
  121. .filter-button-main,
  122. .back-list-button {
  123. border: 2px solid #d8caba;
  124. background: #ffffff;
  125. color: #2f2720;
  126. text-decoration: none;
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. }
  131. .filter-button-main:hover,
  132. .back-list-button:hover {
  133. background: #f6efe6;
  134. }
  135. .search-filter-list {
  136. display: flex;
  137. flex-wrap: wrap;
  138. gap: 8px;
  139. margin-top: 12px;
  140. }
  141. .search-filter-button {
  142. min-width: 120px;
  143. height: 34px;
  144. padding: 0 14px;
  145. border: 2px solid #d8caba;
  146. border-radius: 6px;
  147. background: #f1e7d8;
  148. color: #2f2720;
  149. font-size: 14px;
  150. font-weight: 700;
  151. cursor: pointer;
  152. box-sizing: border-box;
  153. }
  154. .search-filter-button:hover {
  155. background: #eadfce;
  156. }
  157. .search-filter-button.active {
  158. background: #8a6543;
  159. border-color: #8a6543;
  160. color: #ffffff;
  161. }
  162. .search-result-panel {
  163. margin-top: 16px;
  164. padding: 0;
  165. border: 2px solid #d8caba;
  166. border-radius: 8px;
  167. background: #fffdf9;
  168. box-sizing: border-box;
  169. overflow: hidden;
  170. }
  171. .search-result-panel h2 {
  172. min-height: 40px;
  173. margin: 0;
  174. padding: 0 14px;
  175. background: #efe4d6;
  176. color: #2f2720;
  177. font-size: 22px;
  178. font-weight: 800;
  179. display: flex;
  180. align-items: center;
  181. }
  182. .result-group {
  183. margin-top: 0;
  184. padding: 14px;
  185. border-top: 1px solid #d8caba;
  186. }
  187. .result-group h3 {
  188. margin: 0 0 6px;
  189. color: #6f6257;
  190. font-size: 17px;
  191. font-weight: 800;
  192. }
  193. .result-row {
  194. min-height: 52px;
  195. margin-top: 6px;
  196. padding: 0 12px;
  197. border: 2px solid #d8caba;
  198. border-radius: 8px;
  199. background: #ffffff;
  200. color: #2f2720;
  201. text-decoration: none;
  202. display: grid;
  203. align-items: center;
  204. column-gap: 18px;
  205. box-sizing: border-box;
  206. }
  207. .result-row:hover {
  208. background: #f6efe6;
  209. }
  210. .danka-result-row {
  211. grid-template-columns: 1.1fr 1.4fr 1.8fr 80px;
  212. }
  213. .family-result-row {
  214. grid-template-columns: 1.1fr 1.6fr 1.2fr 1.6fr;
  215. }
  216. .kakocho-result-row {
  217. grid-template-columns: 1.2fr 1.4fr 1.4fr 1.2fr;
  218. }
  219. .result-main-text {
  220. font-weight: 800;
  221. }
  222. .result-link-text {
  223. color: #3f6f45;
  224. font-weight: 800;
  225. }
  226. .empty-result {
  227. min-height: 72px;
  228. padding: 22px;
  229. border: 2px solid #d8caba;
  230. border-radius: 10px;
  231. background: #ffffff;
  232. color: #7b6b5c;
  233. font-size: 16px;
  234. font-weight: 700;
  235. box-sizing: border-box;
  236. }
  237. .inside-note {
  238. margin: 16px 0 0;
  239. color: #7b6b5c;
  240. font-size: 14px;
  241. }
  242. .bottom-note {
  243. width: 700px;
  244. margin: 18px 0 22px 36px;
  245. padding: 4px 12px;
  246. border: 2px solid #d8caba;
  247. border-radius: 4px;
  248. background: #eadfce;
  249. color: #7b6b5c;
  250. font-size: 14px;
  251. box-sizing: border-box;
  252. }
  253. @media (max-width: 1100px) {
  254. .search-page {
  255. grid-template-columns: 1fr;
  256. padding: 0 24px 32px;
  257. }
  258. .search-panel {
  259. min-height: auto;
  260. border-radius: 28px;
  261. padding: 28px 24px 32px;
  262. }
  263. .search-input-row {
  264. grid-template-columns: 1fr 104px 104px;
  265. }
  266. .filter-button-main,
  267. .back-list-button {
  268. width: 100%;
  269. }
  270. .result-row {
  271. overflow-x: auto;
  272. }
  273. .danka-result-row,
  274. .family-result-row,
  275. .kakocho-result-row {
  276. min-width: 860px;
  277. }
  278. }
  279. @media (max-width: 800px) {
  280. .page-title-row {
  281. flex-direction: column;
  282. }
  283. .page-title-row h1 {
  284. font-size: 26px;
  285. }
  286. .search-input-row {
  287. grid-template-columns: 1fr;
  288. gap: 10px;
  289. }
  290. .search-filter-button {
  291. flex: 1;
  292. min-width: 100px;
  293. }
  294. .bottom-note {
  295. width: auto;
  296. margin: 10px 20px 22px;
  297. }
  298. }