* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* title */

#td-title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

#td-title h3 {
    font-size: 40px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    margin-bottom: 10px;
}

#td-title span {
    display: block;
    width: 70px;
    height: 2px;
    background-color: #94070A;
    margin: 0 auto;
}

@media screen and (max-width:981px) {
    #td-title h3 {
        font-size: 30px;
    }
}


/* content */

#td-content {
    width: 100%;
    margin: 0 auto;
}

.td-text {
    width: 100%;
    padding: 40px;
    background: url('/template/default/skin/images/yun.png') #FCF6F4 no-repeat;
    background-position: bottom right;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 1px 5px 2px #e2e1e1;
    margin-bottom: 50px;
}

.td-img {
    width: 25%;
    overflow: hidden;
    border-radius: 15px;
}

.td-img img {
    width: 100%;
    transition: all .5s;
}

.td-img:hover img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.td-center {
    width: 70%;
}

.td-text h4 {
    font-size: 30px;
    font-family: SourceHanSansCN;
    font-weight: bold;
    color: #333333;
}

.td-text span {
    display: block;
    width: 64px;
    height: 3px;
    background: #94070A;
    margin: 10px 0;
}

.td-text p {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 35px;
}

@media screen and (max-width:981px) {
    .td-text {
        flex-wrap: wrap;
    }
    .td-text div {
        width: 100%;
    }
    .td-img {
        margin: 0 auto;
    }
    .td-text img {
        margin-bottom: 20px;
    }
	.td-text{padding: 20px;}
	.td-text p{font-size: 16px;line-height: 32px;}
}