/* 通用样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* 顶部导航栏 */
        .header {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-icon {
            font-size: 2.5rem;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0;
            color: #0066cc;
        }
        
        .logo-text p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }
        
        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-group {
            position: relative;
        }
        
        .nav-item {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            display: block;
            transition: color 0.3s ease;
        }
        
        .nav-item:hover,
        .nav-item.active {
            color: #0066cc;
        }
        
        /* .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #0066cc;
        } */

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 180px;
            background-color: #fff;
            border-radius: 6px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            padding: 0.5rem 0;
            display: none;
            z-index: 1100;
        }

        .nav-group:hover .nav-dropdown,
        .nav-group:focus-within .nav-dropdown {
            display: block;
        }

        .nav-dropdown a {
            display: block;
            padding: 0.55rem 1rem;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .nav-dropdown a:hover,
        .nav-dropdown a.active {
            background-color: #f5f7fa;
            color: #0066cc;
        }
        
        /* 主内容区 */
        .main-content {
            background-color: #f5f7fa;
            min-height: calc(100vh - 200px);
        }
        
        /* 轮播图区域 */
        .carousel-section {
            position: relative;
            background-color: #ffffff;
            padding-bottom: 2rem;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            flex: 0 0 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            text-decoration: none;
            cursor: pointer;
        }
        
        .slide-1 {
            background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
        }
        
        .slide-2 {
            background: linear-gradient(135deg, #0080ff 0%, #0059b3 100%);
        }
        
        .slide-3 {
            background: linear-gradient(135deg, #004080 0%, #00264d 100%);
        }
        
        .slide-content {
            text-align: center;
            max-width: 600px;
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background-color: #fff;
            width: 30px;
            border-radius: 6px;
        }
        
        /* 登录入口 */
        .login-entries {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
            text-decoration: none;
        }
        
        .login-btn {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }
        
        .student-login {
            background-color: #0066cc;
            color: #fff;
            text-decoration: none;
            cursor: pointer;
        }
        
        .employer-login {
            background-color: #4CAF50;
            color: #fff;
            border: 1px solid #4CAF50;
            text-decoration: none;
        }
        
        .admin-login {
            background-color: #FF9800;
            color: #fff;
            border: 1px solid #FF9800;
            text-decoration: none;
        }
        
        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* 容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* 模块布局 */
        .info-layout,
        .jobs-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        
        /* 模块标题 */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        
        /* 更多链接 */
        .more-link {
            text-decoration: none;
            color: #0066cc;
            font-size: 0.9rem;
        }
        
        .more-link:hover {
            text-decoration: underline;
        }
        
        /* Tab导航 */
        .tab-nav-inline {
            display: flex;
            gap: 0.5rem;
        }
        
        .tab-btn-inline {
            padding: 0.3rem 1rem;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .tab-btn-inline:hover,
        .tab-btn-inline.active {
            background-color: #0066cc;
            color: #fff;
            border-color: #0066cc;
        }
        
        /* 通知公告模块 */
        .info-section {
            background-color: #ffffff;
            padding: 2rem 0;
            margin-bottom: 1rem;
        }
        
        /* 信息列表 */
        .info-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .info-title {
            flex: 1;
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .info-title:hover {
            color: #0066cc;
        }
        
        .info-date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 1rem;
        }
        
        /* 快捷服务 */
        .quick-links-widget {
            background-color: #f5f7fa;
            border-radius: 4px;
            padding: 1rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1rem;
            flex: 1;
        }
        
        .quick-link-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background-color: #ffffff;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            max-height: 160px;
            text-align: center;
        }
        
        .quick-link-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .quick-link-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .quick-link-icon img {
            width: 40px;
            height: 40px;
            display: block;
            object-fit: contain;
        }
        
        .quick-link-card h4 {
            font-size: 0.9rem;
            margin: 0;
            color: #333;
        }
        
        /* 招聘动态模块 */
        .jobs-section {
            background-color: #ffffff;
            padding: 2rem 0;
            margin-bottom: 1rem;
        }
        
        /* 职位列表 */
        .job-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .job-item {
            background-color: #f9f9f9;
            border-radius: 4px;
            padding: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .job-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .job-main {
            margin-bottom: 0.5rem;
        }
        
        .job-name {
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 0.2rem 0;
            color: #333;
        }
        
        .job-company {
            font-size: 0.9rem;
            color: #666;
        }
        
        .job-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        
        .meta-item {
            font-size: 0.8rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        
        .meta-item .icon {
            font-size: 0.9rem;
        }
        
        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.5rem;
        }
        
        .job-date {
            font-size: 0.8rem;
            color: #999;
        }
        
        .btn-apply {
            padding: 0.4rem 1rem;
            background-color: #0066cc;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-apply:hover {
            background-color: #0059b3;
        }
        
        /* 通知列表 */
        .notice-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .notice-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .notice-icon {
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }
        
        .notice-content {
            flex: 1;
        }
        
        .notice-title {
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 0.3rem 0;
            color: #333;
        }
        
        .notice-desc {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .notice-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
        }
        
        .notice-date {
            font-size: 0.8rem;
            color: #999;
        }
        
        .btn-detail {
            padding: 0.4rem 1rem;
            background-color: #ffffff;
            color: #0066cc;
            border: 1px solid #0066cc;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-detail:hover {
            background-color: #0066cc;
            color: #ffffff;
        }
        
        /* 招聘会列表 */
        .career-fair-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .career-fair-item {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .fair-date-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background-color: #0066cc;
            color: #fff;
            border-radius: 4px;
        }
        
        .fair-month {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .fair-day {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .fair-content {
            flex: 1;
        }
        
        .fair-title {
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 0.3rem 0;
            color: #333;
        }
        
        .fair-info {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .fair-info span {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        
        .fair-info .icon {
            font-size: 0.9rem;
        }
        
        .btn-register {
            padding: 0.4rem 1rem;
            background-color: #0066cc;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-register:hover {
            background-color: #0059b3;
        }
        
        /* 宣讲会列表 */
        .presentation-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .presentation-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .pres-time-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background-color: #0066cc;
            color: #fff;
            border-radius: 4px;
            text-align: center;
        }
        
        .pres-month {
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .pres-day {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .pres-hour {
            font-size: 0.8rem;
            margin-top: 0.2rem;
        }
        
        .pres-content {
            flex: 1;
        }
        
        .pres-company {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.3rem;
        }
        
        .company-logo {
            font-size: 1.2rem;
        }
        
        .company-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
        }
        
        .pres-title {
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 0.3rem 0;
            color: #333;
        }
        
        .pres-info {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .pres-info span {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        
        .pres-info .icon {
            font-size: 0.9rem;
        }
        
        .btn-attend {
            padding: 0.4rem 1rem;
            background-color: #0066cc;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-attend:hover {
            background-color: #0059b3;
        }
        
        /* 招聘日历 */
        .calendar-widget {
            background-color: #f5f7fa;
            border-radius: 4px;
            padding: 1rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .calendar-title {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0;
            color: #333;
        }
        
        .calendar-year {
            font-size: 0.9rem;
            color: #666;
        }
        
        .calendar-grid {
            display: flex;
            flex-direction: column;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.2rem;
            margin-bottom: 0.5rem;
        }
        
        .calendar-weekdays span {
            text-align: center;
            font-size: 0.8rem;
            font-weight: 500;
            color: #666;
            padding: 0.5rem 0;
        }
        
        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.2rem;
        }
        
        .calendar-day {
            position: relative;
            width: 100%;
            padding-bottom: 50%;
            background-color: #ffffff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calendar-day:hover {
            background-color: #e6f0ff;
        }
        
        .calendar-day.other-month {
            color: #ddd;
        }
        
        .calendar-day.today {
            background-color: #0066cc;
            color: #fff;
        }
        
        .calendar-day.has-event {
            background-color: #f0f8ff;
        }
        
        .calendar-day.has-event.today {
            background-color: #0059b3;
        }
        
        .event-dot {
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #0066cc;
        }
        
        .calendar-day.today .event-dot {
            background-color: #fff;
        }
        
        .event-tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            margin-top: 0.5rem;
            z-index: 10;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .event-tooltip::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(0, 0, 0, 0.8);
        }
        
        /* 近期活动 */
        .calendar-events {
            margin-top: 1rem;
            flex: 1;
        }
        
        .events-title {
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0 0 0.5rem 0;
            color: #333;
        }
        
        .event-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .event-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem;
            background-color: #ffffff;
            border-radius: 4px;
            font-size: 0.8rem;
            text-decoration: none;
        }
        
        .event-date {
            color: #0066cc;
            font-weight: 500;
            text-decoration: none;
        }
        
        .event-name {
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
            margin: 0 0.5rem;
        }
        
        /* 就业指导模块 */
        .guidance-section {
            background-color: #ffffff;
            padding: 2rem 0;
            margin-bottom: 1rem;
        }
        
        .guidance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .guidance-card {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background-color: #f5f7fa;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .guidance-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .guidance-image {
            font-size: 2rem;
            margin-top: 0.2rem;
        }
        
        .guidance-content {
            flex: 1;
        }
        
        .guidance-content h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0 0.5rem 0;
            color: #333;
        }
        
        .guidance-content p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 友情链接模块 */
        .friendship-section {
            background-color: #ffffff;
            padding: 2rem 0;
            margin-bottom: 1rem;
        }
        
        .friendship-slider {
            --friendship-visible-count: 5;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .friendship-slider-viewport {
            flex: 1;
            overflow: hidden;
        }

        .friendship-slider-track {
            display: flex;
            gap: 0.75rem;
            transition: transform 0.35s ease;
            will-change: transform;
        }

        .friendship-slider-btn {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 50%;
            background-color: #eef3fa;
            color: #0a4c90;
            font-size: 1.15rem;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 73, 145, 0.12);
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .friendship-slider-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            background-color: #0066cc;
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(0, 73, 145, 0.2);
        }

        .friendship-slider-btn:disabled {
            cursor: not-allowed;
            color: #b4bdc9;
            background-color: #f1f4f8;
            box-shadow: none;
        }

        .friendship-slider-btn.is-hidden {
            visibility: hidden;
            pointer-events: none;
        }
        
        .friendship-link {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 calc((100% - (var(--friendship-visible-count) - 1) * 0.75rem) / var(--friendship-visible-count));
            min-width: 0;
            min-height: 74px;
            padding: 0.55rem 0.75rem;
            background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
            border: 1px solid #e3ebf5;
            border-radius: 12px;
            box-shadow: 0 10px 22px rgba(0, 66, 133, 0.06);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .friendship-link:hover {
            transform: translateY(-3px);
            border-color: #b9d5f4;
            box-shadow: 0 16px 28px rgba(0, 66, 133, 0.12);
        }

        .friendship-link-logo {
            width: 100%;
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .link-image {
            max-width: 100%;
            max-height: 54px;
            object-fit: contain;
            filter: grayscale(10%);
            opacity: 0.82;
            transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }
        
        .friendship-link:hover .link-image {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.01);
        }

        .friendship-text {
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 500;
            color: #315171;
            text-align: center;
            word-break: break-word;
        }
        
        /* 页脚 */
        .footer {
            background-color: #004080;
            color: #fff;
            padding: 2rem 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .footer-section p {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .nav-menu {
                width: 100%;
                gap: 1rem 1.2rem;
                flex-wrap: wrap;
            }

            .nav-group {
                position: static;
            }

            .nav-dropdown {
                min-width: 150px;
            }

            .info-layout,
            .jobs-layout {
                grid-template-columns: 1fr;
            }
            
            .job-list {
                grid-template-columns: 1fr;
            }
            
            .guidance-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .friendship-slider {
                gap: 0.75rem;
            }

            .friendship-slider-btn {
                width: 38px;
                height: 38px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .login-entries {
                flex-direction: column;
                align-items: center;
            }
            
            .login-btn {
                width: 200px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tab-nav-inline {
                width: 100%;
                overflow-x: auto;
                margin: 1rem 0;
            }
        }
        
        @media (max-width: 480px) {
            .nav-menu {
                gap: 0.75rem 1rem;
            }

            .guidance-grid {
                grid-template-columns: 1fr;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .nav-item {
                font-size: 0.9rem;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }

            .friendship-link {
                min-height: 70px;
                padding: 0.5rem 0.65rem;
            }
        }
        
        /* 隐藏默认显示的内容 */
        .tab-panel,
        .info-tab-panel {
            display: none;
        }
        
        .tab-panel.active,
        .info-tab-panel.active {
            display: block;
        }

.logo {
    text-decoration: none;
}

.site-logo-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

.login-user-block {
    cursor: default;
}

.empty-item {
    color: #8c97a8;
}

.quick-notice-list {
    margin-top: 1.2rem;
}

.quick-notice-item {
    display: flex;
}

.guidance-card {
    text-decoration: none;
    color: inherit;
}

.popup-notice-panel {
    width: 280px;
    max-height: 380px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #379be9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.popup-notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    color: #fff;
    background: #379be9;
}

.popup-notice-close {
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    background: transparent;
}

.popup-notice-body {
    max-height: 320px;
    padding: 8px 10px;
    overflow-y: auto;
}

.popup-notice-item {
    padding: 8px 0;
    border-bottom: 1px dashed #d9e5f7;
}

.popup-notice-item:last-child {
    border-bottom: none;
}

.popup-notice-item h4 {
    margin: 0 0 6px;
    font-size: 14px;
}

.popup-notice-item h4 a {
    color: #1870c6;
    text-decoration: none;
}

.popup-notice-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #6d7787;
    font-size: 12px;
}

.popup-notice-item p {
    margin-top: 4px;
    color: #3d4450;
    font-size: 12px;
    line-height: 1.5;
}

.home-side-ad,
.home-float-ad {
    position: fixed;
    z-index: 1200;
    width: 120px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.home-side-ad img,
.home-float-ad img {
    width: 100%;
    height: auto;
    display: block;
}

.home-side-ad-left {
    left: 20px;
    top: 140px;
}

.home-side-ad-right {
    right: 20px;
    top: 140px;
}

.ad-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    line-height: 24px;
}

.home-float-ad {
    left: 0;
    top: 0;
    width: 140px;
}

@media (max-width: 1200px) {
    .home-side-ad,
    .home-float-ad {
        display: none !important;
    }
}
