* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #F0F9FF;
    overflow-x: clip;
}

/* 根级兜底：即使某个元素横向溢出，也禁止出现横向滚动条（避免菜单按钮被推出视口） */
html {
    max-width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: linear-gradient(135deg, #0284C7 0%, #0891B2 100%);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    width: 260px;
}

.logo-main {
    font-size: 16px;
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 7.5px;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FACC15;
}

.nav a.active {
    color: #FACC15;
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 100%;
    width: max-content;
    max-width: 120px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 12px;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #0EA5E9 !important;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6D28D9 0%, #DB2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(34, 211, 238, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0EA5E9;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

.hero {
    position: relative;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 首页 hero 背景轮播图 */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* 半透明深色遮罩：保证白字在任何图片上都清晰可读，同时保留品牌蓝绿色调 */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 52, 79, 0.62) 0%, rgba(8, 110, 120, 0.42) 55%, rgba(14, 148, 136, 0.40) 100%);
}

/* 内容层置于轮播之上 */
.hero .container {
    position: relative;
    z-index: 1;
}

/* 轮播指示点 */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.25);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.8;
}

/* 首页 hero 顶部数据条（覆盖高校 / 成功就业青年 / 合作企业 / 就业成功率） */
.home-stats {
    max-width: 960px;
    margin: 0 auto 36px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-stat {
    padding: 6px 12px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-stat.show {
    opacity: 1;
    transform: translateY(0);
}

.home-stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    font-variant-numeric: tabular-nums;
}

.home-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .home-stat-num {
        font-size: 1.8rem;
    }
}

.section-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 30px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-page {
    padding: 100px 0 60px;
    background: white;
}

.services-page-content {
    padding: 40px 0;
}

/* 关于我们系列子页：内容区与左侧栏顶部对齐 */
.about-main .services-page-content {
    padding: 0 0 20px;
}

/* 所有子页面（含无侧边栏的就业指导页）：内容区首元素顶边统一落在
   .about-layout 的 104px 顶距处，清零首个子块的多余上/内边距，
   保证各子页面顶部间距完全一致；目录树自身保留 16px 内边距不影响对齐 */
.about-main .services-page-content > :first-child {
    margin-top: 0;
    padding-top: 0;
}

/* 简历撰写页：顶部预留固定表头高度，与其他子页面 .about-layout 的 104px 顶距保持一致 */
.resume-app {
    padding-top: 104px;
}

.services-layout {
    display: flex;
    gap: 40px;
}

.services-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.services-sidebar h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0EA5E9;
}

.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 14px;
}

.category-item:hover {
    background: #f0f4ff;
    color: #0EA5E9;
}

.category-item.active {
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
}

.category-item i {
    width: 24px;
    text-align: center;
}

.services-content {
    flex: 1;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 180px;
    position: relative;
    cursor: pointer;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image:hover .service-image-overlay {
    opacity: 1;
}

.service-image-btn {
    background: white;
    color: #0EA5E9;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-image-btn:hover {
    transform: scale(1.05);
}

.service-info {
    padding: 15px;
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    align-items: flex-start;
}

.service-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.service-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-bottom: 6px;
}

.service-card h3 {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 4px;
}

.service-footer {
    padding: 0 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #F97316;
}

.order-btn {
    display: none;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover .order-btn {
    display: block;
}

.order-btn:hover {
    background: rgba(14, 165, 233, 1);
}

.service-views {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.about-list i {
    color: #0EA5E9;
    margin-right: 10px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0EA5E9;
    font-size: 1.8rem;
}

.stats {
    padding: 30px 0 10px;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f7fbfe);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e9f2f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(14, 165, 233, 0.12);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0EA5E9;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

.timeline-section {
    padding: 40px 0;
}

.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 20px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 20px);
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 45%;
    width: 100%;
}

.timeline-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-label {
    display: block;
    font-size: 14px;
    color: #999;
}

.contact-value {
    display: block;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.contact-form {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0EA5E9;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.footer {
    background: #0C2A4D;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section ul li i {
    margin-right: 8px;
    color: #0EA5E9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0EA5E9;
    transform: translateY(-3px);
}

.subscribe-form {
    display: flex;
    margin-top: 15px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.subscribe-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.subscribe-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom .admin-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-decoration: none;
    white-space: nowrap; /* 移动端不折行：四字必须同一行 */
    flex-shrink: 0;
}

.footer-bottom .admin-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.about-layout {
    padding: 104px 0 56px;
}

.about-layout .container {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.about-sidebar {
    width: 192px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e6eef4;
    box-shadow: 0 6px 18px rgba(80, 120, 150, 0.06);
    padding: 16px 14px 20px;
    position: sticky;
    top: 96px;
    height: fit-content;
    border-radius: 16px;
}

.about-sidebar h3 {
    font-size: 15px;
    color: #2c3e50;
    margin: 0 6px 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef3f7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-sidebar h3::before {
    content: "";
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #0EA5E9, #22D3EE);
}

.about-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-menu li a {
    display: block;
    padding: 10px 12px;
    color: #5b6b78;
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.about-menu li a:hover {
    background: #f0f7fc;
    color: #0EA5E9;
    transform: translateX(2px);
}

.about-menu li a.active {
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.13), rgba(34, 211, 238, 0.07));
    color: #0987c8;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #0EA5E9;
}

.about-main {
    flex: 1;
    min-width: 0;
}

.about-section {
    padding: 30px 0;
}

.cases-page {
    padding: 100px 0 60px;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.case-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.case-image {
    height: 120px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 15px;
}

.case-category {
    display: inline-block;
    background: #0EA5E9;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}

.case-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.case-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #888;
}

.case-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.about-section.bg-light {
    background: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    border-radius: 16px;
    color: white;
    flex: 1;
}

.stat-box i {
    font-size: 28px;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.about-image {
    flex: 0 1 400px;
    min-width: 0;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.teacher-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.teacher-card:hover {
    transform: translateY(-10px);
}

.teacher-image {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.teacher-info {
    padding: 20px;
}

.teacher-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.teacher-title {
    color: #0EA5E9;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.teacher-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 合作单位：真实 logo 整齐排列，不用方形卡片、不用圆形文字 logo */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 34px 46px;
    padding: 12px 0 6px;
}

.partner-logo-item {
    display: grid;
    grid-template-rows: 60px auto;
    justify-items: center;
    align-content: start;
    row-gap: 12px;
    min-width: 64px;
}

.partner-logo-item img {
    grid-row: 1;
    align-self: center;
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo-item:hover img {
    transform: scale(1.08);
}

.partner-logo-item span {
    grid-row: 2;
    font-size: 14px;
    color: #33475a;
    font-weight: 500;
}

.contact-page {
    padding: 104px 0 60px;
    background: linear-gradient(180deg, #f6fbfe 0%, #ffffff 240px);
}

.contact-content {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e6eef4;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(80, 120, 150, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-col-title {
    font-size: 17px;
    color: #2c3e50;
    margin: 0 0 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef3f7;
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact-col-title::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(180deg, #0EA5E9, #22D3EE);
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    align-items: flex-start;
    background: #f8fbfd;
    border: 1px solid #edf3f8;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #cfe7f5;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.25);
}

.contact-icon i {
    font-size: 16px;
}

.contact-text h3 {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    color: #5b6b78;
    margin: 0;
    line-height: 1.7;
}

.contact-social {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e6eef4;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(80, 120, 150, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fbfd;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #edf3f8;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: #cfe7f5;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
}

.social-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.social-card.weibo .social-icon { background: #e6162d; }
.social-card.douyin .social-icon { background: #000; }
.social-card.bilibili .social-icon { background: #fb7299; }
.social-card.xiaohongshu .social-icon { background: #ff2442; }
.social-card.wechat .social-icon { background: #07c160; }
.social-card.qq .social-icon { background: #12b7f5; }
.social-card.wechat-group .social-icon { background: linear-gradient(135deg, #07c160, #10b981); }

.social-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.social-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.btn-block {
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

/* 弹窗打开时锁住背景滚动（移动端避免背景跟着一起滑） */
body.modal-open {
    overflow: hidden;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 650px;
    max-height: 95vh;
    height: 95vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.order-form {
    padding: 0;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox：真正隐藏滚动条，不产生位移 */
}

.order-form::-webkit-scrollbar {
    display: none; /* Chrome/Safari：隐藏滚动条，避免负 margin 造成的偏移 */
}

.survey-iframe {
    width: 100%;
    height: calc(95vh - 80px);
    border: none;
}

.service-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.service-detail-modal.active {
    display: flex;
}

.service-detail-content {
    background: white;
    width: 90%;
    max-width: 650px;
    max-height: 95vh;
    height: 95vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail-header {
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h3 {
    font-size: 20px;
}

.service-detail-body {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox：真正隐藏滚动条，不产生位移 */
}

.service-detail-body::-webkit-scrollbar {
    display: none; /* Chrome/Safari：隐藏滚动条，左右边距对称才能居中 */
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.service-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 15px;
}

.service-detail-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
}

.service-detail-stat {
    text-align: center;
}

.service-detail-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #0EA5E9;
    display: block;
}

.service-detail-stat-label {
    font-size: 12px;
    color: #999;
}

.service-detail-actions {
    display: flex;
    gap: 15px;
}

.service-detail-actions .btn {
    flex: 1;
}

.service-detail-actions .btn-outline {
    background: transparent;
    color: #0EA5E9;
    border: 2px solid #0EA5E9;
}

.service-detail-actions .btn-outline:hover {
    background: #0EA5E9;
    color: white;
}

.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background: #28a745;
}

.jobs-list {
    margin-top: 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid #eef1f4;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.job-row:last-child { border-bottom: none; }
a.job-row:hover { background: #f6fbfe; }

.job-row-main { flex: 1; min-width: 0; }

.job-row-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-cat-tag {
    flex: none;
    font-size: 12px;
    font-weight: 600;
    color: #0EA5E9;
    background: #e6f6fd;
    border: 1px solid #c8ebfb;
    padding: 2px 9px;
    border-radius: 6px;
}

.job-row-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2d3d;
}

.job-row-sub {
    font-size: 14px;
    color: #0EA5E9;
    font-weight: 500;
    margin-top: 5px;
}

.job-row-meta {
    display: flex;
    gap: 18px;
    margin-top: 6px;
    font-size: 13px;
    color: #7a8794;
    flex-wrap: wrap;
}

.job-row-meta i { color: #9aa7b4; margin-right: 5px; }

.job-row-right {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.job-deadline {
    font-size: 14px;
    font-weight: 600;
    color: #e0533d;
}

.job-deadline-label {
    font-size: 12px;
    font-weight: 400;
    color: #9aa7b4;
    margin-right: 6px;
}

.job-view {
    font-size: 13px;
    font-weight: 600;
    color: #0EA5E9;
}

.job-view i { margin-left: 4px; transition: transform 0.2s ease; }
a.job-row:hover .job-view i { transform: translateX(3px); }

.jobs-empty {
    padding: 40px;
    text-align: center;
    color: #9aa7b4;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.resources-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    border-color: transparent;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== 就业指导：求职流程图步骤条 ===== */
/* 横向可滚动流程图：主环节 + 内联子分支，整行可横向滚动 */
.roadmap-scroll {
    position: relative;
    overflow: visible;            /* 桌面：11 个环节等宽铺满，无需横向滚动；取消裁切避免圆点顶部被切 */
    margin: 0 0 6px;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: #bcd6ee transparent;
}

.roadmap-scroll::-webkit-scrollbar {
    height: 8px;
}

.roadmap-scroll::-webkit-scrollbar-thumb {
    background: #bcd6ee;
    border-radius: 8px;
}

.roadmap-scroll::-webkit-scrollbar-track {
    background: transparent;
}

/* 桌面：11 个主环节 flex:1 严格等宽铺满内容区（不横向滚动），保证首/末圆点位置固定、与下方模块对齐 */
.roadmap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

/* 贯穿全宽的连接主线：从最左到最右，保证连线与内容区同宽、左右贴边 */
.roadmap::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 3px;
    background: #cfe2f5;
    z-index: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.roadmap-step {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 0 2px;
}

/* 窄屏（手机）恢复横向滚动，避免 11 个环节被压得过挤导致文字重叠 */
@media (max-width: 760px) {
    .roadmap { min-width: max-content; }
    /* 横向滚动时保留上下内边距，避免选中节点放大 + 阴影在滚动容器顶部被裁切 */
    .roadmap-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 18px 0 14px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
}

.roadmap-node {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #eef4fb;
    color: #6b86a6;
    border: 2px solid #dbeafe;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.roadmap-name {
    font-size: 14px;
    color: #5a6b82;
    transition: color 0.25s ease;
    line-height: 1.3;
}

.roadmap-step.done .roadmap-node {
    background: #cfe7ff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.roadmap-step.active .roadmap-node {
    background: linear-gradient(135deg, #0284C7, #0E9488);
    border-color: #0284C7;
    color: #fff;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
    transform: scale(1.08);
}

.roadmap-step.active .roadmap-name {
    color: #0284C7;
    font-weight: 700;
}

.roadmap-step:hover .roadmap-node {
    border-color: #93c5fd;
}

/* 流程图连接线：纯 CSS 实线，稳定可见，无需 JS 测量 */
/* 各主环节等宽（width:108px，无 gap），::after 从本环节圆心横跨 100% 正好连到下一环节圆心 */
.roadmap-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;                 /* 与节点圆心对齐（节点高 44px，无上边距） */
    left: 50%;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    background: #cfe2f5;
    z-index: 0;
    pointer-events: none;
}

.roadmap-step.done:not(:last-child)::after {
    background: #7fb4ec;
}

.roadmap-step.active:not(:last-child)::after {
    background: #93c5fd;
}

/* 阶段元信息 + 下设环节 同一行；左右贴内容区边缘，与流程图、卡片网格对齐 */
.stage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin: 2px 0 10px;
    padding: 0;
}

/* 阶段元信息（第 N 步 / 标题 / 描述），自然宽度不拉伸 */
.stage-meta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.06), rgba(14, 148, 136, 0.06));
    border-left: 4px solid #0284C7;
    border-radius: 10px;
}

.stage-meta-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.stage-index {
    font-size: 13px;
    color: #0284C7;
    background: #fff;
    border: 1px solid #bae6fd;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.stage-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f3a55;
}

.stage-desc {
    font-size: 14px;
    color: #6b7c93;
}

/* 流程图下方的下设环节：直接排成一行选项（与阶段元信息同一行） */
.sub-roadmap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 4px 0;
}

.sub-chip {
    flex: 0 0 auto;
    cursor: pointer;
    font-size: 13px;
    color: #5a6b82;
    background: #fff;
    border: 1px solid #dbeafe;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.sub-chip:hover {
    border-color: #93c5fd;
    color: #0284C7;
}

.sub-chip.active {
    background: linear-gradient(135deg, #0284C7, #0E9488);
    border-color: #0284C7;
    color: #fff;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.sub-chip--all {
    color: #0284C7;
    font-weight: 700;
    border-style: dashed;
}

/* 子分支节点：内联插在相邻主环节之间，同一行横向排布 */
.sub-node {
    flex: 0 0 auto;
    width: 84px;
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 0 4px;
}

.sub-node-dot {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #eef4fb;
    border: 2px solid #dbeafe;
    transition: all 0.2s ease;
}

.sub-node-name {
    font-size: 12px;
    color: #5a6b82;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.sub-node--all .sub-node-name {
    color: #0284C7;
    font-weight: 700;
}

.sub-node:hover .sub-node-dot {
    border-color: #93c5fd;
}

.sub-node.active .sub-node-dot {
    background: linear-gradient(135deg, #0284C7, #0E9488);
    border-color: #0284C7;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.sub-node.active .sub-node-name {
    color: #0284C7;
    font-weight: 700;
}

/* 侧栏说明面板 */
.about-sidebar--info p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6b82;
    margin: 0 0 14px;
}

.about-sidebar-tip {
    background: rgba(2, 132, 199, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
    color: #45556b !important;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-image {
    height: 180px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 悬停显示「阅读全文」，同服务卡片的查看详情效果 */
.resource-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover .resource-image-overlay {
    opacity: 1;
}

.resource-image-btn {
    background: white;
    color: #0EA5E9;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s ease;
}

.resource-image-btn:hover {
    transform: scale(1.05);
}

.resource-content {
    padding: 20px;
}

.resource-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.resource-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* 手机：卡片单列竖排（一排一个、依次往下），不再横向滑动 */
    .resources-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
    }

    .resource-card {
        width: 100%;
        min-width: 0;
    }

    .job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .job-row-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    /* 手机：11 个主环节改为纵向列表（全部可见，无需横向滚动） */
    /* 手机：11 个主环节改为横向滑动步骤条（scroll-snap），只占一行、可左右滑、当前步高亮放大 */
    .roadmap-scroll {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 14px 0 16px;
        overscroll-behavior-x: contain;
    }

    .roadmap {
        flex-direction: row;
        align-items: center;
        min-width: max-content;
    }

    .roadmap::before {
        display: block;
    }

    .roadmap-step {
        flex: 0 0 auto;
        width: 92px;
        min-width: 0;
        display: block;
        text-align: center;
        scroll-snap-align: center;
        padding: 0 2px;
        border-bottom: none;
    }

    .roadmap-step::after {
        display: block;
    }

    .roadmap-node {
        margin: 0 auto 6px;
        width: 38px;
        height: 38px;
        flex: none;
        font-size: 14px;
    }

    .roadmap-step.active .roadmap-node {
        transform: scale(1.12);
    }

    .roadmap-name {
        font-size: 11px;
        line-height: 1.2;
        white-space: normal;
        height: 2.4em;
        overflow: hidden;
    }

    /* 阶段说明与下设环节筛选条：手机上纵向堆叠、各自占满整行 */
    .stage-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .stage-meta {
        width: 100%;
    }

    .sub-roadmap {
        width: 100%;
        flex-wrap: wrap;
    }
}

.toast.error {
    background: #dc3545;
}

.toast.info {
    background: #17a2b8;
}

@media (max-width: 768px) {
    /* 头部在 ≤992px 由抽屉式导航接管，此处不再纵向堆叠（避免固定头部过高遮挡正文） */

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-layout .container {
        flex-direction: column;
    }

    /* 关键修复：移动端 column 布局下 .about-main 默认 align-items:flex-start 会 shrink-to-fit 到
       内部含 min-width:max-content 的横向滚动容器宽度，从而把整页撑宽、菜单按钮被推出视口。
       强制占满整行并允许收缩，横向滚动条在内部裁切即可。 */
    .about-main {
        width: 100%;
        min-width: 0;
    }

    .services-page-content {
        max-width: 100%;
    }

    .about-sidebar {
        position: static;
        width: 100%;
    }

    .about-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .about-menu li {
        flex: 1 1 auto;
    }

    .about-menu li a {
        text-align: center;
        white-space: nowrap;
    }

    .about-menu li a.active {
        box-shadow: inset 0 -3px 0 #0EA5E9;
    }

    .stage-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   首页品牌叙事板块（双边桥梁模型 / 三条路径 / 运作流程）
   ============================================================ */

.hero-eyebrow {
    display: inline-block;
    font-size: 13px !important;
    letter-spacing: 2px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    margin-bottom: 18px !important;
    background: rgba(255, 255, 255, 0.12);
}

.hero-buttons .btn i {
    margin-right: 8px;
}

.bridge-section {
    padding: 76px 0 66px;
    background: #FFFFFF;
}

.bridge-section .section-title,
.paths-section .section-title,
.flow-section .section-title {
    text-align: center;
    margin-bottom: 42px;
}

.bridge-section .section-title h2,
.paths-section .section-title h2,
.flow-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.bridge-section .section-title p,
.paths-section .section-title p,
.flow-section .section-title p {
    font-size: 16px;
    color: #64748B;
    max-width: 760px;
    margin: 0 auto;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.bridge-side {
    background: #F8FBFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.bridge-side:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.12);
}

.bridge-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.bridge-demand .bridge-tag {
    background: #FEF3C7;
    color: #B45309;
}

.bridge-supply .bridge-tag {
    background: #DCFCE7;
    color: #15803D;
}

.bridge-side h3 {
    font-size: 20px;
    color: #0F172A;
    margin-bottom: 10px;
    font-weight: 700;
}

.bridge-side > p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.bridge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bridge-list li {
    font-size: 14px;
    color: #334155;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.bridge-list li i {
    color: #0EA5E9;
    font-size: 12px;
    margin-top: 5px;
}

.bridge-core {
    background: linear-gradient(160deg, #0284C7 0%, #0891B2 100%);
    border-radius: 16px;
    padding: 30px 26px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.25);
}

.bridge-core-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bridge-core h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bridge-core-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.bridge-core-steps li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14.5px;
    line-height: 1.65;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}

.bridge-core-steps li:last-child {
    border-bottom: none;
}

.bridge-core-steps li span.step-num {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FACC15;
    color: #0F172A;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.bridge-core-steps li span.step-text {
    flex: 1 1 auto;
    min-width: 0;
}

.bridge-core-note {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
}

.bridge-conclusion {
    margin-top: 32px;
    text-align: center;
    font-size: 16.5px;
    color: #334155;
    line-height: 1.9;
    background: #F0F9FF;
    border-left: 4px solid #0EA5E9;
    border-radius: 10px;
    padding: 18px 24px;
}

.bridge-conclusion strong {
    color: #0284C7;
}

.paths-section {
    padding: 72px 0;
    background: #F0F9FF;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.path-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px 26px 26px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.path-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0EA5E9, #22D3EE);
}

.path-2::before { background: linear-gradient(90deg, #14B8A6, #5EEAD4); }
.path-3::before { background: linear-gradient(90deg, #6366F1, #A5B4FC); }

.path-card:hover {
    transform: translateY(-6px);
    border-color: #BAE6FD;
    box-shadow: 0 18px 40px rgba(2, 132, 199, 0.14);
}

.path-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 42px;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
}

.path-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #E0F2FE;
    color: #0284C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.path-2 .path-icon { background: #CCFBF1; color: #0D9488; }
.path-3 .path-icon { background: #E0E7FF; color: #4F46E5; }

.path-card h3 {
    font-size: 21px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 4px;
}

.path-sub {
    font-size: 13.5px;
    color: #0EA5E9;
    font-weight: 600;
    margin-bottom: 12px;
}

.path-2 .path-sub { color: #0D9488; }
.path-3 .path-sub { color: #4F46E5; }

.path-card > p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 16px;
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #0284C7;
}

.path-2 .path-link { color: #0D9488; }
.path-3 .path-link { color: #4F46E5; }

.path-card:hover .path-link i {
    transform: translateX(4px);
}

.path-link i {
    font-size: 12px;
    transition: transform .3s ease;
}

.flow-section {
    padding: 72px 0 80px;
    background: #fff;
}

.flow-track {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
}

.flow-step {
    flex: 1 1 0;
    max-width: 210px;
    text-align: center;
    padding: 8px 6px;
}

.flow-dot {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0F2FE 0%, #CCFBF1 100%);
    color: #0284C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid #fff;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.14);
    transition: transform .3s ease;
}

.flow-step:hover .flow-dot {
    transform: translateY(-5px) scale(1.06);
}

.flow-step h4 {
    font-size: 16px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 7px;
}

.flow-step p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.7;
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: #CBD5E1;
    font-size: 15px;
    padding-bottom: 46px;
}

.flow-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-ghost {
    background: #fff;
    color: #0284C7;
    border: 2px solid #BAE6FD;
    line-height: 1.4;
}

.btn-ghost:hover {
    background: #F0F9FF;
    border-color: #0EA5E9;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .bridge-grid {
        grid-template-columns: 1fr;
    }
    .paths-grid {
        grid-template-columns: 1fr;
    }
    .flow-track {
        flex-wrap: wrap;
        gap: 22px;
    }
    .flow-step {
        flex: 1 1 40%;
        max-width: none;
    }
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 560px) {
    .bridge-section,
    .paths-section,
    .flow-section {
        padding: 48px 0;
    }
    .bridge-section .section-title h2,
    .paths-section .section-title h2,
    .flow-section .section-title h2 {
        font-size: 25px;
    }
    .flow-step {
        flex: 1 1 100%;
    }
    .flow-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   中心简介：定位标语 / 做与不做
   ============================================================ */

.about-slogan {
    font-size: 19px !important;
    font-weight: 700;
    color: #0284C7 !important;
    padding: 12px 16px;
    background: #F0F9FF;
    border-left: 4px solid #0EA5E9;
    border-radius: 8px;
    margin-bottom: 18px;
}

.about-text strong {
    color: #0F172A;
}

.do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.do-card {
    border-radius: 14px;
    padding: 24px 24px 20px;
    border: 1px solid #E2E8F0;
    background: #fff;
}

.do-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.do-yes {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.do-yes h4 {
    color: #15803D;
}

.do-no {
    background: #FFF7ED;
    border-color: #FED7AA;
}

.do-no h4 {
    color: #C2410C;
}

.do-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.do-card li {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.75;
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.do-card li:last-child {
    border-bottom: none;
}

.do-card li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.do-yes li::before { background: #22C55E; }
.do-no li::before { background: #F97316; }

@media (max-width: 768px) {
    .do-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   服务页：供给侧说明条
   ============================================================ */

.supply-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(120deg, #F0F9FF 0%, #ECFEFF 100%);
    border: 1px solid #BAE6FD;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 26px;
}

.supply-banner-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #0EA5E9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.supply-banner-text h4 {
    font-size: 16px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 4px;
}

.supply-banner-text p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.supply-banner-text a {
    color: #0284C7;
    font-weight: 600;
    text-decoration: none;
}

.supply-banner-text a:hover {
    text-decoration: underline;
}

@media (max-width: 560px) {
    .supply-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================================
   面包屑导航
   ============================================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13.5px;
    color: #64748B;
    padding: 0 0 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid #E8EFF6;
}

.breadcrumb a {
    color: #64748B;
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb a:hover {
    color: #0284C7;
}

.breadcrumb .sep {
    color: #CBD5E1;
    font-size: 10px;
}

.breadcrumb .current {
    color: #0F172A;
    font-weight: 600;
}

.breadcrumb .fa-house {
    margin-right: 4px;
}

/* ============================================================
   返回顶部
   ============================================================ */

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0EA5E9 0%, #22D3EE 100%);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .3s ease;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0284C7 0%, #0891B2 100%);
    transform: translateY(-3px);
}

@media (max-width: 560px) {
    .back-to-top {
        right: 16px;
        bottom: 18px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================================
   移动端导航：汉堡按钮 + 侧滑抽屉
   ============================================================ */

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 1001;
}

body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-direction: row !important;
        gap: 10px !important;
        align-items: center;
    }

    .logo-text {
        width: auto;
        max-width: 220px;
    }

    .logo-main {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .logo-sub {
        font-size: 7px;
        white-space: normal;
    }

    .nav-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 272px;
        max-width: 84vw;
        height: 100vh;
        background: linear-gradient(170deg, #0284C7 0%, #0891B2 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 74px 0 30px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform .32s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.22);
        z-index: 1002;
    }

    body.nav-open .nav {
        transform: translateX(0);
    }

    .nav > a,
    .nav .dropdown > .dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 22px;
        font-size: 15.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    /* 移动端：下拉触发器右侧加箭头，点击折叠/展开子菜单 */
    .nav .dropdown > .dropdown-trigger::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        opacity: 0.8;
        transition: transform 0.25s ease;
    }
    .nav .dropdown.open > .dropdown-trigger::after {
        transform: rotate(180deg);
    }

    .nav .dropdown {
        position: static;
    }

    /* 移动端：子菜单默认折叠，仅 .open 时展开 */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.14);
        box-shadow: none;
        border-radius: 0;
        max-width: none;
        width: auto;
        min-width: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        display: none;
    }
    .nav .dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.86) !important;
        text-align: left;
        padding: 11px 22px 11px 40px;
        font-size: 14px;
    }
    /* 子菜单首项"查看全部"高亮，便于从抽屉进入父栏目页 */
    .dropdown-menu .dropdown-item.view-all {
        color: #FACC15 !important;
        font-weight: 700;
    }

    .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #FACC15 !important;
    }

    .nav > a.nav-drawer-order {
        margin: 20px 22px 0;
        padding: 12px 0;
        text-align: center;
        background: #FACC15;
        color: #0F172A !important;
        border-radius: 999px;
        font-weight: 700;
        border: none !important;
        font-size: 15px;
    }

    .nav-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 34px;
        height: 34px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 17px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (min-width: 993px) {
    .nav-close,
    .nav-drawer-order {
        display: none !important;
    }
}

/* 页脚英文副标题 */
.footer-en {
    font-size: 12px !important;
    letter-spacing: 0.5px;
    opacity: 0.72;
    margin-bottom: 10px !important;
}

/* ============================================================
   移动端弹窗 / 页脚：修复"内容偏右不居中 + 后台管理折行"
   ============================================================ */
@media (max-width: 768px) {
    /* 弹窗在窄屏占满宽度并居中，避免任何残留偏移 */
    .modal,
    .service-detail-modal {
        padding: 12px;
    }
    .modal-content,
    .service-detail-content {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 92vh;
        border-radius: 14px;
    }
    .service-detail-body {
        padding: 18px;
    }
    .service-detail-info {
        flex-wrap: wrap;
    }
    .service-detail-stats {
        flex-wrap: wrap;
        gap: 14px;
    }
    .service-detail-actions {
        flex-wrap: wrap;
    }
    .service-detail-actions .btn {
        width: 100%;
    }

    /* 页脚：版权与"后台管理"纵向堆叠并居中，四字保持同一行 */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ============================================================
   联系我们：双身份入口
   ============================================================ */

.join-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.join-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.join-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.join-client::before { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.join-talent::before { background: linear-gradient(90deg, #0EA5E9, #22D3EE); }

.join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
}

.join-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.join-client .join-icon { background: #FEF3C7; color: #B45309; }
.join-talent .join-icon { background: #E0F2FE; color: #0284C7; }

.join-card h3 {
    font-size: 21px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-card > p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 14px;
}

.join-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.join-list li {
    font-size: 14px;
    color: #334155;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.join-list li i {
    font-size: 12px;
    margin-top: 5px;
}

.join-client .join-list li i { color: #F59E0B; }
.join-talent .join-list li i { color: #0EA5E9; }

.join-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.join-actions .btn {
    font-size: 15px;
    padding: 10px 22px;
}

@media (max-width: 860px) {
    .join-split {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   站内搜索
   ============================================================ */

.header-actions {
    align-items: center;
}

.header-search-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}

.header-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.search-hero {
    text-align: center;
    background: linear-gradient(135deg, #F0F9FF 0%, #ECFEFF 100%);
    border: 1px solid #DCEEF9;
    border-radius: 18px;
    padding: 38px 24px 30px;
    margin-bottom: 28px;
}

.search-hero h1 {
    font-size: 29px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 8px;
}

.search-hero > p {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 22px;
}

.search-box-lg {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #BAE6FD;
    border-radius: 999px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
}

.search-box-lg i {
    color: #94A3B8;
    font-size: 15px;
}

.search-box-lg input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px 4px;
    background: transparent;
    color: #0F172A;
}

.search-box-lg .btn {
    flex: 0 0 auto;
    padding: 10px 24px;
    font-size: 15px;
}

.search-hot {
    margin-top: 16px;
    font-size: 13.5px;
    color: #64748B;
}

.search-hot a {
    display: inline-block;
    margin: 0 4px;
    padding: 3px 12px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    color: #0284C7;
    text-decoration: none;
    transition: all .2s ease;
}

.search-hot a:hover {
    border-color: #0EA5E9;
    background: #E0F2FE;
}

.search-summary {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 18px;
}

.search-summary strong {
    color: #0284C7;
}

.search-group {
    margin-bottom: 28px;
}

.search-group-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8EFF6;
    margin-bottom: 14px;
}

.search-group-title span {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    border-radius: 999px;
    padding: 2px 9px;
}

.search-list {
    display: grid;
    gap: 12px;
}

.search-item {
    display: block;
    background: #fff;
    border: 1px solid #E8EFF6;
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    transition: all .25s ease;
}

.search-item:hover {
    border-color: #BAE6FD;
    box-shadow: 0 10px 26px rgba(2, 132, 199, 0.1);
    transform: translateY(-2px);
}

.search-item h4 {
    font-size: 16px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 6px;
}

.search-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 6px;
}

.search-item mark {
    background: #FEF08A;
    color: #92400E;
    padding: 0 2px;
    border-radius: 3px;
}

.search-meta {
    font-size: 12.5px;
    color: #94A3B8;
}

.search-empty {
    text-align: center;
    padding: 56px 20px;
    color: #94A3B8;
}

.search-empty i {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
    color: #CBD5E1;
}

.search-empty p {
    font-size: 15px;
    margin-bottom: 6px;
}

.search-empty-tip {
    font-size: 13.5px !important;
}

.search-empty-tip a {
    color: #0284C7;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .nav > a.nav-drawer-search {
        color: #FACC15 !important;
    }
}

@media (min-width: 993px) {
    .nav-drawer-search {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .search-box-lg {
        flex-wrap: wrap;
        border-radius: 16px;
        padding: 10px 14px;
    }
    .search-box-lg input {
        flex: 1 1 70%;
    }
    .search-box-lg .btn {
        width: 100%;
    }
}

