.contentCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items:flex-start;
}
.contentCon .content-picture{
    width: 44vw;
    padding-right: 1vw;
}
.contentCon .content-picture img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.contentCon .content-detail{
    width: 45vw;
}

.contentCon .content-detail h5{
    font-size: 1.5em;
    margin: 0;
}
.contentCon .content-detail div{
    text-align: left;
    font-size: 1.2em;
    color: #737373;
    line-height: 2em;
}
.contentCon .content-detail .dot{
    color: green;
}

#emc{
    margin-bottom: 3.6em;
}

@media (max-width:768px){
    .contentCon{
        flex-flow: column nowrap;
    }
    .contentCon .content-picture{
        width: 100%;
        padding: 0px;
    }
    .contentCon .content-detail{
        width: 100%;
    }
}

