h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

h2:before {
    content: "";
    height: 1px;
    background: linear-gradient(to right, transparent, #818078);
    margin-right: 20px;
    width: 2em;
}

h2:after {
    content: "";
    height: 1px;
    background: linear-gradient(to left, transparent, #818078);
    margin-left: 20px;
    width: 2em;
}

.contentArea {
    line-height: 2.5em;
    font-size: 16px;
    display: flex;
    color: #555;
}

.contentArea>img {
    width: 400px;
    height: 320px;
    object-fit: cover;
    margin-right: 30px;
    transform: translateY(15px);
    border-radius: 5px;
}

.contentArea b {
    margin-right: 10px;
}

.contactArea {
    background: #fff;
    border-radius: 5px;
    padding: 30px;
    font-size: 16px;
    line-height: 2.5em;
    color: #555;
    background-image: url('https://cdn.qipengit.com/file/2b62bb84-f838-471f-8ec5-4fda1765e06b.jpg');
    background-size: auto 100%;
    background-position: right;
    background-repeat: no-repeat;
}

@media screen and (max-width: 960px) {
    .contentArea {
        display: block;
    }
    .contentArea>img{
        margin-bottom: 20px;
        margin-right: 0;
    }
    .contactArea{
        background: #fff;
    }
}