/* ============================================================================
   self.css —— 希望OL多功能网站 官网自维护覆盖样式
   在 css/site.min.css 之后加载（index.html 与 tools/gen_pages.py head() 均已挂链）。
   当前仅覆盖全站页脚：橘色渐变底 + 信息居中（运营要求 2026-09）。
   ============================================================================ */

/* ---------- 页脚：橘底 ---------- */
.footer {
    width: 100%;
    border-top: 0;
    background: linear-gradient(180deg, #ffb24e 0%, #ff9c2f 48%, #f68817 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .4), 0 -2px 16px -12px rgba(120, 60, 0, .35);
}

/* ---------- 页脚：信息居中 ---------- */
.footer .inner { text-align: center; }
.footer .info_area {
    padding: 42px 0 46px;
    font-size: 13px;
    color: #fff;
    text-align: center;
}

/* 第一行：政策链接 */
.footer .info_area .policy_lst {
    font-size: 0;
    text-align: center;
}
.footer .info_area .policy_lst .lst_itm {
    display: inline-block;
    position: relative;
    padding: 0 15px;
    vertical-align: middle;
    line-height: 1;
}
.footer .info_area .policy_lst .lst_itm:before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .55);
    content: "";
}
.footer .info_area .policy_lst .lst_itm:first-child { padding-left: 0; }
.footer .info_area .policy_lst .lst_itm:first-child:before { display: none; }
.footer .info_area .policy_lst .lst_itm a {
    display: inline-block;
    padding: 3px 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
    opacity: .97;
    transition: opacity .15s ease, text-shadow .15s ease;
}
.footer .info_area .policy_lst .lst_itm a:hover { opacity: 1; text-shadow: 0 1px 3px rgba(150, 70, 0, .4); }
.footer .info_area .policy_lst .lst_itm a p,
.footer .info_area .policy_lst .lst_itm a strong { display: inline; margin: 0; }

/* 第二行：团队说明文字 */
.footer .info_area .info_lst {
    margin-top: 22px;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}
.footer .info_area .info_lst li {
    display: inline-block;
    margin-left: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.9;
}
.footer .info_area .info_lst li:first-child { margin-left: 0; }
.footer .info_area .info_lst li a { color: #fff; }

/* 版权行 */
.footer .info_area .copyright {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .8);
}

/* 署名行（写死在页面 HTML 里，不入库、后台无编辑入口、不可修改） */
.footer .info_area .ft_credit {
    position: relative;
    display: block;
    margin: 16px auto 0;
    padding-top: 13px;
    max-width: 760px;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
    letter-spacing: .06em;
    line-height: 2;
}
.footer .info_area .ft_credit:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 2px;
    margin-left: -22px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .55);
    content: "";
}
.footer .info_area .ft_credit em {
    font-style: normal;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(150, 70, 0, .3);
}
.footer .info_area .ft_credit strong {
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}

/* 窄屏：取消第二行 nowrap 防溢出 */
@media (max-width: 900px) {
    .footer .info_area .info_lst { white-space: normal; }
}
