/* 页脚专用样式 */

/* 升级版Footer */
.footer {
    background: linear-gradient(135deg, #333333, #444);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

/* 波浪形分割线 */
.wave-divider {
    height: 40px;
    background: linear-gradient(45deg, #FF7A00 25%, transparent 25%), 
                linear-gradient(-45deg, #FF7A00 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #FF7A00 75%), 
                linear-gradient(-45deg, transparent 75%, #FF7A00 75%);
    background-size: 25px 25px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}

/* 页脚内容布局 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* 页脚Logo */
.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 122, 0, 0.3));
}

/* 页脚信息文字 */
.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 页脚Logo容器 */
.footer-logo {
    display: flex;
    align-items: center;
}

/* 页脚信息容器 */
.footer-info {
    text-align: right;
}

/* 页脚品牌标语 */
.footer-info p:last-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

/* 页脚版权信息 */
.footer-info p:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* 页脚悬停效果 */
.footer-logo-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* 页脚响应式调整（虽然您说不需要，但保留基础兼容性） */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info p {
        font-size: 1rem;
    }
} 