<style>
.teaser-ad {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
margin-bottom: 12px;
}
.teaser-ad__link {
color: #ba3143;
text-decoration: none;
-webkit-transition: color .4s ease;
-moz-transition: color .4s ease;
-o-transition: color .4s ease;
text-decoration: none;
}
.teaser-ad__header {
display: inline;
font-size: 15px;
text-transform: uppercase;
line-height: 1.042;
margin: 0;
margin-bottom: 0px;
text-align: left;
margin-bottom: 12px;
text-shadow: none;
color: #6576ff;
font-weight: 500;
border-bottom: 1px dotted #526484;
}
.teaser-ad__text {
font-size: 14px;
line-height: 1.2;
color: #526484;
margin: 0;
word-break: break-word;
}
.teaser-ad__url {
color: #47a447;
margin: 0;
word-break: break-word;
font-size: 13px;
}
.teaser-ad__footer a {
background-color: #fbbc06;
color: #2A3038;
display: block;
text-align: center;
margin-top: 10px;
text-decoration: none;
font-size: 13px;
}
.bm_btn_go {
font-size: 14px;
line-height: 14px;
color: #7e8299;
border: 1px solid #7e8299;
border-radius: 3px;
padding: 8px 20px;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
display: inline-block;
}
.nk-cov {
/*border: 1px solid #dbdfea;**/
border-radius: 8px;
padding: 1.25rem 1.25rem;
width: 260px;
height: 100%;
}
</style>
<br>
<div class="teaser-ad" style="
/*background: #transparent;*/
">
<div class="teaser-ad__inner">
<?
$cont = $db->query("SELECT * FROM `db_teaser` WHERE `id` > 0 AND status = '1' ")->numRows();
if($cont >= 1) {
$con = $db->query("SELECT * FROM db_teaser WHERE views > 0 AND status = '1' ORDER BY RAND() LIMIT 1")->FetchAll();
foreach ($con as $row1){
?>
<section class="teaser-ad__row nk-cov">
<a class="teaser-ad__link" href="/go-teaser/<?=$row1['id']?>" target="_blank">
<img src="<?=$row1['urlbanners']?>" style="width:198px; height:184px;" alt="" >
<br><br>
<h2 class="teaser-ad__header"><?=$row1['name_teaser']?></h2>
<br><p class="teaser-ad__text"><?=$row1['subtitle_teaser']?></p>
<br><div class="bm_btn_go">Перейти на сайт</div> <a href="/user/teaser" style="font-size: 16px" class="bm_btn_go">+</a>
</a>
</section>
<br>
<?php
}
}
else {
echo '<tr><td colspan="4">Реклама не размещена</td></tr>';
}
?>
</div>