.footer {
    padding: 0px 0 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer由远到近动画（从小到大） */
.footer-animate {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-animate.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* 如果JS未加载，默认显示 */
.no-js .footer-animate {
    opacity: 1;
    transform: scale(1);
}

.footer-animate[data-index="0"].animate-in {
    transition-delay: 0ms;
}

.footer-animate[data-index="1"].animate-in {
    transition-delay: 100ms;
}

.footer-animate[data-index="2"].animate-in {
    transition-delay: 200ms;
}

.footer-animate[data-index="3"].animate-in {
    transition-delay: 300ms;
}

.footer-animate[data-index="4"].animate-in {
    transition-delay: 400ms;
}

/* 二维码可爱抖动动画 */
.qrcode-animate {
    opacity: 1;
    transform: scale(1);
}

.qrcode-animate.animate-in {
    animation: cuteShake 0.8s ease-in-out forwards;
}

.qrcode-animate[data-index="0"].animate-in {
    animation-delay: 600ms;
}

.qrcode-animate[data-index="1"].animate-in {
    animation-delay: 800ms;
}

@keyframes cuteShake {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: scale(1.2) rotate(-10deg);
    }
    40% {
        transform: scale(1) rotate(5deg);
    }
    60% {
        transform: scale(1.1) rotate(-5deg);
    }
    80% {
        transform: scale(1) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.footer-container {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.footer-left {
    flex: 1;
}

.footer-title {
    
}

.footer-title-img {
    width: auto;
    margin-bottom: 45px;
}

.title-line {
    width: 40px;
    height: 3px;
    background: #d4a574;
}

.footer-brand {
    display: flex;
    align-items: center;
    
}

.footer-logo {
    margin-right: 15px;
    margin-bottom: 65px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-cn {
    font-size: 20px;
    color: #d4a574;
    font-weight: bold;
}

.brand-en {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-phone-img {
    width: auto;
    margin-bottom: 55px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 24px;
    color: #fbe5c3;
    line-height: 2;
    margin-bottom: 5px;
}

.footer-copyright {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 1270px;
}

.footer-right {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 300px;
    left: 900px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}

.qrcode-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* 1600px 以下适配 */
@media (max-width: 1600px) {
    
    .footer-container {
        width: 1400px !important;
        
    }
   
    .footer-info p {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 14px;
        width: 1050px;
    }

    .footer-right {
        left: 650px;
        top: 260px;
    }
    
}

/* 1440px 以下适配 */
@media (max-width: 1440px) {
    
    .footer-container {
        width: 1280px !important;
        
    }
   
    .footer-info p {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 14px;
        width: 1050px;
    }

    .footer-right {
        left: 650px;
        top: 260px;
    }
    
}

/* 1280px 以下适配 */
@media (max-width: 1280px) {
    
    .footer-container {
        width: 1160px !important;
        
    }
   
    .footer-info p {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 14px;
        width: 1050px;
    }

    .footer-right {
        left: 650px;
        top: 260px;
    }
    
}
