.loader {
    width: 250px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: helvetica, arial, sans-serif;
    font-weight: 900;
    color: #f1404b;
    letter-spacing: 0.2em
}

.loader::before,
.loader::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #f1404b;
    position: absolute;
    animation: load .7s infinite alternate ease-in-out
}

.loader::before {
    top: 0
}

.loader::after {
    bottom: 0
}

@keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px
    }

    50% {
        height: 8px;
        width: 40px
    }

    100% {
        left: 235px;
        height: 30px;
        width: 15px
    }
}

.app-list .url-card .url-img,
.app-nav-list-box .url-card .url-img,
.list-box .card-img-top {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.app-list .card,
.app-nav-list-box .card {
    margin-bottom: unset;
}

.app-list .url-card .card-body,
.app-nav-list-box .url-card .card-body {
    padding: unset;
    text-align: center;
}

.list-box .text-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.good-box .text-desc,
.recommend-box .text-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}


@media screen and (max-width:575.98px) {

    .app-list .url-card .card-body,
    .app-nav-list-box .url-card .card-body {
        padding: 0.1rem;
    }

    .banner-box {
        max-height: 200px;
    }

    .app-list .col-6,
    .app-nav-list-box .col-6,
    .app-nav-list-box .col-sm-6 {
        padding: 0 0.2rem;
    }
}

.txt-dot {
    color: #f60;
}

.more-info {
    margin-top: 3rem;
    width: 100%;
    align-items: center;
    text-align: center;
    font-weight: 300;
}

.hot-list {
    list-style-type: none;
    counter-reset: sectioncounter;
}

.hot-list li::before {
    content: counter(sectioncounter) "、";
    counter-increment: sectioncounter;
}

.guest-tag-list {
    max-height: 300px;
    overflow-y: scroll;
}

.banner-box {
    max-height: 400px;
}

.banner-box img {
    width: 100%;
    object-fit: cover;
}

.detail-box .text-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.detail-box img {
    width: 40px;
    height: 40px;
}

.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eee;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
    border-left-color: #5bc0de;
    background-color: rgba(255, 255, 255, 0.8);
}

.guest-words {
    width: 100%;
    overflow-x: auto;
}

.s-search .s-type {
    width: 100%;
    overflow: hidden;
}

.app-list .card,
.app-nav-list-box .card {
    /* background: unset; */
}

.app-list .card-img-top,
.app-nav-list-box .card-img-top {
    border-radius: .5rem;
    /* border-top-right-radius: .5rem; */
}

.app-list .card-body,
.app-nav-list-box .card-body {
    background: white;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

@media screen and (min-width: 769px) {
            .bottom-banner {
                display: none !important;
            }
        }
        
        .bottom-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            height: 50px;
            width: 100%;
            background: #f0f0f0; /* 不透明背景，浅灰色 */
            display: flex;
            justify-content: space-between;
            padding: 0 0px;
        }
        
        .banner-item {
            display: flex;
            align-items: center;
            text-align: center;
            flex: 1;
            margin: 0 5px; /* 图片之间的间隔 */
        }
        
        .banner-item img {
            width: 15px; /* 小图标的宽度 */
            height: auto;
            margin-right: 0px; /* 图标与文字之间的间隔 */
            border-radius: 12px;
        }
        
        .banner-item span {
            font-size: 18px; /* 放大文字大小 */
            font-weight: bold; /* 加粗文字 */
            color: #333; /* 文字颜色 */
        }