@media (min-width: 960px) {
    body {
        font-family: 'Georgia', serif; /* 使用 Merriweather 字体，后备选择 serif */
        font-size: 1rem; /* 设置合适的字号 */
        line-height: 1.6; /* 设置行高，让文字更易阅读 */
    }
    h1, h2, h3 {
        font-family: 'Georgia', serif;
        font-weight: bold;
    }
    .main {
        width: 100%;
    }

    .universal-header {
        background-color: #051C2C;
        width: 100%;
        height: 512px;
        display: flex;
        justify-content: space-between;
    }

    .head-left,
    .head-right {
        flex: 1;
        /* 各占一半宽度 */
    }

    .right-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .head-left {
        display: flex;
        color: #fff;
        justify-content: center; /* 水平居中 */
        align-items: center; /* 垂直居中 */
        font-size: 3.15rem;
        text-align: center;
        padding: 20px; /* 为父元素增加一些内边距 */
        box-sizing: border-box; /* 确保 padding 不会影响宽度 */
    }
    
    .left-fort {
        max-width: 100%; /* 确保子元素不超过父元素宽度 */
        padding: 10px 40px; /* 控制子元素内部的间距 */
        margin: auto; /* 水平居中 */
        box-sizing: border-box; /* 保证 padding 不会影响宽度 */
    }
    .cardText {
        margin: 0 auto;
        padding: 20px 300px;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .text-center {
        /* text-align: center; */
    }

    p {
        margin-bottom: 20px;
    }

    .footerBox {
        background-color: #F0F0F0;
        margin-top: 60px;
    }

    .footer {
        background-color: #F0F0F0;
    }
    .service_content {
        text-align: center;
        margin-bottom: 10px;
    }

    .service_content a{
        margin: 0 auto;
        color: #333333;
        font-size: 0.9rem;
        padding: 14px;
    }
}

@media (max-width: 960px) {
    body {
        font-family: 'Georgia', serif; /* 使用 Merriweather 字体，后备选择 serif */
        font-size: 1rem; /* 设置合适的字号 */
        font-weight: 100;
        line-height: 1.6; /* 设置行高，让文字更易阅读 */
    }
    h1, h2, h3 {
        font-family: 'Georgia', serif;
        font-weight: bold;
    }
    .main {
        width: 100%;
    }

    .universal-header {
        background-color: #051C2C;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .head-left,
    .head-right {
        width: 100%;
        /* 各占一半宽度 */
    }
    .head-left {
        order: 2; /* 强制 .head-left 排在 .head-right 之后 */
    }
    
    .head-right {
        order: 1; /* 强制 .head-right 排在 .head-left 之前 */
    }

    .right-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .head-left {
        display: flex;
        color: #fff;
        justify-content: center;
        /* 水平居中 */
        align-items: center;
        font-size: 1.05rem;
        text-align: center;

    }

    .left-fort {
        padding: 30px 5px;
    }

    .cardText {
        margin: 0 auto;
        padding: 20px 20px;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .text-center {
        text-align: center;
        width: 100%;
    }

    p {
        margin-bottom: 20px;
    }

    .footerBox {
        background-color: #F0F0F0;
        margin-top: 60px;
    }

    .footer {
        background-color: #F0F0F0;
    }
    .service_content {
        text-align: center;
        margin-bottom: 10px;
    }

    .service_content a{
        margin: 0 auto;
        color: #333333;
        font-size: 0.9rem;
        padding: 8px;
    }
}