.experss_box {
    padding-left: 25px;
    box-sizing: border-box;
}

.hot {
    padding-left: 25px;
    position: relative;
    font-weight: bold;
    color: var(--bgbox);
    font-size: 18px;
}

.hot::before {
    content: "";
    width: 17.65px;
    height: 24px;
    background: url('../assets/hot.png')no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 3px;
}

.hot_ul {
    margin-bottom: 20px;
}

.hot_ul li {
    /* max-height: 57px; */
    align-items: center;

}

.hot_ul li a {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(170, 170, 170, 1);
    padding: 10px 0;
    box-sizing: border-box;
    margin-left: 12px;
}

.hot_ul li:last-child a {
    border: 0;
}

.hot_ul li:nth-child(1) .hot_title {
    font-weight: bold;
}

.hot_ul li:nth-child(2) .hot_title {
    font-weight: bold;
}

.hot_ul li:nth-child(3) .hot_title {
    font-weight: bold;
}

.hot_ul li:nth-child(1) .hot_index {
    color: var(--bgbox);
    font-weight: bold;

}

.hot_ul li:nth-child(2) .hot_index {
    color: var(--bgbox);
    font-weight: bold;


}

.hot_ul li:nth-child(3) .hot_index {
    color: var(--bgbox);
    font-weight: bold;
}

.hot_index {
    display: block;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
}

.hot_title {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
}

.hot_title:hover {
    color: var(--bgbox);
}

@media screen and (max-width:768px) {
    .hot_index {
        font-size: 16px;
    }

    .experss_box {
        padding: 0;
        box-sizing: border-box;
    }

    .hot {
        padding: 10px 10px 10px 25px;
        box-sizing: border-box;
        position: relative;
        font-weight: bold;
        color: var(--bgbox);
        font-size: 16px;
    }

    .hot::before {
        content: "";
        width: 17.65px;
        height: 24px;
        background: url('../assets/hot.png')no-repeat;
        background-size: 100%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .hot_title {
        color: rgba(51, 51, 51, 1);
        font-size: 14px;
    }
}