/* banner */
/* banner */
/* banner */
.banner img {
    margin: auto;
}

figure {
    /* text-align: right; */
    margin: auto !important;
    max-width: 1170px;
    position: relative;
    display: flex !important;
    justify-content: space-between;
}

figure p {
    width: 80%;
    font-size: 48px;
    font-family: Source Han Sans CN-Bold, Source Han Sans CN;
    font-weight: bold;
    color: #01B6BD;
    line-height: 48px;
    padding-top: 120px;
}

figure font {
    font-size: 20px;
    display: block;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #01B6BD;
    line-height: 65px;
    text-align: center;
    margin-left: -200px;
    ;
    padding-bottom: 92px;
}

figure div {
    color: #fff;
}

figure img {
    object-fit: cover;
    z-index: 2;
    position: absolute;
    top: 23%;
    left: 90%;
    /* margin-left: 284px; */
}


section {
   
   
    display: grid !important;
    grid-template-rows: repeat(2, 33%);
    grid-template-columns: repeat(2,
            50%);
    margin: auto;
    row-gap: 40px;
    column-gap: 40px;
            margin-bottom: 100px;
           
}

section div:first-child {
    grid-column-end: 1;
    grid-column-start: 3;
    text-align: center;
    background: #F9F9F9;
    border-radius: 20px 20px 20px 20px;
    opacity: 1;

}

section div {
    /* width: 580px; */
    /* height: 292px; */
    /* line-height: 292px; */

        padding: 35px;
    justify-content: center;
    background: #F9F9F9;
    border-radius: 20px 20px 20px 20px;
    opacity: 1;
    text-align: center;
    /* margin: 20px; */
}

section div img {
    display: inline-block !important;
}

section div span {
    font-size: 38px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #01B6BD;
    line-height: 38px;
    margin-left: 36px;
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {}

/* 中等屏幕 992px-1200px */
@media screen and (max-width:1200px) {
    figure p {
        font-size: calc(100vw * 48 / 1920);
    }

    figure p font {
        font-size: calc(100vw * 20 / 1920);
    }

    section div span {
        font-size: calc(100vw * 38/ 1920);
    }
}

/* 小屏幕 768px-992px */
@media screen and (max-width:992px) {
    figure p {
        font-size: calc(100vw * 48 / 1920);
    }

    figure p font {
        font-size: calc(100vw * 20 / 1920);
    }

    section div span {
        font-size: calc(100vw * 38/ 1920);
    }

}

/* 超小型设备（手机，768px 以下） */
@media screen and (max-width:768px) {
    figure {
        width: 100vw;z-index: -2;
    }

    figure img {
        position: absolute;
        top: 5%;
        left: 66%;
        margin: auto;
        width: 30%;
    }

    figure p {
        font-size: calc(100vw * 48 / 1920);
        padding-top: 10px;
        margin: auto;
    }

    figure p font {
        font-size: calc(100vw * 20 / 1920);
        padding-bottom: 35px;
        line-height: 0px;
        margin-left: -136px;
    }

    section {
        display: block !important;

    }

    section div {
        display: flex;
        align-items: center;
        margin: 20px;justify-content: space-around;
    }

    section div span {
        font-size: calc(100vw * 38/ 1920);
        display: block;
        line-height: 0px;
    }

    section div img {
        width: 30%;
  
    }

}