* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* title */

#zc-title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

#zc-title h3 {
    font-size: 40px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    margin-bottom: 10px;
}

#zc-title span {
    display: block;
    width: 70px;
    height: 2px;
    background-color: #94070A;
    margin: 0 auto;
}

@media screen and (max-width:981px) {
    #zc-title h3 {
        font-size: 30px;
    }
}


/* content */

#zc-content {
    width: 100%;
    margin: 0 auto;
    background: url('/template/default/skin/css/../img/yun.png') #FCF6F4 no-repeat;
    background-position: bottom right;
    padding: 5%;
}

.zc-img {
    display: flex;
    width: 100%;
    justify-content: space-between;
    overflow: hidden;
}

.zc-img img {
    width: 48%;
    transition: all .5s;
}

.zc-img img:hover {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.zc-text {
    margin-top: 30px;
}

.zc-text p {
    font-size: 18px;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 50px;
    text-indent: 2em;
}
.zc-text span{
    font-weight: bold;
}
@media screen and (max-width:981px) {
    .zc-img {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .zc-img img {
        width: 100%;
        margin-bottom: 30px;
    }
}