/* 分类快 */
:root {
    --img-min: 60px;
    --img-max: 180px;
    --img-scale: 14vw;
}

.tag_box_container {
    width: 100%;
    position: relative;
    top: -93px;
    margin-bottom: -40px;
}

.tag_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    /* height: 240px; */
    background-color: #fff;
    box-shadow: 0px 2px 10px 5px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.tag_item {
    padding: 24px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    width: 240px;
    height: 100%;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05);
}

.tag_item:hover {
    background-color: #1663b3;
    color: #fff;
}

.img_box {
    width: 100%;
    /* height: 156px; */
    text-align: center;
    margin-bottom: 16px;

}

.img_title_box {
    text-align: center;
    /* padding: 24px 12px 12px 12px; */
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
}

/* 点击高亮样式 */
.tag_item_img_border_box {
    /* padding: 34px; */
    width: 100%;
    /* height: 156px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag_item_img_border_box1 {
    width: 100%;
    /* height: 156px; */
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.tag_item_img {
    width: 80px;
    height: 80px;
}

.tag_item_img1 {
    width: 80px;
    height: 80px;
    display: none;
}

.tag_item:hover .tag_item_img_border_box {
    width: 100%;
    /* height: 156px; */
    display: none;
    text-align: center;
}

.tag_item:hover .tag_item_img1 {
    width: 80px;
    height: 80px;
    display: block;
}

.tag_item:hover .tag_item_img_border_box1 {
    width: 100%;
    /* height: 156px; */
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .content-overlay {
        position: static;
        height: auto;
        transform: none !important;
        padding-top: 0;
        pointer-events: auto;
    }


    .tag_box {
        /* width: 100%; */
        padding: 0 0.6rem;
        flex-wrap: wrap;
        /* align-items: flex-start; */
        /* justify-content: center; */
    }

    .tag_item_img_border_box,
    .tag_item_img_border_box1 {
        width: clamp(var(--img-min), var(--img-scale), var(--img-max));
        height: clamp(var(--img-min), var(--img-scale), var(--img-max));
        padding: 0px;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }

    .img_box {
        width: auto;
        height: clamp(var(--img-min), var(--img-scale), var(--img-max));
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 0px;
    }

    .tag_item_img {
        width: 45px;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .tag_item_img1 {
        width: 6vw;
        height: 6vw;
    }

    .tag_item:hover .tag_item_img_border_box1 {
        width: clamp(var(--img-min), var(--img-scale), var(--img-max));
        height: clamp(var(--img-min), var(--img-scale), var(--img-max));
        padding: 0px;
        box-sizing: border-box;
        text-align: center;
        position: relative;
    }

    .tag_item:hover .tag_item_img1 {
        width: 6vw;
        height: 6vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .img_title_box {
        font-size: 14px;
        font-weight: 500;
        padding: 1vw;
        text-align: center;
    }



    .right_nav_box,
    .right_nav_box1 {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .tag_item {
        padding: 10px;
        width: 33%;
        height: auto;
    }

    .tag_box_container {
        width: 100%;
        position: relative;
        top: 15px;
        padding: 0 15px;
        margin-bottom: 24px;
    }
}