/* Footer样式 - 三列布局 */

.about-footer {
    background: #314764 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.about-footer * {
    box-sizing: border-box;
}

.about-footer-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

/* 主体三列布局 */
.footer-main {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px;
    padding-bottom: 30px;
}

/* 左侧联系信息 */
.footer-contact {
   
}

.footer-phone {
    font-size: 48px;
    color: #fbe5c3;   
    margin-bottom: 15px;
  
}

.footer-address p {
    font-size: 16px;
    color: #fbe5c3;   
    line-height: 1.8;
    margin: 0 0 4px 0;
}

/* 中间链接区域 - 横向排列 */
.footer-links-area {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.footer-col {
    flex: 0 0 auto;
}

.footer-col dt {
    font-size: 18px;
    color: #fbe5c3;
    font-weight: normal;
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-col .col-underline {
    width: 20px;
    height: 2px;
    background: #fff;
    margin-bottom: 15px;
    padding: 0;
}

.footer-col dd {
    margin: 0 0 6px 0;
}

.footer-col dd a {
    font-size: 12px;
     color: #fbe5c3;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-col dd a:hover {
    color: #fff;
}

/* 右侧二维码 */
.footer-qrcode-area {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    flex: 0 0 auto;
}

.qr-code {
    text-align: center;
    flex: 0 0 auto;
}

.qr-code img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 8px;
    background: #fff;
    padding: 3px;
    display: block;
}

.qr-code span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* 版权信息 */
.footer-copyright {
    text-align: center;
    font-size: 14px;
    padding: 0 !important;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
    height: 90px;
    line-height: 90px;
    background-color: #1f3659;
}

/* 1600px 以下适配 */
@media (max-width: 1600px) {
    .footer-main{
        padding: 0 50px;
    }

    .qr-code img {
        width: 100px !important;
    }
}

/* 1440px 以下适配 */
@media (max-width: 1440px) {
    .footer-main{
        padding: 0 50px;
    }

    .qr-code img {
        width: 100px !important;
    }
}

/* 1280px 以下适配 */
@media (max-width: 1280px) {
    .footer-main{
        padding: 0 50px;
    }

    .qr-code img {
        width: 80px !important;
    }

    .footer-phone{
        font-size: 32px;
    }

    .footer-address p{
        font-size: 14px;
    }


}