@charset "UTF-8";


:root{
    --main-color: #2e4bac;
}
.wrapper{
    width: calc(5/6*100%);
    margin: auto;
}

.index-title{
    margin-bottom: 50px;
}
.index-title h2{
    color: #626262;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 22px;
}
.index-title h3{
    color: #dcdcdc;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 18px;
}
.index-title em{
    position: relative;
    display: block;
    width: 144px;
    height: 2px;
    background-color: #e2e2e2;
    margin: auto;
}
.index-title em:after{
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #fa4d4a;
    left: 57px;
}
@media (max-width:768px){
    
    .index-title{
        margin-bottom: 30px;
    }
    .index-title h2{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    .index-title h3{
        font-size: 20px;
        line-height: 20px;
    }
    .index-title em{
        width: 90px;
    }
    .index-title em:after{
        width: 15px;
        left: 37.5px;
    }
}