.tools-wrap {
    background: #F5F6F8;
    padding-bottom: 80px;
}

.tools-title {
    font-size: 26px;
    font-weight: 500;
    color: #232323;
    text-align: center;
    padding: 64px 0 40px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 68px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
   /*position: sticky;*/
    top: 0;
    left: 0;
    z-index: 999;
}

.tabs a {
    font-size: 15px;
    padding: 15px 28px;
    margin-bottom: -1px;
    cursor: pointer;
    color: #6D6D6D;
}

.tabs a:hover {
    color: #FF5500;
}

.tabs .current {
    color: #FF5500;
    border-bottom: 3px solid #FF5500;
}


.content {
    clear: both;
}

.content .content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5%;
}

.content .content-wrap a {
    width: 25%;
    padding: 20px 0;
    margin-bottom: 1.5%;
    background: #FFFFFF;
    border-radius: 8px;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.2s ease-in-out;
    -moz-transition: All 0.2s ease-in-out;
    -o-transition: All 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.content .content-wrap a:hover {
    transform: translate(0, -5px);
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
}

.content .content-wrap a .title-box {
    font-size: 15px;
    color: #6D6D6D;
    line-height: 24px;
    padding: 0 24px;
}

.content .content-wrap a .title {
    color: #1E1E1E;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .content-wrap a .title img {
    display: block;
    width: 28px;
    height: 28px;
}

.content .content-wrap a .tools-tag {
    display: flex;
    gap: 8px;
    padding: 12px 24px 0 24px;
}

.content .content-wrap a .tools-tag div {
    height: 22px;
    line-height: 22px;
    background: #FFE6D9;
    border-radius: 4px;
    padding: 0 8px;
    font-size: 14px;
    color: #FF5500;
}



@media(max-width:767px) {
    .content .content-wrap {
        display: block;
    }

    .content .content-wrap a {
        width: 100%;
        min-height: auto;
        margin-bottom: 4%;
    }
    .tools-title {
        padding: 30px 0 30px 0;
    }

}

@media(min-width:768px) {
    .content .content-wrap {
        display: block;
    }

    .content .content-wrap a {
        width: 100%;
        min-height: auto;
        margin-bottom: 3%;
    }
    .tools-title {
        padding: 40px 0 20px 0;
    }
}

@media(min-width:992px) {
    .content .content-wrap {
        display: flex;
    }

    .content .content-wrap a {
        width: 32%;
        min-height: 160px;
        margin-bottom: 1.5%;
    }
    .tools-title {
        padding: 64px 0 40px 0;
    }
}

@media(min-width:1200px) {
    .content .content-wrap {
        display: flex;
    }

    .content .content-wrap a {
        width: 32%;
        min-height: 160px;
        margin-bottom: 1.5%;
    }
    .tools-title {
        padding: 64px 0 40px 0;
    }
}
