@charset "utf-8";

body {
    background: #f8f8f8;
}

.nav-box {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
}

.nav-box ul {
    width: 1220px;
    overflow: hidden;
    zoom: 1;
}

.nav-box ul li {
    width: 100px;
    margin: 0 20px 20px 0;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    line-height: 36px;
    height: 36px;
    float: left;
    box-shadow: 0 0 8px #ddd;
    background: #fff;
    box-sizing: border-box;
}

.nav-box ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
}

.nav-box ul li a:hover,
.nav-box ul li.on a {
    border-color: #01a0e2;
    background: #01a0e2;
    color: #fff;
}

.applist-box {
    width: 1200px;
    background: #fff;
    margin: 0 auto;
    padding: 0;
    box-sizing: content-box;
}

.applist-box > ul {
    padding-bottom: 10px;
    overflow: hidden;
    zoom: 1;
}

.applist-box > ul > li {
    float: left;
    width: 172px;
    height: 252px;
    margin: 28px 8px 10px 18px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.applist-img {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px auto 0;
}

.applist-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.applist-tit {
    text-align: center;
    width: 110px;
    height: 35px;
    line-height: 35px;
    display: block;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 auto;
}

.applist-time {
    height: 29px;
    font-size: 13px;
    color: #b8b8b8;
    line-height: 29px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
}

.applist-label {
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 13px;
    text-align: center;
    margin: 0 auto;
    background: #ecf6ff;
    color: #959494;
    white-space: nowrap;
    overflow: hidden;
}

.applist-label span {
    padding: 0 3px;
}

.applist-load {
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    margin: 0 auto;
    background: #01a0e2;
    font-size: 16px;
    color: #fff;
    display: none;
}

.applist-box > ul > li:hover .applist-label {
    display: none;
}

.applist-box > ul > li:hover .applist-load {
    display: block;
}

.applist-load:hover {
    color: #fff !important;
    font-weight: 700;
}

.search-heading {
    padding: 18px 20px 0;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-box {
        margin-bottom: 12px;
    }

    .nav-box ul {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-box ul li {
        width: auto;
        float: none;
        margin: 0;
        font-size: 14px;
    }

    .applist-box {
        width: auto;
        margin-left: 12px;
        margin-right: 12px;
        padding: 12px;
        box-sizing: border-box;
    }

    .applist-box > ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-bottom: 0;
    }

    .applist-box > ul > li {
        float: none;
        width: auto;
        height: 238px;
        min-height: 0;
        margin: 0;
    }

    .applist-img {
        width: 94px;
        height: 94px;
        margin-top: 16px;
    }

    .applist-tit {
        width: calc(100% - 18px);
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .applist-time {
        width: calc(100% - 10px);
        font-size: 11px;
    }

    .applist-label {
        height: 38px;
        line-height: 38px;
        font-size: 12px;
    }

    .applist-load {
        display: block;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .applist-box > ul > li:hover .applist-label {
        display: block;
    }
}
