
.adlists{
    margin-top:50px;
}
.adlists .row{
    margin-bottom:50px;
}
.adlists .btn-ad-row{
    width:100%;
    display: flex;
    gap:5px;
}
@media screen and (max-width: 600px) {
    .adlists .btn-ad-sm{
    }
}


.adlists .link{
}
.adlists .item{
    width:100%;
    display: flex;
    position:relative;
}
.adlists .item:after {
    font-size:1.2rem;
    position:absolute;
    right:0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-family: FontAwesome;
    content: "\f105";
    color:#666;
}


.adlists .thumb{
    width:120px;
    margin-right:15px;
}
.adlists .likebox{
    display: flex;
    justify-content: center;
}
.adlists .likebox .num{
    width:100%;
    margin-right:15px;
    margin-top:5px;
    background-color:#eee;
    border-radius: 0px;
    font-size:0.7rem;
    padding:4px;
    text-align:center;
    font-weight:bold;
}

.adlists .thumb img{
    width:100%;
    border-radius: 0px;
    border:0px #ccc solid;
}

.adlists a.link{
    display: block;
    text-decoration:none;
    color:#444;
}

.adlists .info{
    padding-right:20px;
}
.adlists .info .title{
    font-size:1.1rem;
    font-weight:bold;
    color:#0000ff;
    text-decoration:underline;
    margin:0;
}
.adlists .info .title .fa{
    font-size:0.9rem;
}
.adlists .url{
    font-size:0.7rem;
    color:#0d72b2;
}
.adlists .info .tags{
    margin-top:10px;
    display: flex;
    flex-wrap:wrap;
    gap:3px 3px;
}
.adlists .info .tags .tag{
    font-size:0.7rem;
    background-color:#555;
    color:#fff;
    padding:3px 8px;
    border-radius: 0px;
}

@media screen and (max-width: 600px) {
    .adlists .thumb{
        width:100px;
    }
    .adlists .likebox .num{
        padding:2px;
    }
    .adlists .info .tags .tag{
        padding:2px 5px;
    }
}
@media screen and (max-width: 500px) {
    .adlists .thumb{
        width:80px;
    }
    .adlists .info .tags .tag{
        font-size:0.5rem;
        line-height:100%;
    }
    .adlists .info .tags .tag{
        padding:2px 2px;
    }
}




/* btn-ad-sm */
a.btn-ad-sm {
    box-sizing: border-box;
    width:100%;
    display: block;
    text-align: center;
    border-radius: 10px;
    font-size:1.2rem;
    color: #fff;
    background-color: #e53935;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);

    border-bottom: 5px solid #c62828;
    padding:10px 20px 10px 20px;
    text-decoration: none;
    font-weight:bold;
    position:relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
a.btn-ad-sm::after {
    font-family:'FontAwesome';
    content: "\f105";
    position:absolute;
    right:20px;
    top:50%;
    transform: translateY(-50%) translateX(0);
    -webkit-transform: translateY(-50%) translateX(0);
}
a.btn-ad-sm:hover {
    background-color: #b71c1c;
    color:#ffffff;
}
a.btn-ad-sm:visited {
    color:#fff;
}
a.btn-ad-sm.site {
    background-color: #ff6f00;
    border-bottom: 5px solid #d84315;
}
a.btn-ad-sm.site:hover {
    background-color: #f57f17;
}
a.btn-ad-sm.page {
    background-color: #f1f1f1;
    color:#444;
    border:2px solid #444;
    border-bottom: 5px solid #444;
}
a.btn-ad-sm.page:visited {
    color:#444;
}
a.btn-ad-sm.page:hover {
    background-color: #ccc;
}

@media only screen and (max-width: 500px) {
    a.btn-ad-sm {
        font-size:1.1rem;
    }
}
