* {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
}


@media screen and (min-width: 768px) {
    body {
        background-color: #F6F7FA;
        min-width: 1400px;
    }

    .b {
        width: 1400px;
        margin: 0 auto;
    }

    .tran {
        transition: all 0.4s ease;
        cursor: pointer;

        &:hover {
            transform: scale(110%);
        }
    }
}

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

a {
    text-decoration: none;
    /* 取消下划线 */
    color: #333;
    /* 修改链接颜色为深灰色 */
}

.pagination {
    display: flex;
    gap: 5px;
    align-items: center;

    li {
        width: 41px;
        height: 41px;
        background-color: #F1F1F1;
        text-align: center;
        line-height: 41px;
        border-radius: 8px;
        cursor: pointer;
    }

    .active {
        background-color: #7545E8;
        color: #fff !important;
    }
    /*.disabled{*/
    /*    background-color: #9065ff;*/
    /*}*/
}



input,
select,
textarea {
    outline: none;
}

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