структура.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. body {
  2. margin: 0;
  3. font-family: sans-serif;
  4. overflow-x: hidden;
  5. background-image: url('../картинки/фон.jpg');
  6. height: 1000px;
  7. }
  8. .big_con {
  9. width: 1800px;
  10. margin: 0 auto;
  11. margin: 0 auto;
  12. background-color: #22242B;
  13. }
  14. .container {
  15. position: relative;
  16. width: 100%;
  17. overflow: hidden; /* Скрываем переполнение для закругления */
  18. }
  19. .content {
  20. position: absolute;
  21. top: 70%;
  22. left: 50%;
  23. transform: translate(-50%, -50%);
  24. text-align: center;
  25. color: #fff;
  26. }
  27. .content h2 {
  28. font-size: 36px;
  29. margin-bottom: 10px;
  30. color: #fff;
  31. }
  32. h4 {
  33. font-size: 28px;
  34. margin-bottom: 10px;
  35. color: #fff;
  36. }
  37. p {
  38. font-size: 24px;
  39. margin-bottom: 10px;
  40. color: #fff;
  41. }
  42. header {
  43. background-color: transparent;
  44. padding: 20px;
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. position: absolute; /* Помещаем меню поверх изображения */
  49. justify-content: space-between;
  50. width: 100%;
  51. height: 100px;
  52. background-color: #22242B;
  53. }
  54. .logo {
  55. font-size: 24px;
  56. font-weight: bold;
  57. color: #0022ff; /* Синий цвет */
  58. text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Тень */
  59. }
  60. nav {
  61. display: flex;
  62. }
  63. nav a {
  64. text-decoration: none;
  65. color: #faf3f3;
  66. padding: 10px 20px;
  67. position: relative;
  68. margin-left: 20px;
  69. }
  70. nav a::after {
  71. content: "";
  72. position: absolute;
  73. bottom: 0;
  74. left: 0;
  75. width: 100%;
  76. height: 3px;
  77. background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
  78. transform: scaleX(0);
  79. transition: transform 0.3s ease-in-out;
  80. }
  81. nav a:hover::after {
  82. transform: scaleX(1);
  83. }
  84. .icon {
  85. margin-left: 20px;
  86. cursor: pointer;
  87. }
  88. .icon img {
  89. width: 30px;
  90. height: 30px;
  91. }
  92. /* Стили для фонов */
  93. section {
  94. padding: 50px;
  95. text-align: center;
  96. min-height: 100vh;
  97. }
  98. .data_foot {
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. gap: 5px;
  103. }
  104. hr {
  105. width: 100%;
  106. border: 1px solid #D1D1D1;
  107. }
  108. .i:hover svg path {
  109. fill: #D1D1D1;
  110. }
  111. .scroll-to-top {
  112. position: fixed;
  113. bottom: 20px;
  114. right: 20px;
  115. display: none;
  116. z-index: 10;
  117. cursor: pointer;
  118. }
  119. .scroll-to-top img {
  120. width: 50px;
  121. }
  122. .container {
  123. position: relative;
  124. width: 100%;
  125. overflow: hidden; /* Скрываем переполнение для закругления */
  126. }
  127. .logo {
  128. display: flex;
  129. align-items: center;
  130. margin-top: 20px;
  131. margin-bottom: 20px;
  132. }
  133. .logo img {
  134. margin-right: 10px;
  135. }
  136. nav {
  137. display: flex;
  138. }
  139. nav a {
  140. text-decoration: none;
  141. color: #ffffff;
  142. padding: 10px 20px;
  143. position: relative;
  144. margin-left: 20px;
  145. }
  146. nav a::after {
  147. content: "";
  148. position: absolute;
  149. bottom: 0;
  150. left: 0;
  151. width: 100%;
  152. height: 3px;
  153. background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
  154. transform: scaleX(0);
  155. transition: transform 0.3s ease-in-out;
  156. }
  157. .right-section {
  158. display: flex;
  159. align-items: center;
  160. }
  161. .content {
  162. display: flex;
  163. flex-direction: column;
  164. align-items: center;
  165. padding: 20px;
  166. width: 80%;
  167. max-width: 900px; /* Ограничение ширины контента */
  168. }
  169. h2 {
  170. text-align: center;
  171. margin-bottom: 20px;
  172. font-size: 24px;
  173. font-weight: bold;
  174. }
  175. .faq-container {
  176. display: flex;
  177. flex-direction: column;
  178. gap: 20px;
  179. }
  180. .faq-section {
  181. background-color: rgba(160, 160, 160, 0.7);
  182. padding: 20px;
  183. border-radius: 5px;
  184. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  185. width: 1000px;
  186. cursor: pointer; /* Изменяем курсор при наведении */
  187. }
  188. .faq-title {
  189. display: flex;
  190. justify-content: space-between;
  191. align-items: center;
  192. cursor: pointer;
  193. padding: 10px;
  194. border-radius: 5px;
  195. }
  196. .faq-title h3 {
  197. margin: 0;
  198. font-size: 18px;
  199. font-weight: bold;
  200. color: black;
  201. }
  202. .faq-title i {
  203. font-size: 16px;
  204. transition: transform 0.3s ease;
  205. }
  206. .faq-title i.active {
  207. transform: rotate(180deg);
  208. }
  209. .faq-question {
  210. padding: 10px;
  211. border-radius: 5px;
  212. cursor: pointer;
  213. }
  214. .faq-question p {
  215. margin: 0;
  216. font-size: 16px;
  217. }
  218. .faq-question.active {
  219. display: block;
  220. }
  221. .faq-question .answer {
  222. display: none;
  223. background-color: #fff;
  224. padding: 10px;
  225. border-radius: 5px;
  226. margin-top: 10px;
  227. }
  228. .faq-question.active .answer {
  229. display: block;
  230. }
  231. .tooltip {
  232. background-color: #f0f0f0;
  233. border: 1px solid #ccc;
  234. padding: 10px;
  235. font-size: 14px;
  236. color: #333;
  237. }
  238. @media (max-width: 768px) {
  239. .content {
  240. width: 90%;
  241. max-width: 600px;
  242. }
  243. nav a {
  244. margin-right: 10px;
  245. }
  246. }
  247. @media (max-width: 480px) {
  248. .content {
  249. width: 95%;
  250. }
  251. nav a {
  252. font-size: 14px;
  253. }
  254. .faq-title h3 {
  255. font-size: 16px;
  256. }
  257. }
  258. /*окошко*/
  259. .answer-modal {
  260. display: none;
  261. position: fixed;
  262. left: 50%;
  263. top: 50%;
  264. transform: translate(-50%, -50%);
  265. background-color: rgba(80, 80, 80, 0.7);
  266. padding: 20px;
  267. border-radius: 5px;
  268. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  269. z-index: 100;
  270. width: 80%;
  271. max-width: 600px;
  272. }
  273. .answer-modal .close-button {
  274. position: absolute;
  275. top: 10px;
  276. right: 10px;
  277. cursor: pointer;
  278. font-size: 18px;
  279. }
  280. .answer-modal .answer-content {
  281. margin-top: 30px;
  282. color: white;
  283. white-space: pre-wrap;
  284. }
  285. .answer-modal .answer-content p {
  286. color: white;
  287. }
  288. .footer-link {
  289. position: absolute;
  290. bottom: 20px;
  291. left: 50%;
  292. transform: translateX(-50%);
  293. color: white;
  294. text-decoration: none;
  295. font-weight: bold;
  296. background-color: #444444;
  297. padding: 10px 20px;
  298. border-radius: 5px;
  299. z-index: 2;
  300. }
  301. .footer-link:hover {
  302. background-color: #6e6e6e;
  303. }
  304. /* Отступы для текста */
  305. .logo .p16 {
  306. padding-left: 20px; /* Отступ слева */
  307. }
  308. .opacity .p14 {
  309. padding-right: 20px; /* Отступ справа */
  310. }
  311. .opacity {
  312. position: relative;
  313. background: none;
  314. border: none;
  315. cursor: pointer;
  316. width: 310px;
  317. height: 40px;
  318. display: flex;
  319. justify-content: space-around;
  320. align-items: center;
  321. border: 1px solid white;
  322. background-color: rgba(255, 255, 255, 0);
  323. transition: all ease 0.3s;
  324. cursor: pointer;
  325. }
  326. .opacity:hover {
  327. background-color: #5585ff;
  328. }
  329. .arrow svg {
  330. width: 9px;
  331. display: flex;
  332. justify-content: center;
  333. transition: all ease 0.3s;
  334. }
  335. .opacity:hover svg path {
  336. stroke: white;
  337. }
  338. .opacity .arrow {
  339. position: absolute;
  340. top: 50%;
  341. transform: translateY(-50%);
  342. right: 10px;
  343. }
  344. .dropdown {
  345. display: none;
  346. position: absolute;
  347. background-color: #5585ff;
  348. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  349. top: 100%;
  350. right: 1px;
  351. left: 0px;
  352. z-index: 3;
  353. width: 310px; /* Ширина списка */
  354. }
  355. .dropdown a {
  356. color: rgb(255, 255, 255);
  357. padding: 12px 16px;
  358. text-decoration: none;
  359. display: block;
  360. z-index: 3;
  361. }
  362. .dropdown a:hover {
  363. background-color: #ffffff;
  364. color: #5585ff;
  365. }
  366. .opacity:hover .dropdown {
  367. display: block;
  368. }
  369. .close-button {
  370. color: #aaa;
  371. float: right;
  372. font-size: 28px;
  373. font-weight: bold;
  374. cursor: pointer;
  375. }
  376. .close-button:hover,
  377. .close-button:focus {
  378. color: black;
  379. text-decoration: none;
  380. cursor: pointer;
  381. }
  382. .faq-section {
  383. margin-bottom: 20px;
  384. }
  385. .faq-title {
  386. background-color: #f2f2f2;
  387. padding: 15px;
  388. border-radius: 5px;
  389. display: flex;
  390. align-items: center;
  391. justify-content: space-between;
  392. cursor: pointer;
  393. }
  394. .faq-title h3 {
  395. margin: 0;
  396. font-size: 1.3em;
  397. }
  398. .faq-title i {
  399. font-size: 1.2em;
  400. color: #333;
  401. transition: transform 0.3s ease;
  402. }
  403. .faq-title i.fa-minus {
  404. transform: rotate(180deg);
  405. }
  406. .faq-questions {
  407. display: none;
  408. padding: 15px;
  409. border: 1px solid #ddd;
  410. border-radius: 5px;
  411. }
  412. .faq-question p {
  413. margin: 0;
  414. }