/* ============================================
   湖北聚优项目管理有限公司 - PbootCMS 前端模板样式
   基于 Bootstrap 3 + Font Awesome 4.7 + Swiper 4.3.5
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e3a54;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e8ecf1;
    --bg: #ffffff;
    --bg-light: #f5f7fa;
    --bg-alt: #f0f4f8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --header-height: 76px;
}

/* ---------- Bootstrap Override ---------- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- 顶部信息栏 ---------- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    height: 36px;
    line-height: 36px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 24px;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Header ---------- */
.header {
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.header.sticky {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.logo a img {
    height: 50px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-item > a {
    display: block;
    padding: 0 20px;
    height: var(--header-height);
    line-height: var(--header-height);
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--primary);
}

.nav-item:hover > a::after,
.nav-item.active > a::after {
    width: 60%;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    border: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a,
.dropdown-inner a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-light);
    white-space: nowrap;
    transition: var(--transition);
}

.dropdown-menu a:hover,
.dropdown-inner a:hover {
    color: var(--primary);
    background: var(--bg-light);
    text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Banner / 轮播 ---------- */
.banner {
    position: relative;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
}

.banner-item {
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.75) 0%, rgba(14, 58, 84, 0.6) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.banner-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Swiper controls - 4.x */
.banner .swiper-button-prev,
.banner .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: var(--transition);
    background-size: 20px 20px;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.4);
}

.banner .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.banner .swiper-pagination-bullet-active {
    width: 50px;
    background: var(--accent);
}

/* ---------- Page Banner ---------- */
.page-banner {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.page-banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-banner-content .banner-sub {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    border-radius: 4px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: none;
    color: #fff;
}

.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: #fff;
}

/* ---------- Section Common ---------- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title-group {
    text-align: center;
}

.section-title-group.left {
    text-align: left;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.section-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.section-more:hover {
    color: var(--accent);
    gap: 10px;
    text-decoration: none;
}

/* ---------- Button ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.35);
    color: #fff;
}

/* ---------- 招标公告区 ---------- */
.section-notice {
    background: var(--bg);
}

.notice-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.notice-tab {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.notice-tab:hover {
    color: var(--primary);
}

.notice-tab.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.notice-panel {
    display: none;
}

.notice-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    transition: var(--transition);
}

.notice-item:hover {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding-left: 24px;
    text-decoration: none;
    color: var(--text);
}

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

.notice-date {
    flex-shrink: 0;
    width: 68px;
    text-align: center;
    padding: 8px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.date-year {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.notice-info {
    flex: 1;
    min-width: 0;
}

.notice-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-item:hover .notice-title {
    color: var(--primary);
}

.notice-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.notice-meta span {
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
}

.notice-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 18px;
}

.notice-item:hover .notice-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ---------- 关于我们 ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image {
    position: relative;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
}

.exp-text {
    font-size: 13px;
    opacity: 0.9;
}

.about-content {
    margin: 24px 0 32px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.9;
    text-indent: 2em;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* ---------- 服务项目 ---------- */
.section-service {
    background: var(--bg-alt);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.service-link:hover {
    gap: 10px;
    color: var(--accent-light);
    text-decoration: none;
}

/* ---------- 新闻动态 ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    color: var(--text);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text);
}

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--radius);
    text-align: center;
    line-height: 1.2;
}

.badge-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.badge-month {
    font-size: 11px;
    opacity: 0.9;
}

.news-body {
    padding: 24px;
}

.news-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-body h3 {
    color: var(--primary);
}

.news-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

/* ---------- 资质荣誉 ---------- */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.qual-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.qual-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.qual-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.qual-card:hover .qual-icon {
    color: #fff;
}

.qual-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    transition: var(--transition);
}

.qual-card p {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.qual-card:hover h4,
.qual-card:hover p {
    color: #fff;
}

/* ---------- 企业文化 ---------- */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.culture-card {
    background: var(--primary);
    color: #fff;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.2);
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.culture-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 26px;
}

.culture-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.culture-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.7;
}

/* ---------- 服务详情 ---------- */
.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-item {
    display: flex;
    gap: 28px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.service-detail-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.service-detail-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: var(--radius);
}

.service-detail-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-detail-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    text-indent: 2em;
}

/* ---------- List Page 列表页 ---------- */
.list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.list-toolbar-left span {
    font-size: 14px;
    color: var(--text-light);
}

.list-toolbar-left strong {
    color: var(--accent);
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    outline: none;
    width: 220px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-light);
}

.search-box button {
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-light);
}

.list-item {
    display: flex;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 24px;
    transition: var(--transition);
    color: var(--text);
}

.list-item:hover {
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
}

.list-item-date {
    flex-shrink: 0;
    width: 72px;
    text-align: center;
    padding: 10px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.li-day {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.li-month {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.list-item-body {
    flex: 1;
    min-width: 0;
}

.list-item-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item:hover .list-item-body h3 {
    color: var(--primary);
}

.list-item-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item-meta {
    margin-top: 6px;
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.meta-tag {
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 3px;
}

.meta-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.list-item-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 20px;
}

.list-item:hover .list-item-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.list-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.list-empty p {
    margin-top: 16px;
    font-size: 15px;
}

/* ---------- Pagination 分页 ---------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.pagination .page-num-current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination .page-status {
    border: none;
    color: var(--text-muted);
    min-width: auto;
}

/* ---------- Content Detail 详情页 ---------- */
.content-detail {
    max-width: 860px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.content-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.content-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.content-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.content-body {
    font-size: 16px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 40px;
}

.content-body p {
    margin-bottom: 16px;
    text-indent: 2em;
}

.content-body img {
    max-width: 100%;
    margin: 20px auto;
    border-radius: var(--radius);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-body table th,
.content-body table td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
}

.content-body table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary);
}

/* Attachments */
.content-attachments {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 30px;
}

.content-attachments h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-attachments ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.content-attachments li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.content-attachments li a:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.content-attachments li a i {
    font-size: 16px;
}

.file-size {
    font-size: 12px;
    color: var(--text-muted);
}

.content-attachments li a:hover .file-size {
    color: rgba(255, 255, 255, 0.7);
}

/* Content Tags */
.content-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tag-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.content-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.content-tags a:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

/* Content Nav */
.content-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.content-nav-item {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.content-nav-item a {
    font-size: 14px;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-nav-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.content-nav-item.next {
    text-align: right;
}

/* ---------- About Detail Page ---------- */
.about-detail-content {
    line-height: 2;
    font-size: 16px;
}

.about-detail-content p {
    text-indent: 2em;
    margin-bottom: 16px;
    color: var(--text-light);
}

.about-detail-content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.footer {
    background: #1a2332;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.social-icon:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 4px;
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.7;
    list-style: none;
}

.footer-contact li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    opacity: 0.5;
    flex-wrap: wrap;
    margin: 0;
}

.footer-bottom-inner p {
    margin: 0;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ---------- Responsive 响应式 ---------- */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-experience {
        right: 20px;
        bottom: -16px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .top-bar {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 20px;
        transform: translateX(100%);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        height: auto;
        line-height: normal;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .nav-item > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding-left: 20px;
        display: none;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item.open .dropdown-menu {
        display: block;
    }

    .banner-item {
        height: 360px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-desc {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        height: 200px;
    }

    .page-banner-content h2 {
        font-size: 24px;
    }

    .notice-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .notice-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .list-item {
        flex-wrap: wrap;
    }

    .list-toolbar {
        flex-direction: column;
        gap: 12px;
    }

    .search-box input {
        width: 180px;
    }

    .content-title {
        font-size: 22px;
    }

    .content-meta {
        flex-direction: column;
        gap: 8px;
    }

    .content-nav {
        flex-direction: column;
    }

    .content-nav-item.next {
        text-align: left;
    }

    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-num {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .notice-item {
        padding: 14px 12px;
    }

    .notice-date {
        width: 56px;
    }

    .date-day {
        font-size: 20px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 45%;
    }
}

/* ============================================
   招聘列表页
   ============================================ */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: var(--transition);
    color: var(--text);
    border-left: 4px solid transparent;
}

.job-card:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    text-decoration: none;
    color: var(--text);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.job-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.job-salary {
    font-size: 15px;
    color: var(--accent);
    font-weight: 600;
}

.job-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.job-tags span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-tags span i {
    color: var(--primary-light);
}

.job-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.job-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-more {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.job-card:hover .job-more {
    gap: 8px;
}

/* ============================================
   招聘详情页
   ============================================ */
.job-detail-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.job-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.job-info-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.job-info-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.job-info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.job-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.job-contact-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
}

.job-contact-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-contact-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.job-contact-box strong {
    color: var(--primary);
}

/* ============================================
   案例列表页
   ============================================ */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--text);
    display: block;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text);
}

.case-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-img img {
    transform: scale(1.08);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 82, 118, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.case-overlay span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: var(--transition);
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-card:hover .case-overlay span {
    background: var(--accent);
    border-color: var(--accent);
}

.case-body {
    padding: 22px;
}

.case-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.case-card:hover .case-body h3 {
    color: var(--primary);
}

.case-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.case-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   关于页面 - 丰富版
   ============================================ */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-img {
    position: relative;
}

.about-page-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-page-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-page-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-num {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.badge-txt {
    font-size: 14px;
    opacity: 0.9;
}

.about-page-content {
    margin-top: 24px;
}

.about-page-content p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 14px;
    text-indent: 2em;
}

/* 核心优势 */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advantage-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.advantage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.advantage-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary);
    color: #fff;
}

.advantage-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.advantage-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* 发展历程时间线 */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 1;
}

.timeline-content {
    background: var(--bg);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.timeline-content:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* 关于页统计栏 */
.about-stats-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat-item {
    padding: 20px 0;
}

.about-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.about-stat-label {
    display: block;
    font-size: 15px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ============================================
   招聘列表页 - 优化版
   ============================================ */
.job-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.job-filter-total {
    font-size: 14px;
    color: var(--text-light);
}

.job-filter-total strong {
    color: var(--accent);
    font-size: 18px;
}

.job-category-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.job-cat-tag,
.job-cat-tag:visited {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 30px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.job-cat-tag:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    text-decoration: none;
}

.job-cat-tag.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.job-card-title-area {
    flex: 1;
    min-width: 0;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.job-card:hover .job-apply-btn {
    background: var(--accent-light);
    gap: 8px;
}

/* 福利卡片 */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    color: #fff;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   招聘详情页 - 侧栏布局
   ============================================ */
.job-detail-layout,
.case-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.job-detail-main,
.case-detail-main {
    min-width: 0;
}

.job-detail-main .content-detail,
.case-detail-main .content-detail {
    max-width: none;
    margin: 0;
}

.job-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.job-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.job-contact-item > i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    margin-top: 2px;
}

.jc-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.job-contact-item strong {
    font-size: 15px;
    color: var(--text);
}

.job-contact-tip {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin: 0;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* 通用侧栏 */
.job-detail-sidebar,
.case-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--accent);
    font-size: 16px;
}

/* 侧栏 - 岗位列表 */
.widget-job-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.widget-job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}

.widget-job-item:last-child {
    border-bottom: none;
}

.widget-job-item:hover {
    color: var(--primary);
    padding-left: 4px;
    text-decoration: none;
}

.widget-job-item.active {
    color: var(--accent);
    font-weight: 600;
}

.wj-title {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 12px;
}

.wj-date {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* 侧栏 - 联系卡片 */
.sidebar-contact-card {
    background: var(--primary);
    color: #fff;
}

.sidebar-contact-card .widget-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sidebar-contact-card .widget-title i {
    color: var(--accent);
}

.sidebar-contact-info {
    margin-bottom: 4px;
}

.sidebar-contact-info p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

.sidebar-contact-info p i {
    flex-shrink: 0;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.sidebar-phone {
    font-size: 22px !important;
    font-weight: 700;
    opacity: 1 !important;
    margin-bottom: 6px !important;
}

.sidebar-contact-card .btn-primary {
    margin-top: 12px;
}

/* 侧栏 - 案例列表 */
.widget-case-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.widget-case-item {
    display: flex;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 0;
}

.widget-case-item:hover {
    color: var(--primary);
    text-decoration: none;
}

.widget-case-item.active {
    color: var(--accent);
}

.wci-img {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.wci-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.widget-case-item:hover .wci-img img {
    transform: scale(1.08);
}

.wci-body {
    flex: 1;
    min-width: 0;
}

.wci-body h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wci-body span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   案例列表页 - 优化版
   ============================================ */
.case-category-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.case-cat-btn,
.case-cat-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.case-cat-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    text-decoration: none;
}

.case-cat-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.case-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    z-index: 2;
}

.case-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.case-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.case-more-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.case-card:hover .case-more-link {
    gap: 4px;
    padding-right: 8px;
}

/* ============================================
   案例详情页
   ============================================ */
.case-info-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.case-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cis-label {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cis-label i {
    color: var(--primary);
}

.cis-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   新页面响应式
   ============================================ */
@media (max-width: 1024px) {
    .job-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-detail-layout,
    .case-detail-layout {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar,
    .case-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-img {
        order: -1;
    }

    .about-page-badge {
        right: 20px;
        bottom: -16px;
    }
}

@media (max-width: 768px) {
    .job-info-bar {
        grid-template-columns: 1fr 1fr;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 20px;
    }

    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-stat-num {
        font-size: 36px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar,
    .case-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .job-filter-bar {
        flex-direction: column;
        gap: 12px;
    }

    .case-info-summary {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline-dot {
        left: -25px;
        width: 12px;
        height: 12px;
    }

    .timeline::before {
        left: 11px;
    }
}

@media (max-width: 480px) {
    .job-info-bar {
        grid-template-columns: 1fr;
    }

    .job-tags {
        gap: 12px;
    }

    .about-stats-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stat-num {
        font-size: 32px;
    }

    .job-category-tags,
    .case-category-nav {
        gap: 6px;
    }

    .job-cat-tag,
    .case-cat-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
}
