.us-tabs {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.us-tab {
    display: flex;
    width: 150px;
    height: 52px;
    background-color: #E6E6E6;
    color: #000000;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.down {
    position: absolute;
    bottom: -14px;
    width: 30px;
    height: 30px;
    background: linear-gradient(to right, #2b7fc0, #2e8eca);
    clip-path: polygon(100% 50%, 0% 50%, 50% 100%);
}

.us-active {
    background: var(--theme-color-dynamic);
    color: #ffffff;
}

.imgs {
    text-align: center;
}

.imgs > img {
    width: 1100px;
}

/* 媒体查询适配 */

@media (max-width:1535px){


}

@media (max-width:1230px){

}

@media (max-width:1024px){
    .us-tab {
        width: 100%;
        height: 30px;
        font-size: 12px;
        border-radius: unset;
    }
    .down {
        bottom: -12px;
    }

    .imgs > img {
        width: 100%;
    }
}

@media (max-width:925px){
}

@media (max-width:768px){
    .us-tabs {
        margin: 20px 0;
    }

    .down {
        bottom: -10px;
    }
}
@media (max-width: 620px){
}

@media (max-width: 480px){
    .down {
        bottom: -8px;
        width: 20px;
        height: 20px;
    }
}
/* 媒体查询适配 */