.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: 5px;
    width: 100px;
    margin: 20px;
}
.title-content{
    color: rgba(0,0,0,.65);
    font-size: 16px;
    text-align: justify;
    width: 80%;
    line-height: 28px;
    text-indent: 2em;
}
.main-content{
    padding: 40px 82px;
    margin-top: 30px;
}
.content-box{
    display: flex;
}
.content-img{
    width: 24px;
}
.content-text{
    margin-left: 20px;
}
.content-title{
    color: rgba(0,0,0,.85);
    font-size: 16px;
    font-weight: bold;
}
.content-info{
    color: rgba(0,0,0,.5);
    font-size: 16px;
    margin-top: 12px;
    line-height: 28px;
    text-align: justify;
    width: 90%;
}
.marginBot{
    margin-bottom: 40px;
}
@media screen and (max-width: 768px){
    .title-name{
        font-size: 20px;
    }
    .title-line{
        width: 50px;
        margin: 12px;
    }
    .title-content{
        font-size: 14px;
    }
    .marginBot{
        margin-bottom: 30px;
    }
    .content-img{
        width: 32px;
    }
    .content-text{
        margin-left: 25px;
    }
    .content-info{
        width: 100%;
        font-size: 14px;
    }
}