@charset "utf-8";
#footer {
    position: relative;
    box-sizing: border-box;
    background: #9f0303;
}
#footer .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    color: #fff;
    box-sizing: border-box;
}
#footer .footer-left {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 80px;          /* PC：与右侧 68×80 图片对齐 */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#footer .footer-text {
    line-height: 1.8;
    font-size: 14px;
    text-align: center;
}
/* PC：label 同行排列，中间用 | 分隔 */
#footer .footer-text label {
    display: inline;
}
#footer .footer-text label::after {
    content: '|';
    display: inline-block;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
#footer .footer-text label:last-child::after {
    content: none;
}
#footer .footer-link {
    color: #fff;
    text-decoration: none;
}
#footer .footer-link:hover {
    text-decoration: underline;
}
#footer .footer-conac {
    flex-shrink: 0;
}

/* 平板：≤991px */
@media (max-width: 991px) {
    #footer {
        padding: 25px 15px;
    }
    #footer .footer-text {
        font-size: 13px;
        line-height: 1.75;
    }
    /* 自适应：label 换行显示，去掉 | 分隔 */
    #footer .footer-text label {
        display: block;
    }
    #footer .footer-text label::after {
        content: none;
    }
    /* 左侧高度自适应（label 换行后高度超过 80px） */
    #footer .footer-left {
        min-height: 0;
        height: auto;
        justify-content: center;
    }
}

/* 手机：≤767px */
@media (max-width: 767px) {
    #footer {
        padding: 20px 15px 15px;
    }
    #footer .footer-main {
        flex-direction: column;
        align-items: center;
    }
    #footer .footer-text {
        font-size: 12px;
        line-height: 1.7;
    }
}
