123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- body {
- margin: 0;
- font-family: sans-serif;
- overflow-x: hidden;
- background-image: url('../картинки/фон.jpg');
- height: 1000px;
- }
- .big_con {
- width: 1400px;
- background-color: #22242B;
- }
- .container {
- position: relative;
- width: 100%;
- overflow: hidden; /* Скрываем переполнение для закругления */
- }
- .content {
- position: absolute;
- top: 70%;
- left: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- color: #fff;
- }
- .content h2 {
- font-size: 36px;
- margin-bottom: 10px;
- color: #fff;
- }
- h4 {
- font-size: 28px;
- margin-bottom: 10px;
- color: #fff;
- }
- p {
- font-size: 24px;
- margin-bottom: 10px;
- color: #fff;
- }
- header {
- background-color: transparent;
- padding: 20px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: absolute; /* Помещаем меню поверх изображения */
- justify-content: space-between;
- width: 100%;
- height: 100px;
- background-color: #22242B;
- }
- .logo {
- font-size: 24px;
- font-weight: bold;
- color: #0022ff; /* Синий цвет */
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Тень */
- }
- nav {
- display: flex;
- }
- nav a {
- text-decoration: none;
- color: #faf3f3;
- padding: 10px 20px;
- position: relative;
- margin-left: 20px;
- }
- nav a::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
- transform: scaleX(0);
- transition: transform 0.3s ease-in-out;
- }
- nav a:hover::after {
- transform: scaleX(1);
- }
- .icon {
- margin-left: 20px;
- cursor: pointer;
- }
- .icon img {
- width: 30px;
- height: 30px;
- }
- /* Стили для фонов */
- section {
- padding: 50px;
- text-align: center;
- min-height: 100vh;
- }
- .data_foot {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 5px;
- }
- hr {
- width: 100%;
- border: 1px solid #D1D1D1;
- }
- .i:hover svg path {
- fill: #D1D1D1;
- }
- .scroll-to-top {
- position: fixed;
- bottom: 20px;
- right: 20px;
- display: none;
- z-index: 10;
- cursor: pointer;
- }
- .scroll-to-top img {
- width: 50px;
- }
-
- .container {
- position: relative;
- width: 100%;
- overflow: hidden; /* Скрываем переполнение для закругления */
- }
-
-
- .logo {
- display: flex;
- align-items: center;
- margin-top: 20px;
- margin-bottom: 20px;
- }
-
- .logo img {
- margin-right: 10px;
- }
-
- nav {
- display: flex;
- }
-
- nav a {
- text-decoration: none;
- color: #ffffff;
- padding: 10px 20px;
- position: relative;
- margin-left: 20px;
- }
-
- nav a::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
- transform: scaleX(0);
- transition: transform 0.3s ease-in-out;
- }
-
- .right-section {
- display: flex;
- align-items: center;
- }
-
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20px;
- width: 80%;
- max-width: 900px; /* Ограничение ширины контента */
- }
-
- h2 {
- text-align: center;
- margin-bottom: 20px;
- font-size: 24px;
- font-weight: bold;
- }
-
- .faq-container {
- display: flex;
- flex-direction: column;
- gap: 20px;
- }
-
- .faq-section {
- background-color: rgba(160, 160, 160, 0.7);
- padding: 20px;
- border-radius: 5px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- width: 1000px;
- cursor: pointer; /* Изменяем курсор при наведении */
- }
-
- .faq-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- cursor: pointer;
- padding: 10px;
- border-radius: 5px;
- }
-
- .faq-title h3 {
- margin: 0;
- font-size: 18px;
- font-weight: bold;
- color: black;
- }
-
- .faq-title i {
- font-size: 16px;
- transition: transform 0.3s ease;
- }
-
- .faq-title i.active {
- transform: rotate(180deg);
- }
-
- .faq-question {
- padding: 10px;
- border-radius: 5px;
- cursor: pointer;
- }
-
- .faq-question p {
- margin: 0;
- font-size: 16px;
- }
-
- .faq-question.active {
- display: block;
- }
-
- .faq-question .answer {
- display: none;
- background-color: #fff;
- padding: 10px;
- border-radius: 5px;
- margin-top: 10px;
- }
-
- .faq-question.active .answer {
- display: block;
- }
- .tooltip {
- background-color: #f0f0f0;
- border: 1px solid #ccc;
- padding: 10px;
- font-size: 14px;
- color: #333;
- }
- @media (max-width: 768px) {
- .content {
- width: 90%;
- max-width: 600px;
- }
- nav a {
- margin-right: 10px;
- }
- }
-
- @media (max-width: 480px) {
- .content {
- width: 95%;
- }
- nav a {
- font-size: 14px;
- }
- .faq-title h3 {
- font-size: 16px;
- }
- }
- /*окошко*/
- .answer-modal {
- display: none;
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background-color: rgba(80, 80, 80, 0.7);
- padding: 20px;
- border-radius: 5px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
- z-index: 100;
- width: 80%;
- max-width: 600px;
- }
- .answer-modal .close-button {
- position: absolute;
- top: 10px;
- right: 10px;
- cursor: pointer;
- font-size: 18px;
- }
- .answer-modal .answer-content {
- margin-top: 30px;
- color: white;
- white-space: pre-wrap;
- }
- .answer-modal .answer-content p {
- color: white;
- }
- .footer-link {
- position: fixed;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: white;
- text-decoration: none;
- font-weight: bold;
- background-color: #444444;
- padding: 10px 20px;
- border-radius: 5px;
- z-index: 2;
- }
-
- .footer-link:hover {
- background-color: #6e6e6e;
- }
-
- /* Отступы для текста */
- .logo .p16 {
- padding-left: 20px; /* Отступ слева */
- }
- .opacity .p14 {
- padding-right: 20px; /* Отступ справа */
- }
- .opacity {
- position: relative;
- background: none;
- border: none;
- cursor: pointer;
- width: 310px;
- height: 40px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border: 1px solid white;
- background-color: rgba(255, 255, 255, 0);
- transition: all ease 0.3s;
- cursor: pointer;
- }
- .opacity:hover {
- background-color: #5585ff;
- }
- .arrow svg {
- width: 9px;
- display: flex;
- justify-content: center;
- transition: all ease 0.3s;
- }
- .opacity:hover svg path {
- stroke: white;
- }
- .opacity .arrow {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- right: 10px;
- }
- .dropdown {
- display: none;
- position: absolute;
- background-color: #5585ff;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- top: 100%;
- right: 1px;
- left: 0px;
- z-index: 3;
- width: 310px; /* Ширина списка */
- }
- .dropdown a {
- color: rgb(255, 255, 255);
- padding: 12px 16px;
- text-decoration: none;
- display: block;
- z-index: 3;
- }
- .dropdown a:hover {
- background-color: #ffffff;
- color: #5585ff;
- }
- .opacity:hover .dropdown {
- display: block;
- }
- .close-button {
- color: #aaa;
- float: right;
- font-size: 28px;
- font-weight: bold;
- cursor: pointer;
- }
- .close-button:hover,
- .close-button:focus {
- color: black;
- text-decoration: none;
- cursor: pointer;
- }
- .faq-section {
- margin-bottom: 20px;
- }
- .faq-title {
- background-color: #f2f2f2;
- padding: 15px;
- border-radius: 5px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- cursor: pointer;
- }
- .faq-title h3 {
- margin: 0;
- font-size: 1.3em;
- }
- .faq-title i {
- font-size: 1.2em;
- color: #333;
- transition: transform 0.3s ease;
- }
- .faq-title i.fa-minus {
- transform: rotate(180deg);
- }
- .faq-questions {
- display: none;
- padding: 15px;
- border: 1px solid #ddd;
- border-radius: 5px;
- }
- .faq-question p {
- margin: 0;
- }
|