.tabs {
    display: flex;
    height: 52px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    margin-left: -2px;
}
.tabs .tab-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 100%;
    margin: 0;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    font-size: 16px;
    color: #666666;
    font-weight: bold;
    cursor: pointer;

}
.tabs .tab-item .tab-icon {
    margin-right: 7px;
}
.tabs .tab-item .tab-tit {
    font-weight: bold;
}
.tabs .active {
    position: relative;
    color: #FE434F;
    background: #FFFFFF;
}
.tabs .active:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #FE434F;
}

/*轮播中的样式*/
.instered-box {
    margin-top: 42px;
}
.tag-box {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 30px 0 23px 25px;
    background: #fff;
}
.tag-box a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 16.6%;
    margin-bottom: 14px;
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    box-sizing: border-box;
    padding-right: 10px;
}
.tag-box a:hover {
    text-decoration: underline;
}
.swiper-wrapper, .swiper-slide {
    height: auto!important;
}