.main-title{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title-name{
    color: rgba(0,0,0,.85);
    font-weight: bold;
    font-size: 22px;
}
.title-line{
    background-color: #447FC0;
    height: 4px;
    width: 80px;
    margin: 20px;
}
.title-content{
    color: rgba(0,0,0,.65);
    font-size: 16px;
    width: 80%;
    line-height: 28px;
    text-indent:2em;
    text-align: justify;
}
.main-content{
    padding: 40px 82px;
    margin-top: 45px;
}
.content-title{
    background-color: #3F82C4;
    color: #ffffff;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.content-info{
    color: rgba(0,0,0,.65);
    font-size: 16px;
    line-height: 28px;
}
@media screen and (max-width: 768px){
    .title-name{
        font-size: 20px;
    }
    .content-info{
        margin-top: 10px;
    }
    .title-line{
        width: 50px;
        margin: 12px;
    }
    .content-title{
        font-size: 16px;
    }
    .title-content, .content-info{
        font-size: 14px;
    }
}