style.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. /* общие стили */
  2. @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
  3. *{
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. font-family: 'Open Sans', sans-serif;
  8. }
  9. .container {
  10. margin-left: auto;
  11. margin-right: auto;
  12. width: 1440px;
  13. }
  14. /* шапка */
  15. header {
  16. z-index: 1;
  17. position: fixed;
  18. left: 0;
  19. top: 0;
  20. height: 60px;
  21. width: 100%;
  22. padding-top: 10px;
  23. background: #fff;
  24. box-shadow: 0px 4px 25px rgba(205, 205, 205, 0.25);
  25. }
  26. .header__container {
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. margin-left: 40px;
  31. margin-right: 40px;
  32. }
  33. header ul {
  34. /* margin-right: 50px; */
  35. list-style: none;
  36. display: flex;
  37. justify-content: space-between;
  38. }
  39. header ul li {
  40. margin-left: 27px;
  41. }
  42. header a {
  43. text-decoration: none;
  44. font-size: 14px;
  45. font-weight: 400;
  46. color: #000;
  47. }
  48. header ul .link_active {
  49. margin-left: 0;
  50. padding-top: 2px;
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: space-between;
  54. }
  55. header ul .link_active img {
  56. position: relative;
  57. top: 14px;
  58. }
  59. header ul .link_active a{
  60. font-weight: 600;
  61. color: #11344C;
  62. }
  63. /* фильтры заказов */
  64. .filters-container {
  65. width: 1146px;
  66. margin-right: auto;
  67. margin-left: auto;
  68. margin-top: 95px;
  69. display: flex;
  70. justify-content: space-between;
  71. flex-wrap: wrap;
  72. }
  73. .filter p {
  74. font-size: 14px;
  75. }
  76. .filter input,
  77. .filter select {
  78. width: 247px;
  79. height: 36px;
  80. margin-top: 6px;
  81. padding-left: 10px;
  82. border: 1px solid #C4C4C4;
  83. border-radius: 3px;
  84. font-weight: 400;
  85. font-size: 14px;
  86. }
  87. .filter select {
  88. padding-left: 5px;
  89. }
  90. .filter #dateFrom,
  91. .filter #dateTo {
  92. width: 103px;
  93. }
  94. .filter input::placeholder {
  95. color: #C4C4C4;
  96. }
  97. select option{
  98. padding: 10px 10px;
  99. color:#0066FF;
  100. display: block;
  101. }
  102. /* таблица с заказами */
  103. .orders_table {
  104. width: 1360px;
  105. margin-top: 40px;
  106. margin-left: auto;
  107. margin-right: auto;
  108. }
  109. .orders_table-container {
  110. min-height: 69vh;
  111. }
  112. .orders_table ul {
  113. width: 100%;
  114. list-style: none;
  115. display: flex;
  116. justify-content: space-between;
  117. }
  118. .orders_table .heading {
  119. border-bottom: 1px solid #E5E5E5;
  120. padding-left: 10px;
  121. padding-right: 10px;
  122. }
  123. .orders_table .heading li {
  124. font-weight: 700;
  125. font-size: 14px;
  126. padding-bottom: 16px;
  127. }
  128. .orders_table .order {
  129. border: 1px solid transparent;
  130. padding-top: 15px;
  131. padding-bottom: 15px;
  132. border-bottom: 1px solid #E5E5E5;
  133. padding: 15px 10px;
  134. }
  135. .orders_table .order li {
  136. font-weight: 400;
  137. font-size: 14px;
  138. }
  139. .orders_table .order:hover {
  140. border: 1px solid #000;
  141. border-radius: 4px;
  142. cursor: pointer;
  143. }
  144. .orders_table .heading_num,
  145. .orders_table .order_num {
  146. width: 65px;
  147. }
  148. .orders_table .heading_status,
  149. .orders_table .order_status {
  150. width: 100px;
  151. }
  152. .orders_table .order .order_status {
  153. font-weight: 600;
  154. font-size: 14px;
  155. color: #27AE60;
  156. }
  157. .orders_table .order_status .green_circle {
  158. display: inline-block;
  159. margin-right: 5px;
  160. height: 8px;
  161. width: 8px;
  162. border-radius: 5px;
  163. background: #27AE60;
  164. }
  165. .orders_table .heading_date,
  166. .orders_table .order_date {
  167. width: 120px;
  168. text-align: center;
  169. }
  170. .orders_table .order_date p {
  171. margin-bottom: 5px;
  172. margin-top: 5px;
  173. }
  174. .orders_table .heading_duration,
  175. .orders_table .order_duration {
  176. width: 120px;
  177. }
  178. .orders_table .heading_tariff,
  179. .orders_table .order_tariff {
  180. width: 95px;
  181. }
  182. .orders_table .order .order_tariff {
  183. font-weight: 600;
  184. font-size: 14px;
  185. color: #A0A0A0;
  186. }
  187. .orders_table .order_tariff .gray_circle {
  188. display: inline-block;
  189. margin-right: 5px;
  190. height: 8px;
  191. width: 8px;
  192. border-radius: 5px;
  193. background: #A0A0A0;
  194. }
  195. .orders_table .heading_cust,
  196. .orders_table .order_cust {
  197. width: 130px;
  198. }
  199. .orders_table .heading_exec,
  200. .orders_table .order_exec {
  201. width: 110px;
  202. }
  203. .orders_table .heading_car,
  204. .orders_table .order_car {
  205. width: 95px;
  206. }
  207. .orders_table .heading_total,
  208. .orders_table .order_total {
  209. width: 80px;
  210. text-align: end;
  211. }
  212. .orders_table .footing {
  213. display: none;
  214. padding-top: 40px;
  215. }
  216. .text-bold {
  217. font-weight: 700 !important;
  218. }
  219. .orders_table .rate {
  220. color: #27AE60;
  221. }
  222. .orders_table .footing a {
  223. font-size: 14px;
  224. color: #0066FF;
  225. text-decoration: none;
  226. }
  227. .orders_table .footing .wishes {
  228. font-weight: 400;
  229. color: #9D9D9D;
  230. }
  231. .order_total {
  232. padding-right: 14px;
  233. }
  234. .order_car {
  235. padding-left: 2px;
  236. }
  237. .empty-list {
  238. width: auto;
  239. height: 614px;
  240. text-align: center;
  241. vertical-align: 100%;
  242. vertical-align: middle;
  243. }
  244. .empty-list p {
  245. line-height: 614px;
  246. font-weight: 400;
  247. font-size: 14px;
  248. }
  249. /* переключение страниц */
  250. .pages {
  251. margin-left: auto;
  252. margin-right: auto;
  253. display: flex;
  254. justify-content: space-between;
  255. }
  256. .pages p {
  257. font-weight: 400;
  258. font-size: 14px;
  259. }
  260. .pages .total {
  261. margin-top: 15px;
  262. }
  263. .pages .back {
  264. margin-right: 40px;
  265. text-decoration: none;
  266. font-weight: 600;
  267. font-size: 14px;
  268. color: #0066FF;
  269. }
  270. .pages .back.disabled {
  271. color: #A6A6A6;
  272. }
  273. .pages .next {
  274. width: 103px;
  275. height: 35px;
  276. background: linear-gradient(226.01deg, #00A4FF -13.24%, #0076C7 119.18%);
  277. border: none;
  278. cursor: pointer;
  279. border-radius: 6px;
  280. font-weight: 700;
  281. font-size: 14px;
  282. color: #fff;
  283. }
  284. .pages .next.disabled {
  285. background: #A6A6A6;
  286. }
  287. /* подвал */
  288. footer {
  289. height: 60px;
  290. width: 100%;
  291. margin-top: 55px;
  292. padding-top: 15px;
  293. background: #11344C;
  294. }
  295. footer .container {
  296. display: flex;
  297. align-items: center;
  298. }
  299. footer ul {
  300. margin-left: auto;
  301. list-style: none;
  302. display: flex;
  303. justify-content: space-between;
  304. align-items: center;
  305. }
  306. footer ul li {
  307. margin-left: 20px;
  308. }
  309. footer a {
  310. text-decoration: none;
  311. font-size: 14px;
  312. font-weight: 400;
  313. color: #fff;
  314. }
  315. /* SELECT */
  316. .select {
  317. position: relative;
  318. display: block;
  319. min-width: 220px;
  320. width: 100%;
  321. min-width: 247px;
  322. max-height: 36px;
  323. margin-top: 6px;
  324. }
  325. .select_not_active {
  326. z-index: -1;
  327. }
  328. .select__head {
  329. width: 100%;
  330. max-width: 100%;
  331. border: 1px solid #C4C4C4;
  332. border-radius: 3px;
  333. padding: 8px 10px;
  334. font-size: 14px;
  335. line-height: 18px;
  336. cursor: pointer;
  337. }
  338. .select__head::after {
  339. width: 9px;
  340. height: 6px;
  341. background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgOSA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDQuNSA1TDggMSIgc3Ryb2tlPSIjQTZBNkE2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K") ;
  342. position: absolute;
  343. right: 10px;
  344. bottom: 50%;
  345. transform: translateY(50%);
  346. content: '';
  347. display: block;
  348. transition: .2s ease-in;
  349. }
  350. .select__head.open::after {
  351. width: 9px;
  352. height: 2px;
  353. background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIyIiB2aWV3Qm94PSIwIDAgOSAyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDQuNSAxTDggMSIgc3Ryb2tlPSIjQTZBNkE2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K") ;
  354. }
  355. .select__list {
  356. display: none;
  357. position: absolute;
  358. top: 100%;
  359. left: 0;
  360. right: 0;
  361. background: #fff;
  362. border: 1px solid #C4C4C4;
  363. border-bottom-right-radius: 3px;
  364. border-bottom-left-radius: 3px;
  365. margin-top: 5px;
  366. max-height: 205px;
  367. overflow-x: hidden;
  368. overflow-y: auto;
  369. margin: 0;
  370. padding: 0;
  371. font-size: 14px;
  372. scrollbar-color: dark;
  373. scrollbar-width: thin;
  374. overscroll-behavior: contain;
  375. }
  376. .select__list::-webkit-scrollbar {
  377. width: 7px;
  378. background-color: #F8F9FA;
  379. padding: 5px;
  380. }
  381. .select__list::-webkit-scrollbar-thumb {
  382. border-radius: 10px;
  383. background-color: #D9D9D9;
  384. }
  385. .select__list .select__item {
  386. position: relative;
  387. padding: 10px 12px;
  388. cursor: pointer;
  389. list-style-type: none;
  390. }
  391. .select__list .select__item:hover {
  392. background-color: rgba(224, 229, 231, 0.5);
  393. }
  394. .select__list div {
  395. max-width: 106px;
  396. border-bottom: 1px solid #C4C4C4;
  397. margin-left: 12px;
  398. }
  399. .menu-burger__header {
  400. display: none;
  401. }
  402. .header_nav {
  403. display: flex;
  404. }
  405. .header_nav ul {
  406. height: 26px;
  407. }
  408. .logo_hidden, .user_image_hidden, .user {
  409. display: none;
  410. }
  411. .line_hidden {
  412. display: none;
  413. height: 1px;
  414. width: 106px;
  415. background: #C4C4C4;
  416. margin-bottom: 16px;
  417. }
  418. div.scrollmenu {
  419. overflow: auto;
  420. white-space: nowrap;
  421. }
  422. div.scrollmenu a {
  423. display: inline-block;
  424. color: white;
  425. text-align: center;
  426. padding: 14px;
  427. text-decoration: none;
  428. }
  429. .fixedcol {
  430. background-color: white;
  431. position: sticky;
  432. left: -1px;
  433. }
  434. main {
  435. margin-top: 120px;
  436. }
  437. .main h1 {
  438. font-style: normal;
  439. font-weight: 700;
  440. font-size: 14px;
  441. line-height: 19px;
  442. color: #11344C;
  443. margin-bottom: 40px;
  444. }
  445. .main ul{
  446. margin-top: 40px;
  447. list-style-type: none;
  448. }
  449. .main li {
  450. padding-top: 15px;
  451. border-top: 1px solid #E5E5E5;
  452. padding-bottom: 15px;
  453. display: flex;
  454. justify-content: space-between;
  455. font-weight: 400;
  456. font-size: 14px;
  457. color: #0066FF;
  458. cursor: pointer;
  459. }
  460. .main li:last-child {
  461. border-bottom: 1px solid #E5E5E5;
  462. }
  463. .main .circle {
  464. width: 8px;
  465. height: 8px;
  466. display: inline-block;
  467. border-radius: 8px;
  468. margin-right: 5px;
  469. }
  470. .main .green {
  471. color: #27AE60;
  472. }
  473. .main .yellow {
  474. color: #F2C94C;
  475. }
  476. .main .red {
  477. color: #EE1010;
  478. }
  479. .main .green span {
  480. background: #27AE60;
  481. }
  482. .main .yellow span {
  483. background: #F2C94C;
  484. }
  485. .main .red span {
  486. background: #EE1010;
  487. }
  488. .mainTwo {
  489. margin-left: 200px;
  490. width: 472px;
  491. }
  492. .mainTwo h1 {
  493. font-style: normal;
  494. font-weight: 700;
  495. font-size: 16px;
  496. line-height: 19px;
  497. color: #000000;
  498. }
  499. .mainTwoThree li {
  500. padding-top: 15px;
  501. padding-bottom: 15px;
  502. display: flex;
  503. justify-content: space-between;
  504. font-weight: 600;
  505. font-size: 14px;
  506. cursor: pointer;
  507. border-bottom: 1px solid #E5E5E5;
  508. color: #000000;
  509. }
  510. .mainTwoThree ul{
  511. margin-top: 30px;
  512. list-style-type: none;
  513. }
  514. .mainTwoThree .font {
  515. font-weight: bold;
  516. text-align: right;
  517. }
  518. .mainTwoThree .poz {
  519. text-align: right;
  520. }
  521. .mainThree {
  522. width: 281px;
  523. }
  524. .mainThree h1 {
  525. font-style: normal;
  526. font-weight: 700;
  527. font-size: 16px;
  528. line-height: 19px;
  529. }
  530. .btn {
  531. background: #11344C;
  532. color: #FFFFFF;
  533. border: none;
  534. border-radius: 6px;
  535. padding: 8px 28px;
  536. font-weight: 700;
  537. font-size: 14px;
  538. margin-left: auto;
  539. display: block;
  540. margin-top: 40px;
  541. }
  542. .mainTwoThree {
  543. display: flex;
  544. flex-direction: row;
  545. gap: 287px;
  546. margin-top: 40px;
  547. }
  548. .email {
  549. color: #0066FF;
  550. }
  551. .accordion-item__trigger .link-item{
  552. color: #0066FF;
  553. }
  554. .files-item a {
  555. color: #0066FF;
  556. text-decoration: none;
  557. }
  558. .accordion-item {
  559. font-size: 14px;
  560. padding: 0 7px;
  561. border-top: 1px solid #E5E5E5;
  562. border-bottom: 1px solid #E5E5E5;
  563. border-left: 1px solid #FFFFFF;
  564. border-right: 1px solid #FFFFFF;
  565. }
  566. .accordion-item__trigger {
  567. display: flex;
  568. justify-content: space-between;
  569. margin-top: 15px;
  570. margin-bottom: 15px;
  571. cursor: pointer;
  572. }
  573. .accordion-item--active .accordion-item__trigger {
  574. }
  575. .accordion-item--active .accordion-item__content {
  576. display: block;
  577. }
  578. .accordion-item--active {
  579. border: 1px solid black;
  580. border-radius: 4px;
  581. }
  582. .accordion-item__content {
  583. display: none;
  584. }
  585. .btn-centered {
  586. margin-right: auto;
  587. margin-left: auto;
  588. margin-bottom: 40px;
  589. }
  590. .files {
  591. width: 315px;
  592. margin-left: 86px;
  593. margin-top: 46px;
  594. }
  595. .files-item {
  596. display: flex;
  597. justify-content: space-between;
  598. margin-bottom: 15px;
  599. }
  600. .nonedisplay {
  601. display: none;
  602. }