.con {
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.conL {
    display: block;
    width: 20%;
    height: auto;
    flex-shrink: 0;
}

.conR {
    width: 72%;
}

.conR>h2 {
    font-weight: bold;
    padding-bottom: 0.32rem;
    border-bottom: 0.01rem solid #EDEDED;
    position: relative;
    margin-bottom: 0.5rem;
}

.conR>h2::after {
    content: "";
    position: absolute;
    bottom: -0.03rem;
    left: 0rem;
    display: block;
    width: 0.5rem;
    height: 0.05rem;
    background: #005BAC;
    z-index: 2;
}

.conR>h3 {
    color: #005BAC;
    font-weight: bold;
    margin-bottom: 0.34rem;
}

@media (max-width: 800px) {
    .con {
        flex-direction: column;
    }

    .conL {
        width: 40%;
        height: auto;
        margin: 0rem auto 0.8rem auto;
    }

    .conR {
        width: 100%;
    }

    .conR>h2 {
        text-align: center;
        border-bottom: none;
        padding-bottom: 0rem;
    }

    .conR>h2::after {
        display: none;
    }

    .conR>h3 {
        text-align: center;
    }
}