﻿@charset "utf-8";
		/* ==================== 新版高端Footer样式 ==================== */

/* Footer整体容器 */
.new-footer-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #0d7a63 0%, #0a5c4a 100%);
    position: relative;
    overflow: hidden;
}

/* 顶部装饰线 */
.new-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F5821E 0%, #ffb366 50%, #F5821E 100%);
}

.new-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem 3rem;
    position: relative;
}

/* 背景装饰 */
.new-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 130, 30, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer主体内容 */
.new-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* 左侧品牌信息 */
.new-footer-brand {
    display: flex;
    flex-direction: column;
}

.new-footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.new-footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F5821E 0%, #ff9d47 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px -8px rgba(245, 130, 30, 0.5);
}

.new-footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.new-footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 3px solid #F5821E;
    padding-left: 1.2rem;
}

.new-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.new-footer-contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.new-footer-contact-icon {
    font-size: 1.3rem;
}

/* 中间导航链接 */
.new-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.new-footer-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.new-footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #F5821E;
    border-radius: 2px;
}

.new-footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.new-footer-nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.new-footer-nav-links li a:hover {
    color: #F5821E;
    transform: translateX(5px);
}

/* 右侧CTA */
.new-footer-cta {
    display: flex;
    flex-direction: column;
}

.new-footer-cta-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.new-footer-cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #F5821E;
    border-radius: 2px;
}

.new-footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.new-footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);
}

.new-footer-cta-btn.primary {
    background: linear-gradient(135deg, #F5821E 0%, #ff9d47 100%);
    color: white;
}

.new-footer-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -8px rgba(245, 130, 30, 0.6);
}

.new-footer-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.new-footer-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.new-footer-cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.new-footer-cta-btn:hover .new-footer-cta-icon {
    transform: translateX(5px);
}

/* 底部版权区 */
.new-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.new-footer-bottom-left span {
    display: inline-block;
}
.new-footer-bottom-left br { display: none; }
@media (max-width: 768px) {
    .new-footer-bottom-left br { display: inline; }
}

.new-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.new-footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-footer-bottom-right a:hover {
    color: #F5821E;
}

.new-footer-bottom-right span {
    color: rgba(255, 255, 255, 0.3);
}

/* 响应式 */
@media (max-width: 1000px) {
    .new-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .new-footer-cta {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .new-footer {
        padding: 4rem 2rem 2rem;
    }
    .new-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .new-footer-cta {
        grid-column: span 1;
    }
    .new-footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .new-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .new-footer-bottom-right {
        justify-content: center;
    }
}