.title-block-1 {
    text-align: center;
}

.title-block-1 .title {
    font-size: 28px;
    border-right: solid 3px #0086d1;
    border-left: solid 3px #0086d1;
    line-height: 1.5;
    width: auto;
    padding: 0 20px;
    white-space: nowrap;
    display: inline-block;
    box-sizing: border-box;
}

/* 移动端样式调整 */
@media screen and (max-width: 768px) {
    .title-block-1 .title {
        font-size: 20px;
        padding: 0 15px;
        border-right: solid 2px #0086d1;
        border-left: solid 2px #0086d1;
    }
}

/* 小屏幕移动端样式调整 */
@media screen and (max-width: 480px) {
    .title-block-1 .title {
        font-size: 18px;
        padding: 0 12px;
        border-right: solid 1.5px #0086d1;
        border-left: solid 1.5px #0086d1;
    }
}