﻿/* ==================================
   /portal/assets/css/footer.css
   页脚 footer.php 的样式
   ================================== */ 
 
/* ============================
   企业级 Footer（深色主题）
   ============================ */
.portal-footer {
    background: #1f2a44;        /* ⭐ 深蓝灰色背景（截图风格） */
    padding: 40px 0;
    margin-top: 2px;
    border-top: 1px solid #162033;   /* 更深的边框 */
}

/* ============================
   页脚四列布局
   ============================ */
.footer-columns {
    display: flex;
    justify-content: center;
    gap: 80px;                  /* ⭐ 四列之间的间距 */
    margin-bottom: 30px;
    flex-wrap: wrap;            /* ⭐ 响应式：小屏幕自动换行 */
}

/* ============================
   主标题、副标题文字省略 + 悬浮提示
   ============================ */
.footer-col h4,
.footer-col a,
.footer-col span {
    display: block;             /* ⭐ 每个副标题单独一行，避免并排 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;        /* 单行省略 */
    max-width: 220px;           /* 控制最大宽度，可按需调整 */
    vertical-align: middle;
    color: #c7d1e0;             /* 副标题浅灰蓝色 */
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

/* 主标题样式 */
.footer-col h4 {
    font-size: 16px;
    color: #ffffff;             /* 主标题保持白色 */
    margin-bottom: 12px;
}

/* hover 效果：变白 */
.footer-col a:hover,
.footer-col span:hover {
    color: #ffffff;
}

/* ============================
   底部版权区域
   ============================ */
.footer-bottom {
    text-align: center;
    color: #b8c2d0;             /* ⭐ 浅灰蓝色 */
    font-size: 13px;
    margin-top: 20px;
}

/* ============================
   Footer 认证图标区域
   ============================ */
.footer-cert {
    display: flex;
    justify-content: center;
    gap: 20px;                  /* ⭐ 图标之间的间距 */
    margin: 20px 0;             /* ⭐ 与上下内容的间距 */
    flex-wrap: wrap;            /* ⭐ 响应式：小屏幕自动换行 */
}

.footer-cert img {
    width: 88px;                /* 固定宽度 */
    height: 30px;               /* 固定高度，保证方形 */
    object-fit: cover;          /* 超出部分裁剪，避免撑开 */
    opacity: 0.9;
    /*border-radius: 6px;         /* 可选：圆角 */
    /*border: 1px solid #ccc;     /* 可选：边框 */
    transition: opacity 0.2s;
}

.footer-cert img:hover {
    opacity: 1;                 /* ⭐ hover 更亮 */
}

/* ============================
   手机端隐藏 Footer（App 架构）
   ============================ */
@media (max-width: 768px) {
    .portal-footer {
        display: none !important;   /* ⭐ 移动端隐藏页脚 */
    }
}

/* -------------样式结束（手机端隐藏 footer 页脚代码放在 global-device-adapt.css 内的）------- */
