/* 全局样式（就业信息网主题色：#474747和#890f0e） */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "SimHei", "SimSun", sans-serif; color: #333; background: rgb(254, 249, 246); }
img { max-width: 100%; display: block; }

/* 懒加载动画效果 */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* 延迟动画 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 顶部深灰色栏 */
.emp-header { background: #890f0e; color: #fff; }
.emp-header__container { 
    max-width: 1400px; 
    min-height: 80px; 
    margin: 0 auto; 
    padding: 12px 20px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap;
    gap: 15px;
}
.emp-header__left { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    flex: 1;
    min-width: 200px;
}
.emp-logo { 
    height: 64px; 
    width: auto; 
    max-width: 100%;
}
.emp-site h1 { 
    font-size: 38px; 
    line-height: 1.2; 
    margin: 0;
}
.emp-site p { 
    font-size: 12px; 
    opacity: .9; 
    margin: 0;
}
.emp-header__right { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
    flex-shrink: 0;
}
.emp-search { 
    height: 32px; 
    padding: 0 10px; 
    border-radius: 16px; 
    border: none; 
    width: 220px; 
    max-width: 100%;
    font-size: 14px;
}
.emp-search-btn { 
    height: 32px; 
    padding: 0 14px; 
    border: none; 
    border-radius: 16px; 
    background: #890f0e; 
    color: #fff; 
    cursor: pointer; 
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}
.emp-search-btn:hover {
    background: #6b0b0a;
}

/* 头部响应式设计 */
@media (max-width: 1024px) {
    .emp-header__container {
        padding: 10px 15px;
        min-height: 70px;
    }
    .emp-logo {
        height: 56px;
    }
    .emp-site h1 {
        font-size: 32px;
    }
    .emp-search {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .emp-header__container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 15px;
        min-height: auto;
    }
    .emp-header__left {
        justify-content: center;
        min-width: auto;
    }
    .emp-logo {
        height: 48px;
    }
    .emp-site h1 {
        font-size: 28px;
    }
    .emp-header__right {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 8px;
    }
    .emp-search {
        flex: 1;
        max-width: 300px;
        width: auto;
    }
    .emp-search-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .emp-header__container {
        padding: 12px;
    }
    .emp-header__left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .emp-logo {
        height: 40px;
    }
    .emp-site h1 {
        font-size: 24px;
    }
    .emp-header__right {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .emp-search {
        flex: 1;
        max-width: none;
    }
    .emp-search-btn {
        flex-shrink: 0;
        padding: 8px 14px;
    }
}

/* 顶部横幅 */
.emp-hero { position: relative; }
.emp-hero__img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    display: block;
}
.emp-hero__mask { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,.3); 
}

/* 横幅响应式设计 */
@media (max-width: 1024px) {
    .emp-hero__img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .emp-hero__img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .emp-hero__img {
        height: 200px;
    }
}

/* 顶部导航栏 */
.emp-navbar {
    background: #890f0e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.emp-navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.emp-navbar__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.emp-navbar__item {
    position: relative;
}

.emp-navbar__link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.emp-navbar__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.emp-navbar__item--has-dropdown .emp-navbar__link {
    padding-right: 32px;
}

.emp-navbar__arrow {
    position: absolute;
    right: 12px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.emp-navbar__item--has-dropdown:hover .emp-navbar__arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.emp-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.emp-navbar__item--has-dropdown:hover .emp-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.emp-navbar__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.emp-navbar__dropdown-link:hover {
    background: #890f0e;
    color: #fff;
    padding-left: 24px;
}

/* 汉堡菜单按钮（移动端） */
.emp-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.emp-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.emp-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.emp-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.emp-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 移动端响应式 */
@media (max-width: 1024px) {
    .emp-navbar__link {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .emp-navbar__toggle {
        display: flex;
    }
    
    .emp-navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #890f0e;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .emp-navbar__menu.active {
        max-height: 600px;
        padding: 10px 0;
    }
    
    .emp-navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .emp-navbar__link {
        padding: 14px 20px;
        width: 100%;
        justify-content: space-between;
    }
    
    .emp-navbar__item--has-dropdown .emp-navbar__link {
        padding-right: 20px;
    }
    
    .emp-navbar__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }
    
    .emp-navbar__item--has-dropdown.active .emp-navbar__dropdown {
        max-height: 500px;
    }
    
    .emp-navbar__dropdown-link {
        padding: 10px 40px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .emp-navbar__dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 40px;
    }
    
    .emp-navbar__arrow {
        position: static;
        margin-left: auto;
    }
}

/* 悬浮快捷导航 - 已移除，保留样式以避免错误 */
.floating-nav {
    display: none;
}

.floating-nav__container {
    display: flex;
    gap: 20px;
    padding: 25px 30px;
}

.floating-nav__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 100px;
    background: #890f0e;
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(137, 15, 14, 0.3);
}

.floating-nav__btn:hover {
    background: #6b0b0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(137, 15, 14, 0.4);
}

.nav-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.nav-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* 导航项容器（用于有二级菜单的项目） */
.floating-nav__item {
    position: relative;
}

.floating-nav__btn {
    position: relative;
}

/* 二级菜单箭头 */
.nav-arrow {
    position: absolute;
    bottom: 3px;
    font-size: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.floating-nav__btn:hover .nav-arrow {
    opacity: 1;
    transform: translateY(-2px);
}

/* 二级菜单样式 */
.floating-nav__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    border: 1px solid #eee;
}

/* 二级菜单显示动画 */
.floating-nav__item:hover .floating-nav__submenu,
.floating-nav__item.submenu-open .floating-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 当二级菜单需要调整位置时的样式 */
.floating-nav__submenu.floating-nav__submenu--left {
    left: 0 !important;
    transform: translateX(0) translateY(0) !important;
}

.floating-nav__submenu.floating-nav__submenu--right {
    left: auto !important;
    right: 0 !important;
    transform: translateX(0) translateY(0) !important;
}

/* 二级菜单项样式 */
.floating-nav__subitem {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
}

.floating-nav__subitem:last-child {
    border-bottom: none;
}

.floating-nav__subitem:hover {
    background: #890f0e;
    color: #fff;
    padding-left: 24px;
}

/* 二级菜单项前的装饰 */
.floating-nav__subitem::before {
    content: '·';
    margin-right: 8px;
    color: #890f0e;
    transition: all 0.3s ease;
}

.floating-nav__subitem:hover::before {
    color: #fff;
    margin-right: 12px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .floating-nav__container {
        gap: 15px;
        padding: 20px 25px;
    }
    
    .floating-nav__btn {
        width: 110px;
        height: 90px;
    }
    
    .nav-icon {
        font-size: 26px;
    }
    
    .nav-text {
        font-size: 13px;
    }
    
    .floating-nav__submenu {
        min-width: 140px;
    }
    
    .floating-nav__subitem {
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .floating-nav__container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 20px;
        max-width: 90vw;
        justify-content: center;
        grid-template-columns: repeat(4, 1fr);
        display: grid;
    }
    
    .floating-nav__btn {
        width: 95px;
        height: 80px;
        flex: 0 0 auto;
        justify-self: center;
    }
    
    .nav-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .nav-text {
        font-size: 12px;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .floating-nav__submenu {
        min-width: 120px;
        padding: 6px 0;
        left: 50%;
        right: auto;
    }
    
    .floating-nav__subitem {
        font-size: 12px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .floating-nav__container {
        gap: 8px;
        padding: 12px 15px;
        grid-template-columns: repeat(4, 1fr);
        display: grid;
        max-width: 95vw;
    }
    
    .floating-nav__btn {
        width: 80px;
        height: 70px;
        justify-self: center;
    }
    
    .nav-icon {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .nav-text {
        font-size: 11px;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .floating-nav__submenu {
        min-width: 110px;
        padding: 4px 0;
    }
    
    .floating-nav__subitem {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* 统一容器背景色 */
.emp-icon-nav__container,
.emp-main__container,
.emp-two-cols__container,
.emp-info-quick__container,
.emp-nb__container,
.emp-info__container,
.emp-employer__container { background: #ffffff; }

/* 合并模块布局 */
.emp-nb { background: #fff; border-top: 1px solid #eaecef; }
.emp-nb__container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 24px 20px; 
    display: grid; 
    grid-template-columns: 3fr 2fr; 
    gap: 20px; 
    align-items: start; 
}
.emp-nb__left, .emp-nb__right { background: #fff; }
.emp-feature-title { 
    display: block; 
    margin-top: 10px; 
    font-size: 16px; 
    font-weight: 600; 
    color: #333; 
    text-decoration: none; 
}
.emp-feature-title:hover { color: #890f0e; }
.emp-feature-text { 
    overflow: hidden;          /* 超出隐藏 */
    text-overflow: ellipsis;   /* 文本溢出显示... */
    display: -webkit-box;      /* 弹性盒模型 */
    -webkit-box-orient: vertical;
    color: #bdbdbd;
    line-height: 24px;
}
.emp-news__cover img { 
    height: 260px; 
    object-fit: cover; 
    border: 1px solid #eee; 
    width: 100%;
}
.emp-news__cover .emp-feature-img { 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.emp-news__cover .emp-feature-img:hover { 
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.emp-left-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 16px; 
    align-items: start; 
}
.emp-left-list { margin: 0; }
.emp-left-list li{ min-height: 90px; }
.emp-right-gap { margin-top: 16px; }

/* 就业动态和招聘信息响应式设计 */
@media (max-width: 1024px) {
    .emp-nb__container {
        padding: 20px 15px;
        gap: 15px;
    }
    .emp-left-grid {
        gap: 12px;
    }
    .emp-news__cover img {
        height: 220px;
    }
    .emp-feature-title {
        font-size: 15px;
    }
    .emp-feature-text {
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .emp-nb__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    .emp-left-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .emp-news__cover img {
        height: 200px;
    }
    .emp-feature-title {
        font-size: 16px;
        margin-top: 12px;
    }
    .emp-feature-text {
        line-height: 24px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .emp-left-list li {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .emp-nb__container {
        padding: 15px 12px;
        gap: 15px;
    }
    .emp-panel__title {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 10px;
    }
    .emp-panel__title h2 {
        font-size: 18px;
    }
    .emp-news__cover img {
        height: 180px;
    }
    .emp-feature-title {
        font-size: 15px;
        margin-top: 10px;
    }
    .emp-feature-text {
        font-size: 14px;
        line-height: 22px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .emp-left-list li {
        min-height: 70px;
        padding: 10px;
    }
    .emp-bulletins li {
        padding: 10px;
    }
    .emp-date {
        width: 70px;
        height: 56px;
    }
    .emp-date b {
        font-size: 20px;
    }
    .emp-date small {
        font-size: 11px;
    }
}

/* 面板标题样式 */
.emp-panel__title { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid #eaecef; padding: 10px 0; margin-bottom: 12px; }
.emp-panel__title h2 { font-weight: 700; color: #890f0e; }
.emp-more { color: #890f0e; font-size: 14px; }

/* 左列：封面+列表 */
.emp-news { display: grid; grid-template-columns: 1fr; gap: 12px; }
.emp-news__cover { border: 1px solid #eee; }
.emp-news__cover img { height: 200px; object-fit: cover; }
.emp-news__list { list-style: none; display: grid; gap: 12px; }
.emp-news__list li { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    padding: 12px; 
    border: 1px solid #eee; 
    background: #fafafa; 
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
}
.emp-news__list li:hover { 
    background: #fff; 
    border-color: #890f0e; 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 15, 14, 0.15);
}
.emp-news__list li:hover .emp-date { 
    background: #890f0e; 
    color: #fff;
    transform: scale(1.05);
}
.emp-news__list li:hover .emp-date b,
.emp-news__list li:hover .emp-date small { 
    color: #fff; 
}
.emp-news__list li:hover a { 
    color: #890f0e; 
    font-weight: 500;
}
.emp-news__list a { color: #333; transition: all 0.3s ease; text-decoration: none; font-size: 16px; }

/* 中列：日期块公告 */
.emp-bulletins { list-style: none; display: grid; gap: 12px; }
.emp-bulletins li { 
    display: grid; 
    grid-template-columns: 80px 1fr; 
    align-items: center; 
    gap: 12px; 
    padding: 12px; 
    border: 1px solid #eee; 
    background: #fafafa; 
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
}
.emp-bulletins li:hover { 
    background: #fff; 
    border-color: #890f0e; 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 15, 14, 0.15);
}
.emp-bulletins li:hover .emp-date { 
    background: #890f0e; 
    color: #fff;
    transform: scale(1.05);
}
.emp-bulletins li:hover .emp-date b,
.emp-bulletins li:hover .emp-date small { 
    color: #fff; 
}
.emp-bulletins li:hover a { 
    color: #890f0e; 
    font-weight: 500;
}
.emp-bulletins a { color: #333; text-decoration: none; transition: all 0.3s ease; }
.emp-date { 
    width: 80px; 
    height: 64px; 
    border: 1px solid #e5e7eb; 
    text-align: center; 
    display: grid; 
    place-content: center; 
    background: #fff; 
    transition: all 0.3s ease;
    border-radius: 4px;
}
.emp-date b { font-size: 22px; color: #890f0e; line-height: 1; transition: color 0.3s ease; }
.emp-date small { color: #666; transition: color 0.3s ease; }

/* 就业信息模块（四列列表） */
.emp-info { background: #fff; border-top: 1px solid #eaecef; }
.emp-info__container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 24px 20px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
}
.emp-info__item { background: #fff; }
.emp-info__list { 
    list-style: none; 
    border: 1px solid #eee; 
}
.emp-info__list li {
    height: 50px;
    padding: 10px 12px; 
    border-top: 1px dashed #eee; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.emp-info__list li:first-child { border-top: none; }
.emp-info__list a { 
    color: #333; 
    flex: 1; 
    text-decoration: none; 
    font-size: 16px;
    line-height: 1.4;
}
.emp-info__list a:hover { color: #890f0e; }
.emp-info-date { 
    color: #999; 
    font-size: 12px; 
    margin-left: 10px;
    white-space: nowrap;
}

/* 就业信息模块响应式设计 */
@media (max-width: 1024px) {
    .emp-info__container {
        padding: 20px 15px;
        gap: 15px;
    }
    .emp-info__list li {
        height: 45px;
        padding: 8px 10px;
    }
    .emp-info__list a {
        font-size: 13px;
    }
    .emp-info-date {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .emp-info__container { 
        grid-template-columns: 1fr; 
        padding: 20px 15px;
        gap: 20px;
    }
    .emp-info__list li {
        height: auto;
        min-height: 45px;
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .emp-info__list a {
        font-size: 14px;
        width: 100%;
    }
    .emp-info-date {
        font-size: 12px;
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .emp-info__container {
        padding: 15px 12px;
        gap: 15px;
    }
    .emp-panel__title {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 10px;
    }
    .emp-panel__title h2 {
        font-size: 18px;
    }
    .emp-info__list li {
        padding: 8px 10px;
        min-height: 40px;
    }
    .emp-info__list a {
        font-size: 13px;
    }
    .emp-info-date {
        font-size: 11px;
    }
}

/* 用人单位栏目 */
.emp-employer { background: #fff; border-top: 1px solid #eaecef; }
.emp-employer__container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 24px 20px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
}

@media (max-width: 1024px) {
    .emp-employer__container {
        padding: 20px 15px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .emp-employer__container { 
        grid-template-columns: 1fr; 
        padding: 20px 15px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .emp-employer__container {
        padding: 15px 12px;
        gap: 15px;
    }
}

/* 就业服务栏目 */
.emp-service { background: #fff; border-top: 1px solid #eaecef; }
.emp-service__container { max-width: 1400px; margin: 0 auto; padding: 24px 20px; }
.emp-service__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.emp-service__btn { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 20px; 
    background: #fff; 
    border: 2px solid #eaecef; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #333; 
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.emp-service__btn:hover { 
    border-color: #890f0e; 
    color: #890f0e; 
    box-shadow: 0 8px 25px rgba(137, 15, 14, 0.15); 
    transform: translateY(-3px); 
}
.service-icon { 
    font-size: 32px; 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #f8f9fa; 
    border-radius: 50%; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon img {
    transition: opacity 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon .hover-img {
    opacity: 0;
}

.emp-service__btn:hover .service-icon .default-img {
    opacity: 0;
}

.emp-service__btn:hover .service-icon .hover-img {
    opacity: 1;
}

.emp-service__btn:hover .service-icon { 
    background: #890f0e; 
    color: #fff; 
    transform: scale(1.1);
}
.service-text h3 { 
    font-size: 18px; 
    font-weight: 600; 
    margin: 0 0 5px 0; 
    color: inherit;
}
.service-text p { 
    font-size: 14px; 
    color: #666; 
    margin: 0; 
    transition: color 0.3s ease;
}
.emp-service__btn:hover .service-text p { 
    color: #890f0e; 
}
@media (max-width: 768px) { 
    .emp-service__grid { grid-template-columns: 1fr; }
    .emp-service__btn { 
        padding: 15px; 
        gap: 12px;
    }
    .service-icon { 
        font-size: 28px; 
        width: 45px; 
        height: 45px;
    }
    .service-text h3 { 
        font-size: 16px;
    }
}

/* 就业指导中心 */
.emp-center { background: #fff; border-top: 1px solid #eaecef; }
.emp-center__container { max-width: 1400px; margin: 0 auto; padding: 24px 20px;  }
.emp-center__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.emp-center__btn { display: flex; align-items: center; justify-content: center; padding: 14px 16px; background: #fff; border: 1px solid #eee; border-radius: 10px; text-decoration: none; color: #333; font-weight: 600; transition: all .2s ease; }
.emp-center__btn:hover { border-color: #890f0e; color: #890f0e; box-shadow: 0 6px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
@media (max-width: 768px) { .emp-center__grid { grid-template-columns: 1fr; } }

/* 图片导航区域 */
.image-nav {
    background: #fff;
    border-top: 1px solid #eaecef;
    padding: 40px 0;
}

.image-nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-nav__title {
    text-align: center;
    margin-bottom: 40px;
}

.image-nav__title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #890f0e;
    margin-bottom: 10px;
}

.image-nav__title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.image-nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.image-nav__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 2px solid #eaecef;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.image-nav__item:hover {
    border-color: #890f0e;
    color: #890f0e;
    box-shadow: 0 8px 25px rgba(137, 15, 14, 0.15);
    transform: translateY(-3px);
}

.nav-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.image-nav__item:hover .nav-image {
    background: #890f0e;
    transform: scale(1.1);
}

.nav-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.image-nav__item:hover .nav-img {
    filter: brightness(0) invert(1);
}

.nav-content {
    flex: 1;
}

.nav-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: inherit;
}

.nav-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.image-nav__item:hover .nav-content p {
    color: #890f0e;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .image-nav {
        padding: 30px 0;
    }
    
    .image-nav__title h2 {
        font-size: 24px;
    }
    
    .image-nav__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-nav__item {
        padding: 15px;
        gap: 12px;
    }
    
    .nav-image {
        width: 50px;
        height: 50px;
    }
    
    .nav-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-content h3 {
        font-size: 16px;
    }
    
    .nav-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .image-nav__container {
        padding: 0 15px;
    }
    
    .image-nav__title {
        margin-bottom: 30px;
    }
    
    .image-nav__title h2 {
        font-size: 20px;
    }
    
    .image-nav__title p {
        font-size: 14px;
    }
}

/* 站点页脚（沿用） */
.site-footer { background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); color: #fff; padding: 40px 0 20px; margin-top: 20px; }

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 搜索区域 */
.search-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-btn {
    background: #ffed4e;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ffed4e;
    transform: translateY(-1px);
}

/* 主要内容区域 */
.main-content {
    padding: 40px 20px;
    min-height: 70vh;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 区域标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #890f0e;
    margin-bottom: 15px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #890f0e, #474747);
    margin: 0 auto;
    border-radius: 2px;
}

/* 就业信息展示区域 */
.employment-info {
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #890f0e, #474747);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #890f0e;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: #890f0e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #474747;
    transform: translateX(5px);
}

/* 网站底部信息 */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0 20px;
}

.site-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer-content p {
    margin-bottom: 10px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .search-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 36px;
    }
}