/* 轮播图 */
.banner-img {
    width: 100%;
    height: auto;
}

/* label背景图片 */
.label-bg {
    padding: 5px 20px 15px 20px;
    background: url("../img/lab-bg.png") 100% no-repeat;
    background-size: 100% 100%;
    width: 230px;
    margin: 24px 0 0 -14px;
    display: flex;
    justify-content: center;
    /* 文字 */
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: MiSans;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    line-height: 40px;
}

/* 自定义的吸顶tab */

.my-tab {
    z-index: 3;
    width: 100%;
    height: 85px;
    background-color: white;
    flex-direction: column;
    display: flex;
}

.my-tab1 {
    width: 100%;
    height: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
    background-color: white;
    align-self: center;
}

.my-tab li {
    height: 100%;
    margin-right: 20px;
}

.my-tab .item {
    padding: 5px 20px 5px 20px;
    height: 100%;
    margin-right: 20px;
    font-family: MiSans;
    font-weight: 400;
    font-size: 18px;
    color: #333;
    text-align: justify;
    font-style: normal;
    line-height: 85px;
    overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}

.my-tab .item_on a {
    transition: all ease-in 0.33s;
    color: #0320C3;
    border-bottom: 2px solid #0320C3;

}


.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 1024px) {
    html {
        zoom: 1;
    }

    /* label背景图片 */
    .label-bg {
        width: 140px;
        margin: 12px 0 0 -10px;
        font-size: 14px;
        line-height: 20px;
    }

    /* 自定义的吸顶tab */
    .my-tab {

        height: 50px;

    }

    .my-tab li {
        margin-right: 5px;

    }

    .my-tab .item {
        padding: 0px 10px 13px 10px;
        font-size: 16px;
        margin-right: 5px;
        line-height: 50px;

    }

    .my-tab1 {
        box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.12);
    }
}
