.category {
    padding: 30px 157px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

a {
    text-decoration: none;
    color: unset;
}

.category .c-item {
    background-color: #f0f1f3;
    width: 140px;
    padding: 10px 0;
    border-radius: 4px;
    text-align: center;
    font-size: 19px;
    position: relative;
    overflow: hidden;
}

.category .c-item-active {
    background-color: #fcf0ef;
    color: #ff5c19;
}

.category .c-item-active:before {
    content: "HOT";
    position: absolute;
    top: -8px;
    right: -26px;
    z-index: 1;
    padding: 14px 22px 2px;
    background-color: #ff5c19;
    transform: rotate(45deg);
    font-size: 8px;
    color: white;

}

.module1 {
    padding: 30px 157px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
