SEO updates

This commit is contained in:
merelendor 2022-12-02 06:22:35 +03:00
parent 522d24869b
commit f3eb9e6302
11 changed files with 239 additions and 102 deletions

View File

@ -54,18 +54,29 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
$arResult['SELECTED']['SORT'] = $arParams['SORT'];
}
$filter = Array("ACTIVE" => "Y", "IBLOCK_ID" => 1);
$filter = Array("ACTIVE" => "Y", "IBLOCK_ID" => IBLOCK_ID_CATALOG_CARS_NEW);
$options = Array("nPageSize" => !empty($arParams['COUNT_PER_PAGE']) ? $arParams['COUNT_PER_PAGE'] : 15);
$pages_url = $arParams['PATH'];
$arResult['BRAND_DISABLED'] = true;
$arResult['MODEL_DISABLED'] = true;
$arResult['EXTENDED'] = false;
$arResult['BY_OPTIONS'] = false;
$arResult['FILTER_SMALL'] = $arParams['FILTER_SMALL'] ? true : false;
$arResult['SHOW_BRANDS_LIST'] = true;
$arResult['SHOW_MODELS_LIST'] = false;
if(empty($arParams['PROGRAM']))
{
$arResult['SHOW_SPECIAL_OFFERS'] = true;
$arResult['SHOW_PROMO_BRANDS'] = true;
}
if(!empty($arParams['BRAND']))
{
$brands_res = CIBlockElement::GetList(["NAME" => "ASC"], ["ACTIVE" => "Y", "IBLOCK_ID" => 8, "CODE" => $arParams['BRAND']], false, []);
$brands_res = CIBlockElement::GetList(["NAME" => "ASC"], ["IBLOCK_ID" => IBLOCK_ID_BRANDS, "CODE" => $arParams['BRAND']], false, []);
while ($brands_ob_element = $brands_res->GetNextElement())
{
$brands_ar_res = $brands_ob_element->GetFields();
@ -79,6 +90,20 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
$arResult['TITLES']['BRAND'] = $brands_ar_res['NAME'];
$arResult['TITLES']['TRANSCRIPTION'] = $brands_ar_res['PROPERTIES']['TRANSCRIPTION']['VALUE'];
if($brands_ar_res['ACTIVE'] === "Y")
{
$arResult['BRAND_DISABLED'] = false;
$arResult['SHOW_BRANDS_LIST'] = false;
$arResult['SHOW_MODELS_LIST'] = true;
$arResult['MODEL_DISABLED'] = false;
}
else
{
$arResult['SHOW_MODELS_LIST'] = false;
}
$arResult['SHOW_PROMO_BRANDS'] = false;
$APPLICATION->AddChainItem($brands_ar_res['NAME'], "https://".SITE_SERVER_NAME."/catalog/".$arResult['SELECTED']['BRAND']."/");
}
@ -94,7 +119,7 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
if(!empty($arParams['MODEL']))
{
$models_res = CIBlockElement::GetList(["NAME" => "ASC"], ["ACTIVE" => "Y", "IBLOCK_ID" => 9, "CODE" => $arParams['MODEL']], false, []);
$models_res = CIBlockElement::GetList(["NAME" => "ASC"], ["IBLOCK_ID" => IBLOCK_ID_MODELS, "CODE" => $arParams['MODEL'], "PROPERTY_BRAND_UID" => $arResult['SELECTED']['BRAND_UID']], false, []);
while ($models_ob_element = $models_res->GetNextElement())
{
$models_ar_res = $models_ob_element->GetFields();
@ -103,6 +128,17 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
$arResult['SELECTED']['MODEL'] = $models_ar_res['CODE'];
$arResult['TITLES']['MODEL'] = $models_ar_res['NAME'];
if($models_ar_res['ACTIVE'] === "Y")
{
$arResult['MODEL_DISABLED'] = false;
$arResult['SHOW_MODELS_LIST'] = false;
}
else
{
$arResult['MODEL_DISABLED'] = true;
$arResult['SHOW_PROMO_BRANDS'] = false;
}
$APPLICATION->AddChainItem($models_ar_res['NAME'], "https://".SITE_SERVER_NAME."/catalog/".$arResult['SELECTED']['BRAND']."/".$arResult['SELECTED']['MODEL']."/");
}
@ -294,71 +330,102 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
$filter['PROPERTY_LEASING_PROGRAMS'] = $arParams["leasing_program"];
}
if(empty($arParams['PROGRAM']))
{
$arResult['SHOW_SPECIAL_OFFERS'] = true;
$arResult['SHOW_PROMO_BRANDS'] = true;
}
if(!empty($arParams['BRAND']))
{
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_BRANDS'] = true;
if($arResult['BRAND_DISABLED'])
{
$arResult['SHOW_PROMO_BRANDS'] = false;
}
}
if(!empty($arParams['BRAND']) && empty($arParams['MODEL']))
{
$arResult['SHOW_PROMO_MODELS'] = true;
if($arResult['BRAND_DISABLED'])
{
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_MODELS'] = false;
}
if($arResult['MODEL_DISABLED'])
{
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_MODELS'] = false;
}
}
if(!empty($arParams['BRAND']) && !empty($arParams['MODEL']))
{
if($arResult['MODEL_DISABLED'])
{
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_MODELS'] = false;
}
}
if(!empty($arParams['PROGRAM']))
{
$arResult['SHOW_BRANDS_LIST'] = false;
$arResult['SHOW_MODELS_LIST'] = false;
$arResult['BRAND_DISABLED'] = false;
$arResult['MODEL_DISABLED'] = false;
}
if(!empty($arParams['MODEL']) || !empty($arParams['PROGRAM']) || $arResult['BY_OPTIONS'])
{
$arResult['SHOW_SPECIAL_OFFERS'] = false;
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_MODELS'] = false;
$res = CIBlockElement::GetList($sort, $filter, false, $options);
while ($obElement = $res->GetNextElement())
if(!$arResult['BRAND_DISABLED'] && !$arResult['MODEL_DISABLED'])
{
$ar_res = $obElement->GetFields();
$ar_res['PROPERTIES'] = $obElement->GetProperties();
$ar_res['PROPERTIES']['BRAND']['RELATED'] = get_related(8, $ar_res['PROPERTIES']['BRAND']['VALUE']);
$ar_res['PROPERTIES']['MODEL']['RELATED'] = get_related(9, $ar_res['PROPERTIES']['MODEL']['VALUE']);
$ar_res['PROPERTIES']['MODIFICATION']['RELATED'] = get_related(10, $ar_res['PROPERTIES']['MODIFICATION']['VALUE']);
$arResult['SHOW_SPECIAL_OFFERS'] = false;
$arResult['SHOW_PROMO_BRANDS'] = false;
$arResult['SHOW_PROMO_MODELS'] = false;
$ar_res['CALCULATION'] = [];
$ar_res['CALCULATION']['MONTHLY'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 10), 0, ".", " ");
$ar_res['CALCULATION']['SAVINGS_TAX'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 4), 0, ".", " ");
$ar_res['CALCULATION']['SAVINGS_VAT'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 4), 0, ".", " ");
$res = CIBlockElement::GetList($sort, $filter, false, $options);
//print "<!-- ".$ar_res['ID']."-->\n";
//print "<!-- ";
//print_r($ar_res['PROPERTIES']);
//print "-->\n\n\n";
/*
if(isset($ar_res['PREVIEW_PICTURE']))
while ($obElement = $res->GetNextElement())
{
$ar_res['PREVIEW_PICTURE_SRC'] = get_image_path($ar_res['PREVIEW_PICTURE']);
}
$ar_res = $obElement->GetFields();
$ar_res['PROPERTIES'] = $obElement->GetProperties();
$ar_res['PROPERTIES']['BRAND']['RELATED'] = get_related(8, $ar_res['PROPERTIES']['BRAND']['VALUE']);
$ar_res['PROPERTIES']['MODEL']['RELATED'] = get_related(9, $ar_res['PROPERTIES']['MODEL']['VALUE']);
$ar_res['PROPERTIES']['MODIFICATION']['RELATED'] = get_related(10, $ar_res['PROPERTIES']['MODIFICATION']['VALUE']);
if(!empty($ar_res['PROPERTIES']['PHOTO_ICON']['VALUE']))
{
$ar_res['PROPERTIES']['PHOTO_ICON']['SRC'] = get_image_path($ar_res['PROPERTIES']['PHOTO_ICON']['VALUE']);
}
$ar_res['CALCULATION'] = [];
$ar_res['CALCULATION']['MONTHLY'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 10), 0, ".", " ");
$ar_res['CALCULATION']['SAVINGS_TAX'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 4), 0, ".", " ");
$ar_res['CALCULATION']['SAVINGS_VAT'] = number_format((($ar_res['PROPERTIES']['PRICE']['VALUE'] / 100) * 4), 0, ".", " ");
if(!empty($ar_res['PROPERTIES']['CITY']['VALUE']))
{
$ar_res['PROPERTIES']['CITY']['RELATED'] = get_related_array(10, $ar_res['PROPERTIES']['CITY']['VALUE']);
}
//print "<!-- ".$ar_res['ID']."-->\n";
//print "<!-- ";
//print_r($ar_res['PROPERTIES']);
//print "-->\n\n\n";
if(!empty($ar_res['PROPERTIES']['SUBWAY']['VALUE']))
{
$ar_res['PROPERTIES']['SUBWAY']['RELATED'] = get_related_array(12, $ar_res['PROPERTIES']['SUBWAY']['VALUE']);
}
*/
/*
if(isset($ar_res['PREVIEW_PICTURE']))
{
$ar_res['PREVIEW_PICTURE_SRC'] = get_image_path($ar_res['PREVIEW_PICTURE']);
}
$arResult['ITEMS'][] = $ar_res;
if(!empty($ar_res['PROPERTIES']['PHOTO_ICON']['VALUE']))
{
$ar_res['PROPERTIES']['PHOTO_ICON']['SRC'] = get_image_path($ar_res['PROPERTIES']['PHOTO_ICON']['VALUE']);
}
if(!empty($ar_res['PROPERTIES']['CITY']['VALUE']))
{
$ar_res['PROPERTIES']['CITY']['RELATED'] = get_related_array(10, $ar_res['PROPERTIES']['CITY']['VALUE']);
}
if(!empty($ar_res['PROPERTIES']['SUBWAY']['VALUE']))
{
$ar_res['PROPERTIES']['SUBWAY']['RELATED'] = get_related_array(12, $ar_res['PROPERTIES']['SUBWAY']['VALUE']);
}
*/
$arResult['ITEMS'][] = $ar_res;
}
}
}
@ -402,6 +469,24 @@ if($this->StartResultCache(60*60*24, md5(var_export($_POST, true))))
$arResult['PAGE_CURRENT'] = $res->NavPageNomer;
$arResult['PAGE_COUNT'] = $res->NavPageCount;
if($arResult['MODEL_DISABLED'])
{
$arResult['MODEL'] = null;
$arResult['SELECTED']['MODEL'] = null;
$arResult['SELECTED']['MODEL_ID'] = null;
$arResult['SELECTED']['MODEL_UID'] = null;
$arResult['SHOW_SPECIAL_OFFERS'] = false;
}
if($arResult['BRAND_DISABLED'])
{
$arResult['BRAND'] = null;
$arResult['SELECTED']['BRAND'] = null;
$arResult['SELECTED']['BRAND_ID'] = null;
$arResult['SELECTED']['BRAND_UID'] = null;
$arResult['SHOW_SPECIAL_OFFERS'] = false;
}
if(isset($_REQUEST['ajax']))
{
$GLOBALS['APPLICATION']->RestartBuffer();

View File

@ -106,6 +106,15 @@ if(!empty($arResult['TITLES']['MODEL']))
</div>
</div>
<? endif; ?>
<? if($arResult['BRAND_DISABLED'] && $arResult['MODEL_DISABLED']): ?>
<p style="font-size: 18px; line-height: 24px; padding: 10px 40px 40px 0px; border-left: solid 1px white;">Автомобили <b><?= $arResult['TITLES']['BRAND']; ?></b> на данный момент отсутствуют в каталоге, но это не означает, что мы не сможем их для Вас найти. Оставьте <a href="#order">заявку</a> или позвоните по номеру горячей линии <a href="tel:88003337575">8 800 333 75 75</a> и мы найдём Вам автомобиль!</p>
<p style="font-size: 18px; line-height: 24px; padding: 0px 40px 40px 0px; border-left: solid 1px white;">Посмотрите автомобили других марок:</p>
<? else: ?>
<? if($arResult['MODEL_DISABLED']): ?>
<p style="font-size: 18px; line-height: 24px; padding: 10px 40px 40px 0px; border-left: solid 1px white;">Модель <b><?= $arResult['TITLES']['BRAND']; ?> <?= $arResult['TITLES']['MODEL']; ?></b> на данный момент отсутствует в каталоге, но это не означает, что мы не сможем её для Вас найти. Оставьте <a href="#order">заявку</a> или позвоните по номеру горячей линии <a href="tel:88003337575">8 800 333 75 75</a> и мы найдём Вам автомобиль!</p>
<p style="font-size: 18px; line-height: 24px; padding: 0px 40px 40px 0px; border-left: solid 1px white;">Посмотрите другие модели Bentley:</p>
<? endif; ?>
<? endif; ?>
<? if($arResult['SHOW_SPECIAL_OFFERS']): ?>
<? $APPLICATION->IncludeComponent(
@ -225,7 +234,7 @@ if(!empty($arResult['TITLES']['MODEL']))
</div>
</div>
*/ ?>
<? if(!isset($_REQUEST['BRAND'])): ?>
<? if($arResult['SHOW_BRANDS_LIST']): ?>
<? $APPLICATION->IncludeComponent(
"evolution:catalog.brands",
"",
@ -236,7 +245,7 @@ if(!empty($arResult['TITLES']['MODEL']))
)
); ?>
<? endif; ?>
<? if(isset($_REQUEST['BRAND'])): ?>
<? if($arResult['SHOW_MODELS_LIST']): ?>
<? $APPLICATION->IncludeComponent(
"evolution:catalog.models",
"",

View File

@ -10,7 +10,7 @@ var total = undefined;
function formCatalogFilter(p, pr, props)
{
console.log("FILTER", "program", pr);
// console.log("FILTER", "program", pr);
path = p;
selected = props;
current_params = props;
@ -27,7 +27,7 @@ function updateCounter(parameters, reset = false)
{
$(".catalog_filter_select").attr("disabled", true);
console.log("updateCounter", "parameters (selected)", parameters);
// console.log("updateCounter", "parameters (selected)", parameters);
if(!updating)
{
@ -63,23 +63,28 @@ function updateCounter(parameters, reset = false)
var current = $("#filter_brands").val();
$("#filter_brands").empty();
$("#small_filter_brands").empty();
if(!reset && current !== "" && current !== null)
{
$("#filter_brands").append('<option value="">Любая</option>');
$("#small_filter_brands").append('<option value="">Любая</option>');
}
else
{
$("#filter_brands").append('<option value="" disabled="" selected="">Марка</option>');
$("#small_filter_brands").append('<option value="" disabled="" selected="">Марка</option>');
}
for(let i in response.brands)
{
var brand = response.brands[i];
$("#filter_brands").append('<option value="'+brand.value+'" data-id="'+brand.id+'" data-uid="'+brand.uid+'">'+brand.text+'</option>');
$("#small_filter_brands").append('<option value="'+brand.value+'" data-id="'+brand.id+'" data-uid="'+brand.uid+'">'+brand.text+'</option>');
}
$("#filter_brands").val(reset ? "" : current);
$("#small_filter_brands").val(reset ? "" : current);
}
}
@ -88,23 +93,28 @@ function updateCounter(parameters, reset = false)
var current = $("#filter_models").val();
$("#filter_models").empty();
$("#small_filter_models").empty();
if(!reset && current !== "" && current !== null)
{
$("#filter_models").append('<option value="">Любая</option>');
$("#small_filter_models").append('<option value="">Любая</option>');
}
else
{
$("#filter_models").append('<option value="" disabled="" selected="">Модель</option>');
$("#small_filter_models").append('<option value="" disabled="" selected="">Модель</option>');
}
for(let i in response.models)
{
var model = response.models[i];
$("#filter_models").append('<option value="'+model.value+'" data-id="'+model.id+'" data-uid="'+model.uid+'">'+model.text+'</option>');
$("#small_filter_models").append('<option value="'+model.value+'" data-id="'+model.id+'" data-uid="'+model.uid+'">'+model.text+'</option>');
}
$("#filter_models").val(reset ? "" : current);
$("#small_filter_models").val(reset ? "" : current);
}
if(response.modifications !== undefined)
@ -133,11 +143,9 @@ function updateCounter(parameters, reset = false)
if(response.bodies !== undefined)
{
console.log("BODY FROM RESPONSE");
if(response.bodies.length > 0)
{
var current = $("#filter_bodies").val();
console.log("BODY FROM RESPONSE", "current", current);
$("#filter_bodies").empty();
if(!reset && current !== "" && current !== null)
@ -387,7 +395,7 @@ function updateCounter(parameters, reset = false)
function loadModels(uid)
{
console.log("loadModels()", "uid", uid);
// console.log("loadModels()", "uid", uid);
$.post("/api/catalog/models/",
{
@ -447,7 +455,7 @@ function loadModels(uid)
function loadModifications(uid)
{
console.log("loadModifications", uid);
// console.log("loadModifications", uid);
$.post("/api/catalog/modifications/",
{
MODEL_UID: uid
@ -494,7 +502,7 @@ $(function()
params: {},
}, function(response)
{
console.log("selected", selected);
// console.log("selected", selected);
//$("#small_filter_brands").empty();
//$("#small_filter_brands").find("option").first().text("Любая").attr("disabled", false);
//$("#filter_brands").find("option").first().text("Любая").attr("disabled", false);
@ -635,7 +643,9 @@ $(function()
$("#filter_modifications").empty();
$("#filter_modifications").append("<option disabled selected>Модификация</option>");
loadModels(uid);
//console.log("selected", selected);
//loadModels(uid);
updateCounter(selected);
}
});
@ -819,8 +829,8 @@ $(function()
$(".sort_option").on("click", function()
{
console.log("path", path);
console.log("current_params", current_params);
// console.log("path", path);
// console.log("current_params", current_params);
var value = $(this).data("value");
var p = path;

View File

@ -47,6 +47,7 @@ $this->setFrameMode(true);
}
.send_button_spinner_animation div { box-sizing: content-box; }
</style>
<a name="order"></a>
<section id="order">
<div class="container">
<h2 class="section_title">Купить в лизинг?</h2>

View File

@ -47,7 +47,7 @@ $this->setFrameMode(true);
<?
$APPLICATION->IncludeComponent(
"evolution:catalog",
"",
isset($_REQUEST['ajax']) ? "ajax" : "",
array(
"PAGINATION" => "Y",
"leasing_program" => $arResult['PROPERTIES']['CATALOG']['VALUE_XML_ID'],

View File

@ -53,7 +53,7 @@
<svg data-name="Layer 21" height="32" id="Layer_21" viewBox="0 0 24 24" width="32" xmlns="https://www.w3.org/2000/svg"><path fill="#8E94A7" d="M21.54736,7H18.25688a.74281.74281,0,0,0-.65452.39156s-1.31237,2.41693-1.73392,3.231C14.73438,12.8125,14,12.125,14,11.10863V7.60417A1.10417,1.10417,0,0,0,12.89583,6.5h-2.474a1.9818,1.9818,0,0,0-1.751.8125s1.25626-.20312,1.25626,1.48958c0,.41974.02162,1.62723.04132,2.64a.72943.72943,0,0,1-1.273.50431,21.54029,21.54029,0,0,1-2.4982-4.54359A.69314.69314,0,0,0,5.5668,7C4.8532,7,3.42522,7,2.57719,7a.508.508,0,0,0-.47969.68481C3.00529,10.17487,6.91576,18,11.37917,18h1.87865A.74219.74219,0,0,0,14,17.25781V16.12342a.7293.7293,0,0,1,1.22868-.5315l2.24861,2.1127A1.08911,1.08911,0,0,0,18.223,18h2.95281c1.42415,0,1.42415-.98824.64768-1.75294-.54645-.53817-2.51832-2.61663-2.51832-2.61663A1.01862,1.01862,0,0,1,19.2268,12.307c.63737-.83876,1.67988-2.21175,2.122-2.79993C21.95313,8.70313,23.04688,7,21.54736,7Z"/></svg>
</a>
</div>
<p>© ООО "ЛК Эволюция"</p>
<p style="line-height: 18px; padding-bottom: 10px;">© ООО "ЛК Эволюция"<br>г. Москва, Котляковская ул., д. 8</p>
<div>
<a href="/upload/docs/personal_date_policy.pdf" target="_blank">Обработка персональных данных</a>
</div>

View File

@ -400,6 +400,10 @@ input[type="radio"]:disabled + label:before {
}
.pagination {
margin-top: 40px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
@media all and (max-width: 1600px) and (min-width: 1280px) {
.pagination {
@ -427,6 +431,9 @@ input[type="radio"]:disabled + label:before {
padding: 0 5px;
}
@media all and (max-width: 1279px) {
.pagination {
margin-bottom: 50px;
}
.pagination ul {
justify-content: center;
}
@ -440,6 +447,11 @@ input[type="radio"]:disabled + label:before {
font-weight: 600;
}
}
@media all and (max-width: 768px) {
.pagination {
margin-bottom: 30px;
}
}
.image-full {
width: 100%;
margin-bottom: 50px;

View File

@ -448,50 +448,61 @@ input[type="radio"] {
// Pagination
.pagination {
margin-top: 40px;
margin-top: 40px;
@media all and (max-width: 1600px) and (min-width: 1280px) {
margin-top: 20px;
}
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
ul {
display: flex;
align-items: flex-end;
justify-content: flex-end;
@media all and (max-width: 1600px) and (min-width: 1280px) {
margin-top: 20px;
}
li {
font-size: 26px;
line-height: 35px;
color: var(--blue);
ul {
display: flex;
align-items: flex-end;
justify-content: flex-end;
@media all and (max-width: 1600px) and (min-width: 1280px) {
font-size: 20px;
line-height: 30px;
}
li {
font-size: 26px;
line-height: 35px;
color: var(--blue);
a {
display: block;
padding: 0 5px;
}
}
}
@media all and (max-width: 1600px) and (min-width: 1280px) {
font-size: 20px;
line-height: 30px;
}
@media all and (max-width: 1279px) {
ul {
justify-content: center;
a {
display: block;
padding: 0 5px;
}
}
}
li {
font-size: 13px;
line-height: 28px;
min-width: 30px;
@media all and (max-width: 1279px) {
margin-bottom: 50px;
a {
text-align: center;
font-weight: 600;
}
}
}
}
ul {
justify-content: center;
li {
font-size: 13px;
line-height: 28px;
min-width: 30px;
a {
text-align: center;
font-weight: 600;
}
}
}
}
@media all and (max-width: 768px) {
margin-bottom: 30px;
}
}
// Превью изображения

View File

@ -5658,7 +5658,7 @@ main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail ul li
justify-content: center;
padding: 0px;
margin: 0px;
margin-bottom: 100px;
margin-bottom: 50px;
width: 100%;
background: rgba(0, 16, 61, 0.06);
color: var(--blue);
@ -5667,6 +5667,11 @@ main .dropdown_blocks_list .dropdown_block .block_body .transaction_detail ul li
margin: 10px;
font-weight: 600;
}
@media all and (max-width: 768px) {
.catalog_show_more_button {
margin-bottom: 30px;
}
}
.catalog_item_with_button {
margin-bottom: 40px !important;
}

View File

@ -6096,7 +6096,7 @@ main .dropdown_blocks_list .dropdown_block .block_body {
justify-content: center;
padding: 0px;
margin: 0px;
margin-bottom: 100px;
margin-bottom: 50px;
width: 100%;
background: rgba(0, 16, 61, 0.06);
color: var(--blue);
@ -6105,6 +6105,10 @@ main .dropdown_blocks_list .dropdown_block .block_body {
margin: 10px;
font-weight: 600;
}
@media all and (max-width: 768px) {
margin-bottom: 30px;
}
}
.catalog_item_with_button {

View File

@ -67,7 +67,7 @@
<svg data-name="Layer 21" height="32" id="Layer_21" viewBox="0 0 24 24" width="32" xmlns="https://www.w3.org/2000/svg"><path fill="#0077FF" d="M21.54736,7H18.25688a.74281.74281,0,0,0-.65452.39156s-1.31237,2.41693-1.73392,3.231C14.73438,12.8125,14,12.125,14,11.10863V7.60417A1.10417,1.10417,0,0,0,12.89583,6.5h-2.474a1.9818,1.9818,0,0,0-1.751.8125s1.25626-.20312,1.25626,1.48958c0,.41974.02162,1.62723.04132,2.64a.72943.72943,0,0,1-1.273.50431,21.54029,21.54029,0,0,1-2.4982-4.54359A.69314.69314,0,0,0,5.5668,7C4.8532,7,3.42522,7,2.57719,7a.508.508,0,0,0-.47969.68481C3.00529,10.17487,6.91576,18,11.37917,18h1.87865A.74219.74219,0,0,0,14,17.25781V16.12342a.7293.7293,0,0,1,1.22868-.5315l2.24861,2.1127A1.08911,1.08911,0,0,0,18.223,18h2.95281c1.42415,0,1.42415-.98824.64768-1.75294-.54645-.53817-2.51832-2.61663-2.51832-2.61663A1.01862,1.01862,0,0,1,19.2268,12.307c.63737-.83876,1.67988-2.21175,2.122-2.79993C21.95313,8.70313,23.04688,7,21.54736,7Z"/></svg>
</a>
</div>
<p>© ООО "ЛК Эволюция"</p>
<p style="line-height: 18px; padding-bottom: 10px;">© ООО "ЛК Эволюция"<br>г. Москва, Котляковская ул., д. 8</p>
<div>
<a href="/upload/docs/personal_date_policy.pdf" target="_blank">Обработка персональных данных</a>
</div>