/* ===== 页脚整体容器 — 与页头一致的浅色系 ===== */
.footer {
    /* 极浅绿底，与页头白色毛玻璃呼应 */
    background: linear-gradient(175deg, #F4FAF6 0%, #EBF4EC 100%);
    /* 顶部绿色强调线（与页头激活色 #00A86B 一致） */
    border-top: 3px solid #00A86B;
    box-shadow: 0 -1px 0 rgba(0, 105, 60, 0.06),
                0 -4px 20px rgba(0, 105, 60, 0.05);
}

/* ===== 页脚左侧 Logo 区域 ===== */
.footer .left {
    color: #5a7d60;
}

.footer .left img {
    filter: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer .left img:hover {
    filter: brightness(1.05);
    transform: scale(1.04);
}

.footer .left .d1 {
    font-size: 13px;
    line-height: 30px;
    color: #6b8a70;
}

.footer .left .d1 p {
    margin: 0;
}

/* ===== 页脚右侧列标题 ===== */
.footer .right dl dt {
    margin-bottom: 18px;
}

.footer .right dl dt span,
.footer .right dl dt a {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #2E7D32 !important;
    letter-spacing: 0.6px;
    padding-bottom: 7px;
    position: relative;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

/* 确保 dt 内的 a 不会生成额外的下划线 */
.footer .right dl dt a::after {
    content: none !important;
}

/* 标题下划线动画（绿色渐变条） */
.footer .right dl dt > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2.5px;
    background: linear-gradient(90deg, #00A86B, #00C853);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .right dl dt:hover > span::after {
    width: 100%;
}

/* ===== 页脚链接项 ===== */
.footer .right dl dd {
    line-height: 26px;
}

.footer .right dl dd a {
    color: #5a8a63 !important;
    text-decoration: none !important;
    font-size: 13px;
    display: inline-block;
    padding: 2px 6px;
    margin-left: -6px;
    border-radius: 4px;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .right dl dd a:hover {
    color: #00A86B !important;
    background: rgba(0, 168, 107, 0.08);
    transform: translateX(5px);
    text-decoration: none !important;
}

/* ===== 版权栏 ===== */
.novobottom {
    background: #E3EEE5;
    border-top: 1px solid rgba(0, 168, 107, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.novobottom .novobottom-p {
    color: #5a7d60;
    font-size: 13px;
}

.novobottom .novobottom-span3 a {
    color: #5a7d60 !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.novobottom .novobottom-span3 a:hover {
    color: #00A86B !important;
    text-decoration: none !important;
}

/* ===== 响应式：平板端 768-1080 ===== */
@media screen and (min-width: 768px) and (max-width: 1080px) {
    .footer .right dl dt span,
    .footer .right dl dt a {
        font-size: 14px;
    }

    .footer .right dl dd a {
        font-size: 12px;
        padding: 2px 4px;
        margin-left: -4px;
    }
}

/* ===== 响应式：移动端 ===== */
@media screen and (max-width: 767px) {
    .footer .left {
        text-align: center;
        width: 100%;
        font-size: 14px;
        line-height: 24px;
    }

    .footer .left img {
        max-width: 45%;
        margin: 0 auto 15px;
    }
}
