.contact-subtitle {
    text-align: left;
    font-size: 2.5rem;
}

.contact-info-wrapper {
    width: 1100px;
    margin: 0 auto;
    line-height: 2rem;
    color: #333;
}

/* 移动端适配 - 媒体查询 */
@media (max-width: 1200px) {
    .contact-info-wrapper {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 1.8rem;
        text-align: center;
    }
    .contact-info-wrapper {
        line-height: 1.6rem;
        padding: 0 15px;
    }
    .contact-info-wrapper p {
        word-wrap: break-word;
        word-break: break-word;
    }
}