﻿
/* ==============================
   页脚 Footer 样式
   ============================== */

.footernew {
    background-color: #111827; /* bg-gray-900 */
    color: #d1d5db; /* text-gray-300 */
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem;
    border-top: 1px solid #1f2937; /* border-gray-800 */
}

/* 最大宽度容器 */
.footer-container {
    max-width: 1200px; /* max-w-7xl = 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}



/* 四列网格 */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* 手机 1列 */
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* 电脑 4列 */
    }
}

/* 公司信息列 */
.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .footer-brand .logo i {
        font-size: 21px; /* text-2xl */
        color: #ffffff;
    }

    .footer-brand .logo span {
        font-size: 21px; /* text-xl */
        font-weight: 700;
        color: #ffffff;
    }

.footer-brand p {
    font-size: 14px; /* text-sm */
    color: #9ca3af; /* text-gray-400 */
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* 各列标题 */
.footer-col-title {
    color: #ffffff;
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem;
    font-size: 21px;
}

/* 链接列表 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem; /* space-y-2 */
    }

    .footer-links a {
        color: #d1d5db;
        text-decoration: none;
        font-size: 14px; /* text-sm */
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

/* 联系方式 */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 14px;
    }

    .footer-contact i {
        margin-top: 0.25rem;
        color: #2563eb; /* text-primary（蓝色） */
    }

/* 底部版权 */
.footer-bottom {
    border-top: 1px solid #1f2937; /* border-gray-800 */
    margin-top: 2.5rem; /* mt-10 */
    padding-top: 1.5rem; /* pt-6 */
    text-align: center;
    font-size: 14px;
    color: #6b7280; /* text-gray-500 */
}

    .footer-bottom a {
        color: #6b7280;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }
