.services-header {
    width: 100%;
    height: 25vw;
    background: url("/static/img/services.png") no-repeat;
    background-size: cover;
    position: relative;
}

.services-headerArea {
    width: 1210px;
    margin: 0 auto;
    padding-top: 130px;
    box-sizing: border-box;
}

.services-headerArea h2 {
    font-size: 55px;
    font-weight: bold;
    color: #3D3D3D;
    margin-bottom: 80px;
}

.services-headerArea div {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-headerArea p {
    font-size: 24px;
    line-height: 22px;
    color: #3D3D3D;
}

.services-search {
    position: absolute;
    width: 1210px;
    height: 118px;
    background: url("/static/img/search.png") no-repeat;
    background-size: cover;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 28px 32px;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}

.services-search input {
    width: calc(100% - 220px);
    border: none;
    padding: 0 15px;
    font-size: 18px;
    box-sizing: border-box;
}

.search-btn {
    width: 200px;
    height: 100%;
    background-color: rgb(0, 82, 217);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.search-btnApp {
    display: none;
}

.search-btn img {
    width: 25px
}

.services-sort {
    width: 100%;
    height: auto;
    padding: 130px 0 80px;
    box-sizing: border-box;
    background-color: rgb(245, 248, 253);
}

.services-content {
    width: 1210px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.services-navigationO {
    width: 200px;
    border-radius: 4px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.03), 0px 1px 6px -1px rgba(0, 0, 0, 0.02), 0px 2px 4px 0px rgba(0, 0, 0, 0.02);
    padding: 13px 4px;
    box-sizing: border-box;
    cursor: pointer;
}

.services-itemBox {
    height: 40px;
    padding: 0px 9px 0px 25px;
    overflow: hidden;
    border-radius: 2px;
    line-height: 40px;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    color: #3D3D3D;
    transition: all 0.3s ease;
    cursor: pointer;
}

.itemBoxActive {
    color: #FFFFFF;
    font-weight: 700;
    background: linear-gradient(90deg, #0058FF 0%, rgba(59, 126, 253, 0) 100%);
}

.services-classification {
    width: calc(100% - 240px);
}



.services-navigationW {
    min-width: 700px;
    height: auto;
    max-width: 100%;
    width: fit-content;
    box-sizing: border-box;
    border-radius: 150px;
    background: #FFFFFF;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 5px 6px;
    cursor: pointer;
    margin-bottom: 20px;
}

.services-itemBoxW {
    padding: 8px 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 150px;
    transition: all 0.3s ease;
    color: #3D3D3D;
}

.itemBoxWActive {
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #165DFF 0%, #3EDCFF 100%);
}

.services-wares {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.services-wares-item {
    width: 100%;
    height: auto;
    padding: 29px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #F2F6FB;
    transition: all 0.3s ease;
}

.services-wares-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.services-wares-title img {
    width: 30px;

}

.services-wares-title p {
    color: #3D3D3D;
    font-size: 18px;
}

.services-wares-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 22px;
    color: #495770;
    height: 45px;
    margin-bottom: 20px;
}

.services-waresBtn {
    width: 94px;
    height: 34px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #347EFF;
    color: #FFFFFF;
    transition: all 0.3s ease;
}


.services-wares-item:hover {
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 12px #c9e0fc;
}

.services-wares-item:hover .services-waresBtn {
    background: linear-gradient(90deg, #0058FF 0%, #3EDCFF 100%);
}

.null-wares {
    width: 100%;
    text-align: center;
    color: #3D3D3D;
    padding: 8px;
    background: #FFFFFF;
    box-sizing: border-box;
}


.loading-wares {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
    color: #666;
}

/* 旋转圆环 */
.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #409eff;
    /* 主色调自己换 */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* 关键帧 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.ft-banner {
    margin-top: 0;
}

@media (max-width: 768px) {
    .services-header {
        width: 100%;
        height: 60vw;
        background: url("/static/img/services.png") no-repeat;
        background-size: cover;
        position: relative;
    }

    .services-headerArea {
        width: 100%;
        margin: 0 auto;
        padding: 40px 20px 0;


    }

    .services-headerArea h2 {
        font-size: 30px;
        font-weight: bold;
        color: #3D3D3D;
        margin-bottom: 20px;
    }

    .services-headerArea div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .services-headerArea p {
        font-size: 18px;
        line-height: 22px;
        color: #3D3D3D;
    }

    .services-search {
        position: absolute;
        width: 95%;
        height: 45px;
        background: none;
        background-size: cover;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        padding: 0;
        margin: 0 auto;
    }

    .services-search input {
        width: calc(100% - 80px);
        border: none;
        padding: 0 15px;
        font-size: 18px;
        box-sizing: border-box;
    }

    .search-btn {
        display: none;
    }

    .search-btnApp {
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        background-color: #fff;
    }

    .search-btnApp img {
        width: 35px;
    }

    .services-sort {
        width: 100%;
        height: auto;
        padding: 60px 20px 40px;
        background-color: rgb(245, 248, 253);
    }

    .services-content {
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .services-navigationO {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }

    .services-itemBox {
        height: 40px;
        padding: 0px 9px 0px 25px;
        overflow: hidden;
        border-radius: 2px;
        line-height: 40px;
        width: 100%;
        background-color: #fff;
        box-sizing: border-box;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
        color: #3D3D3D;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .itemBoxActive {
        color: #FFFFFF;
        font-weight: 700;
        background: linear-gradient(90deg, #0058FF 0%, rgba(59, 126, 253, 0) 100%);
    }

    .services-classification {
        width: 100%;
    }



    .services-navigationW {
        min-width: 100%;
        width: fit-content;
        box-sizing: border-box;
        border-radius: 4px;
    }

    .services-itemBoxW {
        padding: 8px 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 150px;
        transition: all 0.3s ease;
        color: #3D3D3D;
    }

    .itemBoxWActive {
        font-weight: 700;
        color: #fff;
        background: linear-gradient(90deg, #165DFF 0%, #3EDCFF 100%);
    }

    .services-wares {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .services-wares-item {
        width: 100%;
        height: auto;
        padding: 29px;
        box-sizing: border-box;
        background: #FFFFFF;
        border: 1px solid #F2F6FB;
        transition: all 0.3s ease;
    }

    .services-wares-title {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 15px;
    }

    .services-wares-title img {
        width: 30px;

    }

    .services-wares-title p {
        color: #3D3D3D;
        font-size: 18px;
    }

    .services-wares-desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
        line-height: 22px;
        color: #495770;
        height: 45px;
        margin-bottom: 20px;
    }

    .services-waresBtn {
        width: 94px;
        height: 34px;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;

        background: #347EFF;
        color: #FFFFFF;
        transition: all 0.3s ease;
    }
}