﻿/* 恩瑞人力 - 自定义设计系统 */

/* ===== 设计 Token ===== */
:root {
    --er-blue: #0d3b6e;
    --er-blue-mid: #1a5fa8;
    --er-gold: #c8922a;
    --er-gold-light: #f0b849;
    --er-text: #222222;
    --er-muted: #666666;
    --er-bg-light: #f8f9fc;
    --er-radius: 10px;
    --er-shadow: 0 6px 30px rgba(13,59,110,0.10);
    --er-transition: all 0.35s ease;
}

/* ===== 页面通栏（自有设计，非参考站样式） ===== */
.er-page-banner {
    width: 100%;
    height: 320px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.er-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,59,110,0.75) 0%, rgba(10,30,55,0.55) 100%);
}

.er-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.er-banner-inner h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: 3px;
}

.er-banner-inner p {
    font-size: 1rem;
    opacity: 0.85;
    margin: 0;
    letter-spacing: 1px;
}

/* ===== 通用 section 内容区 ===== */
.er-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ===== 关于我们 - 企业文化卡片 ===== */
.er-culture-section {
    background: var(--er-bg-light);
}

.er-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.er-culture-card {
    background: #fff;
    border-radius: var(--er-radius);
    padding: 36px 24px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: var(--er-transition);
    box-shadow: var(--er-shadow);
}

.er-culture-card:hover {
    border-top-color: var(--er-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13,59,110,0.15);
}

.er-culture-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--er-blue), var(--er-blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.er-culture-icon i {
    font-size: 26px;
    color: #fff;
}

.er-culture-card h3 {
    font-size: 18px;
    color: var(--er-blue);
    margin: 0 0 12px;
    font-weight: 700;
}

.er-culture-card p {
    font-size: 14px;
    color: var(--er-muted);
    line-height: 24px;
    margin: 0;
}

/* ===== 核心优势 - 卡片设计 ===== */
.er-adv-section {
    background: #fff;
}

.er-adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.er-adv-card {
    display: flex;
    gap: 0;
    flex-direction: column;
    border-radius: var(--er-radius);
    overflow: hidden;
    box-shadow: var(--er-shadow);
    transition: var(--er-transition);
    position: relative;
}

.er-adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13,59,110,0.18);
}

.er-adv-num {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.25);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.er-adv-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.er-adv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.er-adv-card:hover .er-adv-img img {
    transform: scale(1.06);
}

.er-adv-body {
    padding: 22px 24px;
    background: #fff;
    border-left: 4px solid var(--er-gold);
}

.er-adv-body h3 {
    font-size: 17px;
    color: var(--er-blue);
    margin: 0 0 10px;
    font-weight: 700;
}

.er-adv-body p {
    font-size: 14px;
    color: var(--er-muted);
    line-height: 24px;
    margin: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 996px) {
    .er-culture-grid {
        grid-template-columns: 1fr 1fr;
    }
    .er-adv-grid {
        grid-template-columns: 1fr;
    }
    .er-page-banner {
        height: 220px;
    }
    .er-banner-inner h1 {
        font-size: 1.5rem;
    }
    .er-section-inner {
        padding: 40px 15px;
    }
}

@media (max-width: 600px) {
    .er-culture-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 原 inbanner 增加渐变蒙层 ===== */

    /* ===== 导航栏默认深色（内页） ===== */
    .changeColor {
        background-color: var(--er-blue) !important;
    }
    .changeColor .first_a {
        color: #fff !important;
    }
    .changeColor i {
        color: #fff !important;
    }

    /* 首页：初始透明，滚动后变深蓝 */
    .pchead-transparent {
        background-color: transparent !important;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .pchead-transparent.changeColor {
        background-color: var(--er-blue) !important;
        border-bottom: none;
    }

    /* 非首页默认强制深蓝 */
    .pchead-solid {
        background-color: var(--er-blue) !important;
    }
.sep {
    height: 100px;
}

@media only screen and (max-width: 996px) {
    .sep { height: 60px; }
}

/* 内页通栏 */
.inbanner {
    width: 100%;
    height: 300px;
    background-image: url(../images/inbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inbanner strong {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}

/* 面包屑 */
.ml_bread_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 0;
    font-size: 14px;
    color: #666;
}

.ml_bread_inner a { color: #666; }
.ml_bread_inner span { margin: 0 6px; }

/* 新闻列表卡片 */
.news_list_wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.news_card {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    gap: 20px;
    align-items: flex-start;
}

.news_card_img {
    width: 220px;
    height: 148px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 13px;
}

.news_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news_card_body {
    flex: 1;
}

.news_card_body .tag {
    display: inline-block;
    font-size: 12px;
    background: var(--main-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.news_card_body h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 8px;
    font-weight: normal;
}

.news_card_body p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin: 0 0 12px;
}

.news_card_body .meta {
    font-size: 13px;
    color: #999;
}

.news_card_body a.more_link {
    color: var(--main-color);
    font-size: 14px;
}

/* 招聘列表 */
.job_list_wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.job_card {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow .3s;
}

.job_card:hover {
    box-shadow: var(--main-shadow);
}

.job_card_title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 6px;
}

.job_card_meta {
    font-size: 13px;
    color: #888;
}

.job_card_salary {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 20px;
}

.job_card_btn {
    display: inline-block;
    margin-left: 20px;
    padding: 8px 20px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background .3s;
}

.job_card_btn:hover { background: var(--main-color1); }

/* 分页 */
.er_pagination {
    text-align: center;
    padding: 20px 0 40px;
}

.er_pagination a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #ddd;
    color: #333;
    margin: 0 3px;
    transition: all .3s;
    font-size: 14px;
}

.er_pagination a.active,
.er_pagination a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* 文章详情 */
.article_wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.article_wrap h1 {
    font-size: 26px;
    color: #222;
    font-weight: normal;
    margin-bottom: 10px;
}

.article_meta {
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 24px;
}

.article_content {
    font-size: 15px;
    line-height: 30px;
    color: #333;
}

.article_back {
    margin-top: 30px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    color: #555;
    font-size: 14px;
    transition: all .3s;
}

.article_back:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* 管理后台样式 */
.admin_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 80px;
}

.admin_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 10px;
}

.admin_head h2 {
    font-size: 22px;
    color: #333;
    font-weight: normal;
}

.admin_btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background .3s;
}

.admin_btn:hover,
.admin_btn:visited { background: var(--main-color1); color: #fff; }

.admin_btn_ghost {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.admin_btn_ghost:hover { background: var(--main-color); color: #fff; }

.admin_btn_danger {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    transition: background .3s;
}

.admin_btn_danger:hover { background: #c0392b; }

.admin_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin_table th {
    background: #f5f5f5;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #ddd;
    color: #444;
}

.admin_table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #555;
    vertical-align: middle;
}

.admin_table tr:hover td { background: #fafafa; }

.admin_stat_cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.admin_stat_card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: var(--main-shadow);
    text-align: center;
}

.admin_stat_card h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    font-weight: normal;
}

.admin_stat_card .kpi {
    font-size: 36px;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 15px;
}

/* 表单 */
.admin_form_wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
}

.admin_form_group {
    margin-bottom: 18px;
}

.admin_form_group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.admin_form_group input,
.admin_form_group textarea,
.admin_form_group select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .3s;
}

.admin_form_group input:focus,
.admin_form_group textarea:focus {
    border-color: var(--main-color);
}

.admin_form_group textarea { resize: vertical; min-height: 120px; }

.admin_form_err {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

/* 联系页 */
.contact_wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0 80px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact_info {
    flex: 1;
    min-width: 260px;
}

.contact_info h3 {
    font-size: 22px;
    color: #333;
    font-weight: normal;
    margin-bottom: 20px;
    border-left: 4px solid var(--main-color);
    padding-left: 10px;
}

.contact_info_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
}

.contact_info_item i {
    color: var(--main-color);
    font-size: 18px;
    width: 22px;
}

/* 图片占位框 */
.img_placeholder {
    width: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 14px;
    border: 2px dashed #ddd;
}

@media only screen and (max-width: 996px) {
    .contact_wrap { padding: 30px 15px 60px; }
    .news_list_wrap, .job_list_wrap, .article_wrap, .admin_wrap { padding: 20px 15px 60px; }
    .news_card { flex-direction: column; }
    .news_card_img { width: 100%; height: 200px; }
    .job_card { flex-direction: column; align-items: flex-start; gap: 10px; }
    .job_card_salary, .job_card_btn { margin-left: 0; }
    .admin_stat_cards { flex-direction: column; }
}

/* ===== 时间线 ===== */
.er-timeline-section { background: #fff; }
.er-timeline { position: relative; max-width: 900px; margin: 40px auto 0; }
.er-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--er-blue), var(--er-gold)); transform: translateX(-50%); }
.er-timeline-item { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 50px; position: relative; }
.er-timeline-item:nth-child(even) { flex-direction: row-reverse; }
.er-timeline-dot { width: 52px; height: 52px; border-radius: 50%; background: var(--er-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 2; box-shadow: 0 4px 16px rgba(13,59,110,.25); position: relative; left: calc(50% - 26px); margin: 0 -26px; }
.er-timeline-dot i { color: #fff; font-size: 20px; }
.er-timeline-dot--gold { background: var(--er-gold); }
.er-timeline-dot--red { background: #c0392b; }
.er-timeline-content { flex: 1; background: #fff; border-radius: var(--er-radius); padding: 24px 28px; box-shadow: var(--er-shadow); border-left: 4px solid var(--er-blue); }
.er-timeline-item:nth-child(even) .er-timeline-content { border-left: none; border-right: 4px solid var(--er-gold); }
.er-timeline-content h3 { color: var(--er-blue); font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.er-timeline-content p { color: var(--er-muted); font-size: 14px; line-height: 24px; margin: 0; }

/* ===== 资质展示 ===== */
.er-cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 36px; margin-bottom: 80px; }
.er-cert-card { text-align: center; }
.er-cert-img { border-radius: var(--er-radius); overflow: hidden; box-shadow: var(--er-shadow); background: #f5f5f5; height: 400px; display: block; }
.er-cert-img img { width: 100%; height: auto; object-fit: cover; object-position: top; display: block; }
.er-cert-card p { margin: 14px 0 0; font-size: 15px; color: var(--er-blue); font-weight: 600; }

/* ===== 资源联动 ===== */
.er-resource-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; align-items: start; }
.er-resource-left { background: var(--er-blue); border-radius: var(--er-radius); padding: 32px; color: #fff; }
.er-resource-badge { font-size: 13px; letter-spacing: 1px; opacity: .8; margin-bottom: 16px; }
.er-resource-regions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.er-resource-regions span { background: rgba(255,255,255,.15); border-radius: 20px; padding: 6px 14px; font-size: 14px; }
.er-support-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 15px; }
.er-support-item i { color: var(--er-gold-light); font-size: 16px; }
.er-resource-right { display: flex; flex-direction: column; gap: 16px; }
.er-case-item { background: #fff; border-radius: var(--er-radius); padding: 18px 20px; box-shadow: var(--er-shadow); border-left: 4px solid var(--er-gold); }
.er-case-tag { display: inline-block; background: var(--er-blue); color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px; font-weight: 600; }
.er-case-item p { font-size: 13px; color: var(--er-muted); line-height: 22px; margin: 0; }

/* ===== 行业案例 ===== */
.er-project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 36px; }
.er-project-card { border-radius: var(--er-radius); overflow: hidden; box-shadow: var(--er-shadow); background: #fff; transition: var(--er-transition); }
.er-project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,59,110,.18); }
.er-project-img { height: 200px; overflow: hidden; }
.er-project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.er-project-card:hover .er-project-img img { transform: scale(1.06); }
.er-project-body { padding: 20px; }
.er-project-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.er-project-num { background: var(--er-blue); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 700; }
.er-project-industry { background: var(--er-gold); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; }
.er-project-body h3 { color: var(--er-blue); font-size: 16px; margin: 0 0 6px; font-weight: 700; }
.er-project-sub { font-size: 13px; color: var(--er-muted); margin: 0 0 12px; }
.er-project-detail { display: flex; flex-direction: column; gap: 6px; }
.er-project-detail span { font-size: 12px; color: #555; }
.er-project-detail i { color: var(--er-gold); margin-right: 4px; }

/* ===== 海外服务 ===== */
.er-overseas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; align-items: center; }
.er-overseas-img { border-radius: var(--er-radius); overflow: hidden; box-shadow: var(--er-shadow); }
.er-overseas-img img { width: 100%; height: 320px; object-fit: cover; }
.er-overseas-body h3 { color: var(--er-blue); font-size: 22px; font-weight: 700; margin: 0 0 14px; }
.er-overseas-body p { color: var(--er-muted); font-size: 15px; line-height: 26px; margin: 0 0 20px; }
.er-overseas-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.er-overseas-tags span { background: var(--er-blue); color: #fff; font-size: 12px; padding: 5px 12px; border-radius: 16px; }
.er-overseas-regions div { color: var(--er-muted); font-size: 14px; margin-bottom: 6px; }
.er-overseas-regions i { color: var(--er-gold); margin-right: 6px; }

/* ===== 标杆客户案例 ===== */
.er-benchmark-block { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: center; margin-bottom: 48px; background: #f8f9fc; border-radius: var(--er-radius); padding: 32px; box-shadow: var(--er-shadow); }
.er-benchmark-block--reverse { grid-template-columns: 2fr 1fr; background: #fff; }
.er-benchmark-block--reverse .er-benchmark-info { order: 2; }
.er-benchmark-block--reverse .er-benchmark-imgs { order: 1; }
.er-benchmark-logo { display: inline-flex; align-items: center; gap: 8px; background: var(--er-blue); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 12px; }
.er-benchmark-info h3 { color: var(--er-blue); font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.er-benchmark-info p { color: var(--er-muted); font-size: 14px; line-height: 24px; margin: 0; }
.er-benchmark-imgs { display: flex; flex-wrap: wrap; gap: 8px; }
.er-benchmark-imgs img { flex: 1 1 calc(33% - 8px); min-width: 80px; height: 140px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }

/* ===== 客户 Logo 墙 ===== */
.er-logo-wall { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }
.er-logo-item { background: #fff; border-radius: 10px; box-shadow: var(--er-shadow); padding: 16px 24px; display: flex; align-items: center; justify-content: center; transition: var(--er-transition); }
.er-logo-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(13,59,110,.15); }
.er-logo-item img { height: 48px; width: auto; object-fit: contain; filter: grayscale(30%); transition: filter .3s; }
.er-logo-item:hover img { filter: grayscale(0); }

/* ===== 响应式补充 ===== */
@media (max-width: 996px) {
    .er-timeline::before { left: 24px; }
    .er-timeline-item, .er-timeline-item:nth-child(even) { flex-direction: column; }
    .er-timeline-dot { left: 0; margin: 0 0 12px; }
    .er-cert-grid { grid-template-columns: 1fr 1fr; }
    .er-resource-wrap, .er-overseas-wrap { grid-template-columns: 1fr; }
    .er-project-grid { grid-template-columns: 1fr; }
    .er-benchmark-block, .er-benchmark-block--reverse { grid-template-columns: 1fr; }
    .er-benchmark-block--reverse .er-benchmark-info { order: 0; }
    .er-benchmark-block--reverse .er-benchmark-imgs { order: 0; }
}
@media (max-width: 600px) {
    .er-cert-grid { grid-template-columns: 1fr; }
    .er-benchmark-imgs img { height: 100px; }
}
/* ===== 新闻列表 ===== */
.er-news-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.er-news-list { display: flex; flex-direction: column; gap: 0; }
.er-news-item { display: flex; gap: 0; align-items: stretch; text-decoration: none; color: inherit; border-bottom: 1px solid #eaecf0; padding: 28px 0; transition: var(--er-transition); }
.er-news-item:first-child { border-top: 1px solid #eaecf0; }
.er-news-item:hover { background: #f8f9fc; padding-left: 16px; padding-right: 16px; margin: 0 -16px; border-radius: 8px; border-color: transparent; }
.er-news-item:hover .er-news-more { color: var(--er-gold); }
.er-news-item:hover .er-news-title { color: var(--er-blue-mid); }

.er-news-date { min-width: 80px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-right: 28px; border-right: 2px solid var(--er-blue); margin-right: 28px; padding-top: 4px; }
.er-news-day { font-size: 2.2rem; font-weight: 800; color: var(--er-blue); line-height: 1; }
.er-news-ym { font-size: 12px; color: var(--er-muted); margin-top: 4px; }

.er-news-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; }
.er-news-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.er-news-tag { background: var(--er-blue); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; white-space: nowrap; }
.er-news-title { font-size: 17px; font-weight: 700; color: var(--er-text); margin: 0; line-height: 1.5; transition: color .3s; }
.er-news-summary { font-size: 14px; color: var(--er-muted); line-height: 24px; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.er-news-footer { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #999; }
.er-news-footer i { margin-right: 5px; }
.er-news-more { color: var(--er-blue); font-weight: 600; font-size: 13px; transition: color .3s; }
.er-news-more i { margin-left: 4px; }

@media (max-width: 600px) {
    .er-news-date { min-width: 56px; padding-right: 16px; margin-right: 16px; }
    .er-news-day { font-size: 1.6rem; }
    .er-news-title { font-size: 15px; }
}
/* ===== Logo 文字样式 ===== */
.pclogo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.pclogo span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    border-left: 3px solid var(--er-gold);
    padding-left: 12px;
    display: inline-block;
}
.ml_mb_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.ml_mb_logo span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    border-left: 3px solid var(--er-gold);
    padding-left: 10px;
    display: inline-block;
}
/* ===== Logo 文字美化 ===== */
.pclogo, .ml_mb_logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.pclogo span, .ml_mb_logo span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    white-space: nowrap;
    position: relative;
    padding-left: 14px;
}
.pclogo span::before, .ml_mb_logo span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--er-gold);
    border-radius: 2px;
}
.ml_mb_logo span {
    font-size: 15px;
    letter-spacing: 1px;
}
/* ===== Logo 文字样式 ===== */
.pclogo { display: flex; align-items: center; text-decoration: none; }
.pclogo span {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border-left: 3px solid var(--er-gold);
    padding-left: 12px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
.ml_mb_logo { display: flex; align-items: center; text-decoration: none; }
.ml_mb_logo span {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    border-left: 3px solid var(--er-gold);
    padding-left: 10px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
/* ===== Logo 文字 ===== */
.er-logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.pchead-solid .er-logo-text,
.changeColor .er-logo-text {
    color: #fff;
}
.ml_mb_logo .er-logo-text {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}
/* ===== 服务行业 ===== */
.er-industry-section { background: #f8f9fc; }
.er-industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.er-industry-card { border-radius: var(--er-radius); overflow: hidden; box-shadow: var(--er-shadow); background: #fff; cursor: pointer; transition: var(--er-transition); }
.er-industry-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,59,110,.18); }
.er-industry-img { position: relative; height: 220px; overflow: hidden; }
.er-industry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.er-industry-card:hover .er-industry-img img { transform: scale(1.08); }
.er-industry-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,59,110,.55) 100%); }
.er-industry-body { padding: 24px 22px 20px; }
.er-industry-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--er-blue), var(--er-blue-mid)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.er-industry-icon i { color: #fff; font-size: 18px; }
.er-industry-body h3 { font-size: 18px; font-weight: 700; color: var(--er-blue); margin: 0 0 10px; }
.er-industry-body p { font-size: 13px; color: var(--er-muted); line-height: 22px; margin: 0 0 14px; }
.er-industry-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.er-industry-tags span { background: rgba(13,59,110,.08); color: var(--er-blue); font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; }

/* ===== 最新动态（无图） ===== */
.er-latestnews-section { background: #fff; }
.er-latestnews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.er-latestnews-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border-radius: var(--er-radius); border: 1px solid #eaecf0; padding: 28px 24px; transition: var(--er-transition); background: #fff; }
.er-latestnews-card:hover { border-color: var(--er-blue); box-shadow: 0 8px 32px rgba(13,59,110,.12); transform: translateY(-4px); }
.er-latestnews-card:hover .er-ln-more { color: var(--er-gold); }
.er-latestnews-date { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 2px solid var(--er-blue); }
.er-ln-day { font-size: 2.4rem; font-weight: 800; color: var(--er-blue); line-height: 1; }
.er-ln-ym { font-size: 12px; color: var(--er-muted); }
.er-latestnews-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.er-ln-tag { display: inline-block; background: var(--er-blue); color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; align-self: flex-start; }
.er-latestnews-body h3 { font-size: 16px; font-weight: 700; color: var(--er-text); margin: 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.er-latestnews-body p { font-size: 13px; color: var(--er-muted); line-height: 22px; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.er-ln-more { font-size: 13px; font-weight: 600; color: var(--er-blue); margin-top: auto; transition: color .3s; }
.er-ln-more i { margin-left: 4px; }

@media (max-width: 996px) {
    .er-industry-grid { grid-template-columns: 1fr; }
    .er-latestnews-grid { grid-template-columns: 1fr; }
}
/* ===== 核心服务卡片（Services页） ===== */
.er-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.er-service-card { background: #fff; border-radius: var(--er-radius); padding: 36px 28px; box-shadow: var(--er-shadow); position: relative; overflow: hidden; transition: var(--er-transition); border-bottom: 4px solid transparent; }
.er-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,59,110,.16); border-bottom-color: var(--er-gold); }
.er-service-num { position: absolute; top: 16px; right: 20px; font-size: 4rem; font-weight: 900; color: rgba(13,59,110,.06); line-height: 1; pointer-events: none; }
.er-service-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--er-blue), var(--er-blue-mid)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.er-service-icon i { color: #fff; font-size: 22px; }
.er-service-card h3 { font-size: 20px; font-weight: 700; color: var(--er-blue); margin: 0 0 12px; }
.er-service-card p { font-size: 14px; color: var(--er-muted); line-height: 24px; margin: 0 0 20px; }
.er-service-features { display: flex; flex-direction: column; gap: 8px; }
.er-service-features span { font-size: 13px; color: #555; display: flex; align-items: center; gap: 8px; }
.er-service-features i { color: var(--er-gold); font-size: 13px; }

@media (max-width: 996px) {
    .er-service-grid { grid-template-columns: 1fr; }
}
/* ===== 移动端Logo文字颜色修复 ===== */
.ml_mb_logo .er-logo-text {
    color: var(--er-blue) !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: none;
}