/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 69px 0 10px;
    font-size: 14px;
    position: relative;
    z-index: 16;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
	width:290px;
    margin-bottom: 30px;
    transition: 
        transform 1s ease, /* 缩放过渡 */
        box-shadow 1s ease; /* 微光阴影过渡，与缩放时长保持一致 */
    transform-origin: left center; 
    cursor: pointer; /* 鼠标移入显示手型 */
    padding: 5px; /* 预留微光空间，避免阴影被裁剪 */
    border-radius: 4px; 
}

.footer-logo:hover {
    transform: scale(1.1); 
    /* 微光效果：rgba(0,102,204,0.6)为主色调浅蓝，可根据需求修改颜色和强度 */
    /* box-shadow: 0 0 15px 5px rgba(0, 102, 204, 0.6); */
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: all 1s ease; /* 图片过渡，保持一致性 */
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    
}

.contact-item i {
    font-size: 15px;
    color: #ccc;
    width: 24px;
    text-align: center;
   
}

.contact-item .label {
    color: #ccc;
    min-width: 40px;
    display: inline-block;
}

.contact-item .value {
    color: #ccc;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.qrcode-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    background-color: #fff;
    padding: 2px;
    border-radius: 6px;
}

.qrcode-item p {
    font-size: 13px;
    color: #ccc;
    text-align: center;
}

.footer-links {
    width: 100%;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding: 20px 0;
    margin-bottom: 20px;
}

.links-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.links-title {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
    white-space: nowrap;
}

.links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #999;
    flex: 1;
}
.links-list a{
    color:#999;
}
.links-list a:hover {
    color: #ac1f24;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.footer-record {
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-left {
        min-width: 100%;
    }

    /* 移动端调整缩放原点为居中，微光效果同步适配 */
    .footer-logo {
        transform-origin: center center;
        display: inline-block; /* 居中显示 */
    }
    .footer-links{
        display: none;
    }
    .contact-item {
        justify-content: center;
    }

    .qrcode-group {
        justify-content: center;
        margin-top: 20px;
    }

    .links-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .links-list {
        gap: 15px;
        padding: 0;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-main {
        margin-bottom: 30px;
    }
    .footer-links{
        display: none;
    }
    .qrcode-group {
        gap: 20px;
    }

    .qrcode-item img {
        width: 80px;
        height: 80px;
    }

    .contact-item {
        font-size: 14px;
        gap: 8px;
    }

    .links-list {
        gap: 10px;
    }

    .footer-links {
        padding: 15px 0;
    }

    /* 移动端微调微光强度，避免过于醒目 */
    .footer-logo:hover {
        box-shadow: 0 0 12px 4px rgba(0, 102, 204, 0.5);
    }
}