/* banner */
/* banner */
/* banner */
.banner img {
    margin: auto;
}

article {
    display: flex !important;
    /* min-width: 1170px; */
    justify-content: center;
   
}


article .content .text {
    width: 100%;
    height: 516px;
    background: #fff;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    padding-left: 40%;
    padding-top: 20%;

}

article .content .text p:nth-of-type(1) {
    font-size: 30px;
    /* font-size: calc(100vw * 20 / 1920); */
    font-family: Source Han Sans CN-Bold, Source Han Sans CN;
    font-weight: bold;
    color: #01B6BD;
    line-height: 30px;

}

article .content .text p:nth-of-type(2) {
    font-size: 16px;
    /* font-size: calc(100vw * 12 / 1920); */
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    max-width: 324px;
    text-align: left;
    margin-top: 30px;
}




/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {}

/* 中等屏幕 992px-1200px */
@media screen and (max-width:1200px) {
    article .content .text p:nth-of-type(1) {
        font-size: calc(100vw * 30 / 1920)
    }

    article .content .text p:nth-of-type(2) {
        font-size: calc(100vw * 16 / 1920)
    }
}

/* 小屏幕 768px-992px */
@media screen and (max-width:992px) {
    article .content .text p:nth-of-type(1) {
        font-size: calc(100vw * 30 / 1920)
    }

    article .content .text p:nth-of-type(2) {
        font-size: calc(100vw * 16 / 1920)
    }
}

/* 超小型设备（手机，768px 以下） */
@media screen and (max-width:768px) {
    .banner {
        min-height: 95px;
    }

    article {
        flex-wrap: wrap-reverse;
        padding: 0px;

    }

    article .content .text {
        width: 100vw;
        padding-left: 30px;
        padding-top: 30px;
        height: auto;
    }

    article .content .text p:nth-of-type(1) {
        font-size: calc(100vw * 30 / 1920)
    }

    article .content .text p:nth-of-type(2) {
        font-size: calc(100vw * 16 / 1920)
    }
}