

/* =========================
   PC端设置
========================= */
.custom-text-block{
    width:100%;
    padding:10px 10px; /* PC上下间距 */
    text-align:center; /* left / center / right */
    background:#ffffff;

    /* PC整体字体 */
    font-family: OpenSans-Bold;
}

.custom-title{
    font-size:48px; /* PC标题大小 */
    color:#111111;
    font-weight:1200;
    margin-bottom:10px;
    line-height:1.3;

    /* PC标题字体 */
    font-family: OpenSans-Bold;
}


/* =========================
   手机端设置
========================= */
@media screen and (max-width:768px){

.custom-text-block{
    padding:20px 5px; /* 手机上下间距 */
    text-align:center; /* left / center / right */

    /* 手机整体字体 */
    font-family: OpenSans-Bold;
}

.custom-title{
    font-size:28px; /* 手机标题大小 */
    margin-bottom:15px;

    /* 手机标题字体 */
    font-family: OpenSans-Bold;
}

}

