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.
1909 lines
33 KiB
1909 lines
33 KiB
/* Основные стили для компьютера */
|
|
|
|
/* Header */
|
|
.header {
|
|
background: var(--main_white);
|
|
border-bottom: 1px solid var(--interface_title);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 4;
|
|
}
|
|
|
|
.header-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.header-bars {
|
|
display: none;
|
|
}
|
|
|
|
.header-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.header-logo span {
|
|
color: var(---main_black);
|
|
font-size: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.header-navs {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.header-navs__link {
|
|
padding: 8px 12px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.header-accordion {}
|
|
|
|
.header-accordion__btn {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 8px 12px;
|
|
border-radius: 24px;
|
|
background: var(--accent-2);
|
|
cursor: pointer;
|
|
user-select: none;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
line-height: 20px;
|
|
color: var(---main_black);
|
|
}
|
|
|
|
.header-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.header-lang__btn {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
gap: 4px;
|
|
padding: 12px 15px;
|
|
color: var(---main_black);
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
line-height: 20px;
|
|
}
|
|
|
|
/* Header end */
|
|
|
|
|
|
/* Home */
|
|
.home {
|
|
padding: 140px 0 68px;
|
|
}
|
|
|
|
.home-title {
|
|
font-size: 82px;
|
|
font-weight: bold;
|
|
line-height: 96px;
|
|
color: var(--main_white);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.home-description {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
line-height: 40px;
|
|
color: var(--main_white);
|
|
text-transform: uppercase;
|
|
margin-bottom: 68px;
|
|
}
|
|
|
|
.home-swp {
|
|
position: relative;
|
|
}
|
|
|
|
.home-swp__btn {
|
|
position: absolute;
|
|
bottom: 22px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.home-swp__btn button {
|
|
border: 1px solid var(--main_black);
|
|
background: var(--main_white);
|
|
width: 56px;
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.home-swp .swiper-slide:not(.swiper-slide-active) {
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.home-card {
|
|
border-radius: 60px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.home-card.bg-yellow {
|
|
background: var(--orange_80);
|
|
}
|
|
|
|
.home-card.bg-green {
|
|
background: var(--green_90);
|
|
}
|
|
|
|
.home-card.bg-violet {
|
|
background: var(--violet_90);
|
|
}
|
|
|
|
.home-card__img {
|
|
width: 395px;
|
|
border-radius: 60px;
|
|
overflow: hidden;
|
|
height: 393px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.home-card__img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.home-card__content {
|
|
padding: 32px 79px 0 0;
|
|
}
|
|
|
|
.home-card__content-title {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
line-height: 40px;
|
|
text-transform: uppercase;
|
|
max-width: 660px;
|
|
margin-bottom: 10px;
|
|
color: var(--interface_title);
|
|
}
|
|
|
|
.home-card__content-description {
|
|
color: var(--interface_title);
|
|
margin-bottom: 10px;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.home-card__content-body {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
.home-card__content-body__alerts {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
.home-card__content-body__alerts li {
|
|
background: var(--interface_hover);
|
|
color: var(--background);
|
|
border-radius: 16px;
|
|
padding: 6px 8px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.home-card__content-body__day {
|
|
color: var(--interface_hover);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.home-card__content-body__time {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
color: var(--interface_hover);
|
|
}
|
|
|
|
.home-card__content-body__data {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.home-card__content-body__data>div {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
color: var(--interface_hover);
|
|
}
|
|
|
|
.home-card__content-body__data>div .main-img {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.home-card__content-body__link {
|
|
border: 1px solid #000000;
|
|
border-radius: 28px;
|
|
background: var(--main_white);
|
|
position: absolute;
|
|
right: 37px;
|
|
bottom: 26px;
|
|
padding: 8.5px 16px 12.5px;
|
|
font-style: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
}
|
|
/* Home end */
|
|
|
|
|
|
/* Anons */
|
|
.anons {
|
|
background: var(--main_white);
|
|
border-radius: 60px;
|
|
padding: 51px 0;
|
|
}
|
|
|
|
.anons-theme__title {
|
|
color: var(--main_black);
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
line-height: 28px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.anons-theme {
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.anons-theme ul {
|
|
max-width: 1022px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
}
|
|
|
|
.anons-theme ul a {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
color: var(--main_black);
|
|
padding: 4px 24px;
|
|
border: 1px solid #000;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.anons-theme ul a:hover,
|
|
.anons-theme ul a.active {
|
|
background: var(--main_black);
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.anons-best {
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.anons-best__title {
|
|
font-size: 36px;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
color: var(--main_black);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.anons-best__card-wrap {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.anons-best__card {
|
|
padding-top: 293px;
|
|
border-radius: 48px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.anons-best__card.light {
|
|
padding-top: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.anons-best__card .main-img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 360px;
|
|
z-index: -1;
|
|
}
|
|
|
|
.anons-best__card .main-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.anons-best__card.light .main-img {
|
|
position: static;
|
|
height: 265px;
|
|
}
|
|
.anons-best__card.light .main-img img {
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.anons-best__card-alerts {
|
|
position: absolute;
|
|
top: 21px;
|
|
left: 17px;
|
|
width: calc(100% - 34px);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 7px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.anons-best__card-alerts li {
|
|
padding: 6px 8px;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
font-weight: 500;
|
|
color: var(--background);
|
|
background: var(--main_black);
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.anons-best__card-body {
|
|
background: var(--accent-1);
|
|
padding: 30px 17px 22px;
|
|
border-radius: 48px 48px 0 0;
|
|
color: var(--main_white);
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
.anons-best__card.light .anons-best__card-body {
|
|
background: transparent;
|
|
color: var(--main_black);
|
|
padding: 12px 0 34px;
|
|
}
|
|
|
|
.anons-best__card-body__title {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
line-height: 32px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.anons-best__card.light .anons-best__card-body__title {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.anons-best__card-body__datas {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 6px 10px;
|
|
max-width: 264px;
|
|
}
|
|
|
|
.anons-best__card.light .anons-best__card-body__datas {
|
|
color: var(--placeholder);
|
|
}
|
|
|
|
.anons-best__card-body__datas p {
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.anons-best__card-body__datas ul {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.anons-best__card-body__datas ul li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.anons-best__card-body__datas ul .logo img {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.anons-article {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.anons-article__title {
|
|
font-size: 36px;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
color: var(--main_black);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.anons-article__card-wrap {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 40px 25px;
|
|
}
|
|
|
|
.anons-article__more-link {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.anons-article__more-link a {
|
|
background: var(--accent-3);
|
|
color: var(--main_white);
|
|
border-radius: 20px;
|
|
border: 1px solid var(--main_white);
|
|
padding: 16px 24px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
text-transform: uppercase;
|
|
}
|
|
/* Anons end */
|
|
|
|
/* Author */
|
|
.author {
|
|
padding: 111px 0 105px;
|
|
}
|
|
|
|
.author-content {
|
|
max-width: 1022px;
|
|
margin: 0 auto;
|
|
background: #CAFF81;
|
|
border-radius: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 35px 42px 35px 209px;
|
|
position: relative;
|
|
box-shadow: 6px 9px 20px rgba(0, 0, 0, 15%);
|
|
}
|
|
|
|
.author-content__star-1 {
|
|
position: absolute;
|
|
width: 74px;
|
|
top: 18px;
|
|
left: -15px;
|
|
transform: translateX(-100%);
|
|
}
|
|
|
|
.author-content__star-2 {
|
|
position: absolute;
|
|
top: 28px;
|
|
right: -24px;
|
|
transform: translateX(100%);
|
|
width: 37px;
|
|
}
|
|
|
|
.author-content__img {
|
|
position: absolute;
|
|
left: 9px;
|
|
top: -43px;
|
|
width: 167px;
|
|
}
|
|
|
|
.author-content__img.mb {
|
|
display: none;
|
|
}
|
|
|
|
.author-content__title {
|
|
color: var(--main_black);
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.author-content__link {
|
|
border-radius: 20px;
|
|
background: var(--main_black);
|
|
border: 1px solid var(--main_white);
|
|
padding: 15px 24px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
color: var(--main_white);
|
|
flex-shrink: 0;
|
|
}
|
|
/* Author end */
|
|
|
|
/* Editorial */
|
|
.editorial {
|
|
padding-bottom: 68px;
|
|
}
|
|
|
|
.editorial-head {
|
|
position: relative;
|
|
z-index: 1;
|
|
max-width: 841px;
|
|
margin-bottom: 37px;
|
|
}
|
|
|
|
.editorial-head__title {
|
|
font-size: 82px;
|
|
line-height: 96px;
|
|
font-weight: bold;
|
|
color: var(--main_white);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.editorial-head__img {
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: -14px;
|
|
right: -20px;
|
|
width: 221px;
|
|
}
|
|
|
|
.editorial-head__star {
|
|
position: absolute;
|
|
top: 8.26px;
|
|
right: -13.5px;
|
|
transform: translateX(100%);
|
|
width: 87.5px;
|
|
}
|
|
|
|
.editorial-card__wrap {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 31px 25px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.editorial-card {
|
|
border: 2px solid var(--creme-white);
|
|
border-radius: 30px;
|
|
display: flex;
|
|
align-items: stretch;
|
|
overflow: hidden;
|
|
background: var(--linear);
|
|
backdrop-filter: blur(28px);
|
|
}
|
|
|
|
.editorial-card .main-img {
|
|
min-height: 282px;
|
|
width: 207px;
|
|
border-radius: 29px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.editorial-card .main-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.editorial-card__content {
|
|
padding: 42px 19px 19px 35px;
|
|
}
|
|
|
|
.editorial-card__content-alerts {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 7px;
|
|
margin-bottom: 17px;
|
|
}
|
|
|
|
.editorial-card__content-alerts a {
|
|
background: var(--main_black);
|
|
border-radius: 16px;
|
|
padding: 6px 8px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
color: var(--background);
|
|
}
|
|
|
|
.editorial-card__content-title {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
line-height: 32px;
|
|
color: var(--grey-black);
|
|
text-transform: uppercase;
|
|
margin-bottom: 17px;
|
|
}
|
|
|
|
.editorial-card__content-data {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px 16px;
|
|
color: var(--interface_hover);
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.editorial-card__content-data ul {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.editorial-card__content-data li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.editorial-card__content-data .logo img {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
/* Editorial end */
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: var(--main_black);
|
|
padding: 40px 0 38px;
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.footer-top {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: space-between;
|
|
gap: 48px;
|
|
}
|
|
|
|
.footer-top .logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
background: var(--accent-1);
|
|
color: transparent;
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.footer-content__address {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.footer-content {
|
|
width: 100%;
|
|
}
|
|
|
|
.footer-content ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.footer-content ul li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.footer-content ul p {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.footer-content ul a {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
}
|
|
|
|
.footer-content__wrap {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.footer-top__link {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.footer-top__link .link-black {
|
|
padding: 7px 15px;
|
|
color: var(--main_white);
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
border: 1px solid var(--main_white);
|
|
border-radius: 24px;
|
|
}
|
|
|
|
.footer-top__link .link-white {
|
|
width: 100%;
|
|
text-align: center;
|
|
background: var(--main_white);
|
|
color: var(--main_black);
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
padding: 12px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.footer-contact {
|
|
width: 364px;
|
|
flex-shrink: 0;
|
|
background: var(--accent-1);
|
|
border-radius: 24px;
|
|
padding: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.footer-contact__title {
|
|
color: var(--main_black);
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
}
|
|
|
|
.footer-contact__submit {
|
|
width: 100%;
|
|
text-align: center;
|
|
height: 48px;
|
|
border-radius: 16px;
|
|
background: var(--main_black);
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.footer-bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 17px;
|
|
margin-top: 19px;
|
|
border-top: 1px solid var(--main_white);
|
|
}
|
|
|
|
.footer-network {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.footer-bottom a {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
font-weight: 500;
|
|
color: var(--main_white);
|
|
opacity: 0.6;
|
|
text-decoration: underline;
|
|
}
|
|
/* Footer end */
|
|
|
|
/* Breadcrumb */
|
|
.breadcrumb {
|
|
padding: 108px 0 24px;
|
|
}
|
|
|
|
.breadcrumb .container {
|
|
color: var(--main_white);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
}
|
|
|
|
.breadcrumb a {
|
|
display: inline;
|
|
}
|
|
/* Breadcrumb end */
|
|
|
|
/* Article home */
|
|
.article-home {
|
|
padding-bottom: 36px;
|
|
}
|
|
|
|
.article-home h1 {
|
|
font-size: 64px;
|
|
font-weight: bold;
|
|
line-height: 120%;
|
|
color: var(--main_white);
|
|
margin-bottom: 17px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.article-home__data {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px 24px;
|
|
margin-bottom: 17px;
|
|
}
|
|
|
|
.article-home__data-alerts {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.article-home__data-alerts a {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
font-weight: 500;
|
|
color: var(--background);
|
|
padding: 6px 8px;
|
|
border-radius: 20px;
|
|
background: var(--main_black);
|
|
}
|
|
|
|
.article-home__data p {
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
font-weight: 500;
|
|
color: var(--main_white);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.article-home__data .user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
font-weight: 500;
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.article-home__data .user img {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.article-home__card {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
|
|
.article-home__card img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: 64px;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.article-home.position-1 .container {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.article-home.position-1 .article-home__card {
|
|
width: calc(50% - 12px);
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
.article-home.position-1 h1 {
|
|
width: calc(50% - 12px);
|
|
}
|
|
|
|
.article-home.position-1 .article-home__data {
|
|
max-width: 406px;
|
|
}
|
|
|
|
.article-home.position-2 .container {
|
|
position: relative;
|
|
z-index: 1;
|
|
height: 695px;
|
|
padding: 45px 42px;
|
|
}
|
|
|
|
.article-home.position-2 .article-home__card {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.article-home.position-2 .article-home__card::before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(282.92deg, rgba(255, 255, 255, 0) 50.1%, #FFFFFF 77.26%);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.article-home.position-2 h1 {
|
|
color: var(--main_black);
|
|
max-width: 838px;
|
|
}
|
|
|
|
.article-home.position-2 .article-home__data {
|
|
width: 304px;
|
|
}
|
|
|
|
.article-home.position-2 .article-home__data p {
|
|
color: var(--main_black);
|
|
}
|
|
|
|
.article-home.position-2 .article-home__data p img {
|
|
filter: brightness(0) invert(0)
|
|
}
|
|
|
|
.article-home.position-2 .article-home__data .user {
|
|
color: var(--main_black);
|
|
}
|
|
}
|
|
|
|
.article-content {
|
|
background: var(--main_white);
|
|
border-radius: 64px;
|
|
max-width: 1232px;
|
|
margin: 0 auto;
|
|
padding: 64px 0 116px;
|
|
}
|
|
|
|
.article-container {
|
|
max-width: 1022px;
|
|
margin: 0 auto;
|
|
|
|
@media (max-width: 1054px) {
|
|
max-width: calc(100% - 32px);
|
|
}
|
|
}
|
|
/* Article home end */
|
|
|
|
/* Discount */
|
|
.discount {
|
|
background: radial-gradient(122% 156.56% at 100% 0%, #7E90FF 0%, #8187FF 45%, #F8A6FF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
|
|
border-radius: 32px;
|
|
padding: 32px;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.discount-title {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
line-height: 40px;
|
|
text-transform: uppercase;
|
|
max-width: 517px;
|
|
color: var(--main_black);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.discount-bg {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 8px;
|
|
width: 369px;
|
|
z-index: -1;
|
|
}
|
|
|
|
.discount-bg.mb {
|
|
display: none;
|
|
}
|
|
|
|
.discount-title span {
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.discount-form {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.discount-form input {
|
|
width: 280px;
|
|
height: 50px;
|
|
border: 2px solid var(--main_black);
|
|
border-radius: 48px;
|
|
background: #F5F5F5;
|
|
padding: 0 18px;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
color: var(--main_black);
|
|
}
|
|
|
|
.discount-form button {
|
|
border: 2px solid var(--main_black);
|
|
background: transparent;
|
|
height: 50px;
|
|
padding: 0 30px;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
color: var(--main_black);
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.discount-form button:hover {
|
|
background: var(--interface_title);
|
|
color: var(--main_white);
|
|
}
|
|
|
|
.discount-description__1 {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--main_black);
|
|
max-width: 621px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.discount-description__2 {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
color: var(--main_black);
|
|
}
|
|
/* Discount end */
|
|
|
|
/* Diet */
|
|
.diet {
|
|
background: var(--violet_90);
|
|
border-radius: 32px;
|
|
padding: 36px 49px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 32px;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.diet p {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.diet a {
|
|
padding: 12px 24px;
|
|
text-align: center;
|
|
border: 1px solid var(--main_black);
|
|
background: var(--main_white);
|
|
border-radius: 20px;
|
|
font-size: 20px;
|
|
line-height: 24px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.diet a:hover {
|
|
background: var(--interface_title);
|
|
color: var(--main_white)
|
|
}
|
|
/* Diet end */
|
|
|
|
/* Texts */
|
|
.texts {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
}
|
|
|
|
.texts h2 {
|
|
font-size: 36px;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
color: var(--grey-black);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.texts h3 {
|
|
font-size: 24px;
|
|
line-height: 28px;
|
|
font-weight: bold;
|
|
color: var(--grey-black);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.texts-description {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
}
|
|
|
|
.texts-description p {
|
|
color: var(--grey-black);
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.texts-description a {
|
|
display: inline;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.texts ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
color: #191919;
|
|
}
|
|
|
|
.texts ol li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.texts ol h4 {
|
|
background: var(--accent-1);
|
|
border-radius: 5.2px;
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
color: white;
|
|
}
|
|
|
|
.texts ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.texts ul li {
|
|
padding-left: 22px;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: #191919;
|
|
position: relative;
|
|
}
|
|
|
|
.texts ul li::before {
|
|
content: "";
|
|
width: 10px;
|
|
height: 10px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
background: var(--accent-1);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.texts-swp {
|
|
position: relative;
|
|
}
|
|
|
|
.texts-swp__prev {
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
left: 10px;
|
|
background: var(--main_white);
|
|
width: 56px;
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.texts-swp__next {
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 10px;
|
|
background: var(--main_white);
|
|
width: 56px;
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.texts-swp .swiper-slide img {
|
|
height: 517px;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.texts-swp .swiper-slide:not(.swiper-slide-active) {
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.texts-swp__pagination {
|
|
position: absolute;
|
|
top: auto !important;
|
|
bottom: 20px !important;
|
|
right: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 2;
|
|
gap: 11px;
|
|
}
|
|
|
|
.texts-swp__pagination span {
|
|
opacity: 0.5;
|
|
background: var(--main_white);
|
|
width: 40px;
|
|
height: 6px;
|
|
border-radius: 6px;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.texts-swp__pagination span.swiper-pagination-bullet-active {
|
|
opacity: 1;
|
|
}
|
|
/* Texts end */
|
|
|
|
/* Alerts */
|
|
.alerts {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
margin: 48px 0;
|
|
}
|
|
|
|
.alerts-grey {
|
|
padding: 32px 98px;
|
|
border-radius: 32px;
|
|
background: var(--bg-light-grey);
|
|
position: relative;
|
|
}
|
|
|
|
.alerts-grey p {
|
|
color: #191919;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
}
|
|
|
|
.alerts-grey .icon-1 {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 32px;
|
|
}
|
|
|
|
.alerts-grey .icon-2 {
|
|
position: absolute;
|
|
bottom: 32px;
|
|
right: 32px;
|
|
}
|
|
|
|
.alerts-violet {
|
|
background: #FAEAE9;
|
|
border-radius: 32px;
|
|
padding: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.alerts-violet img {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.alerts-violet p {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: #191919;
|
|
}
|
|
|
|
.alerts-yellow {
|
|
display: flex;
|
|
align-items: center;
|
|
background: #FEF8E6;
|
|
border-radius: 32px;
|
|
padding: 32px;
|
|
gap: 32px;
|
|
}
|
|
|
|
.alerts-yellow img {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.alerts-yellow p {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
color: #191919;
|
|
}
|
|
|
|
.alerts-green {
|
|
background: #E9F8EB;
|
|
border-radius: 32px;
|
|
padding: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.alerts-green img {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.alerts-green p {
|
|
color: #191919;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
}
|
|
/* Alerts end */
|
|
|
|
/* Article table */
|
|
.article-table__wrap {
|
|
background: var(--accent-3);
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
padding: 2px;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.article-table {
|
|
background: var(--main_white);
|
|
border-radius: 22px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 18px;
|
|
}
|
|
|
|
.article-table__item {
|
|
display: flex;
|
|
width: calc(100% / 3 - 36px / 3);
|
|
align-items: stretch;
|
|
border: 1px solid #E1E1E1;
|
|
text-align: center;
|
|
font-size: 20px;
|
|
line-height: 24px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.article-table__item ul {
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.article-table__item li {
|
|
padding: 8px;
|
|
}
|
|
|
|
.article-table__item li:not(:last-child) {
|
|
border-bottom: 1px solid #E1E1E1;
|
|
}
|
|
|
|
.article-table__item li:first-child {
|
|
background: #E1E1E1;
|
|
}
|
|
|
|
.article-table__item ul:first-child li:first-child {
|
|
border-right: 1px solid var(--main_white);
|
|
}
|
|
|
|
.article-table__item ul:not(:last-child) li {
|
|
border-right: 1px solid #E1E1E1;
|
|
}
|
|
/* Article table end */
|
|
|
|
/* Article block */
|
|
.article-block__head {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
margin-bottom: 48px;
|
|
gap: 30px;
|
|
}
|
|
|
|
.article-block__head-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 23px;
|
|
}
|
|
|
|
.article-block__head-left h3 {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
left: 28px;
|
|
text-transform: uppercase;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.article-block__head-left p {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.article-block__head-right img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.article-block__item-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 72px;
|
|
}
|
|
|
|
.article-block__item {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: space-between;
|
|
gap: 32px;
|
|
}
|
|
|
|
.article-block__item-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
gap: 23px;
|
|
}
|
|
|
|
.article-block__item-content h3 {
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.article-block__item-content p {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.article-block__item-content ul {
|
|
width: 100%;
|
|
background: var(--bg-light-grey);
|
|
border-radius: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 20px;
|
|
gap: 24px;
|
|
}
|
|
|
|
.article-block__item-content ul li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
font-size: 20px;
|
|
line-height: 24px;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.article-block__item-content ul li img {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.article-block__item-img {
|
|
width: 315px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.article-block__item-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: 50px;
|
|
}
|
|
/* Article block end */
|
|
|
|
/* Block accent */
|
|
.block-accent {
|
|
margin: 48px 0 100px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
}
|
|
|
|
.block-accent__card {
|
|
padding: 36px 63px 36px 49px;
|
|
border-radius: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 32px;
|
|
width: 100%;
|
|
}
|
|
|
|
.block-accent .card-violet {
|
|
flex-direction: row-reverse;
|
|
background: var(--violet_90);
|
|
}
|
|
|
|
.block-accent__card-content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 21px;
|
|
}
|
|
|
|
.block-accent__card h3 {
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
color: var(--grey-black);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.block-accent__card p {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.block-accent__card img {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.block-accent .card-orange {
|
|
background: var(--orange_80);
|
|
}
|
|
|
|
.block-accent .card-blue {
|
|
background: #E0FDFF;
|
|
}
|
|
/* Block accent end */
|
|
|
|
/* Indent */
|
|
.indent {
|
|
background: #E2F3FF;
|
|
border-radius: 32px;
|
|
padding: 36px 49px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.indent ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
}
|
|
|
|
.indent-title {
|
|
max-width: 661px;
|
|
font-size: 36px;
|
|
line-height: 40px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.indent p {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 500;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.indent li {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
}
|
|
|
|
.indent li h3 {
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: var(--grey-black);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.indent li img {
|
|
flex-shrink: 0;
|
|
}
|
|
/* Indent end */
|
|
|
|
/* Product card */
|
|
.product-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 50px;
|
|
justify-content: center;
|
|
background: var(--blue_90);
|
|
padding: 32px;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.product-card img {
|
|
max-width: 740px;
|
|
max-height: 512px;
|
|
}
|
|
/* Product card end */
|
|
|
|
/* block_lists */
|
|
.block-lists {
|
|
margin: 48px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 48px;
|
|
}
|
|
|
|
.block-list_block {
|
|
display: flex;
|
|
align-items: start;
|
|
gap: 25px;
|
|
}
|
|
|
|
.block-list_block img {
|
|
width: 145px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.block-list_block h3 {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
line-height: 28px;
|
|
color: var(--main_black);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.block-list_block p {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: var(--main_black);
|
|
}
|
|
/* block_lists */
|
|
|
|
/* comment */
|
|
.comment {
|
|
border-top: 1px solid var(--placeholder);
|
|
padding-top: 48px;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.comment .comment-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.comment .comment-btn button {
|
|
padding: 12px 24px;
|
|
border-radius: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
background: var(--btn-bg);
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
font-family: var(--font-craftwork);
|
|
}
|
|
|
|
.comment .comment-btn span {
|
|
font-family: var(--font-craftwork);
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.comment .comment-title {
|
|
font-family: var(--font-craftwork);
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
line-height: 28px;
|
|
color: var(--grey-black);
|
|
margin: 48px 0 0 0;
|
|
}
|
|
|
|
.comment .comment-in {
|
|
max-width: 816px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.comment .comment-block {
|
|
margin-top: 40px;
|
|
padding: 28px 48px;
|
|
border-radius: 24px;
|
|
background: var(--grey-f5);
|
|
}
|
|
|
|
.comment .comment-block p {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: var(--grey-black);
|
|
}
|
|
|
|
.comment .comment-block p a {
|
|
color: var(--green-dark);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.comment .comment-user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.comment .comment-user img {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.comment .comment-user h6 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
line-height: 24px;
|
|
color: var(---main_black);
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.comment .comment-user span {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
color: var(--interface_hover);
|
|
}
|
|
|
|
.comment .comment-block p {
|
|
margin: 15px 0;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
color: var(---main_black);
|
|
}
|
|
|
|
.comment .comment-btns {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 33px;
|
|
}
|
|
|
|
.comment .comment-btns button {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 16px;
|
|
color: var(--interface_hover);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.comment .answer-btn {
|
|
margin-bottom: 10px;
|
|
font-family: var(--font-craftwork);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
line-height: 20px;
|
|
color: var(--green-dark);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 24px;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.comment .answer-btn svg {
|
|
transition: .2s ease;
|
|
}
|
|
|
|
.comment .answer-btn svg.active {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.comment .answer-block {
|
|
display: none;
|
|
margin: 0 0 0 54px;
|
|
}
|
|
|
|
.comment .answer-block.active {
|
|
display: block;
|
|
}
|
|
|
|
.comment .comment-block_text {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.video_block {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.other-home {
|
|
padding-top: 36px !important;
|
|
}
|
|
/* comment */
|
|
|