/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局滚动行为 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* 导航栏高度70px + 20px缓冲 */
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 变量定义 */
:root {
    --primary-blue: #0052d9; /* 主蓝�?*/
    --dark-blue: #003d99;    /* 深蓝 */
    --light-blue: #4080ff;   /* 亮蓝 */
    --hover-blue: #0046c7;
    --text-gray: #666;
    --text-dark: #333;
    --bg-gray: #f5f7fa;
    --border-color: #e5e5e5;
}

/* --- 顶部导航 Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area__company {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-links a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    opacity: 1;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #0052d9;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f7fa;
    border: 1px solid #e5e5e5;
}

.lang-switch span {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.lang-switch .active {
    background: #0052d9;
    color: #fff;
}

/* --- 焦点�?Hero Section --- */

/* 轮播图样式 */
.hero {
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 渐隐渐显：先淡入淡出，再配合轻微位移 */
    transform: translateX(8%) scale(1.02);
    transition:
        opacity 1.2s ease-in-out,
        visibility 1.2s ease-in-out,
        transform 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1.08);
}

/* 离场：渐隐 + 向左轻微移出 */
.hero-slide.exit-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8%) scale(1.02);
}

.hero-slide:hover {
    transform: translateX(0) scale(1.12);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    padding: 0 40px;
    color: white;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-pagination .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-pagination .dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}


.address-box {
    display: flex;
}

/* 蓝色遮罩层模�?*/
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 140, 0.4); 
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    /* margin-right: 15%; 距离右侧距离 */
    /* max-width: 600px; */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.3;
}

.hero-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-pagination .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.hero-pagination .dot.active {
    background: #fff;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* --- 新闻动�?News Section --- */
.news-section {
    padding: 60px 0;
    /* background: #fcfcfc; */
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: bold;
}

.section-header .more-link {
    font-size: 12px;
    color: #666;
}

.news-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

/* 轨道：6 张（3 条数据 × 2），向左平移实现无限循环；渐隐渐显、稍慢切换 */
.news-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.85s ease-in-out;
}

.news-slider-track .news-slide {
    flex: 0 0 auto;
    min-width: 0;
}

.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card {
    background: #fff;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 图片区域：固定占位，使用 img 标签，悬停时图片放大、容器尺寸不变 */
.card-img {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    /* background-color: #f0f0f0; */
}

.card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.card-img .tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f5f5f5;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
}

.card-text {
    padding: 15px;
}

.card-text h3 {
    font-size: 14px;
    line-height: 1.5;
    height: 42px;
    color: #333;
    font-weight: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-slide:hover .card-text h3,.news-slide:hover .tag  {
    color: var(--primary-blue);
}

/* 新闻轮播图导航按钮 */
.news-slider-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
}

.news-slider-btn {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-slider-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.news-slider-btn i {
    font-size: 14px;
}

/* 新闻轮播图指示器 */
.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.news-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.news-dot.active {
    background: var(--primary-blue);
}

.news-dot:hover {
    background: var(--light-blue);
}

/* 中间那张卡片的特殊分页点 */
.card-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-bottom: 15px;
}

.card-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
}
.card-dots .dot.active { background: var(--primary-blue); }

/* --- 数据统计 Stats Banner --- */
.stats-banner {
    background: #113883; /* 对应图中的深蓝色 */
    color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 当 stats-banner 进入可视区域时添加 animate 类 */
.stats-banner.animate .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stats-banner.animate .stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stats-banner.animate .stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stats-banner.animate .stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stats-banner.animate .stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stats-banner.animate .stat-item:nth-child(5) {
    transition-delay: 0.5s;
}

.stats-banner.animate .stat-item:nth-child(6) {
    transition-delay: 0.6s;
}

.stat-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4080ff, transparent);
    transition: width 0.6s ease;
}

.stat-item:hover::after {
    width: 80%;
}

.stat-item .icon {
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.stat-item:hover .icon {
    opacity: 1;
    transform: scale(1.2) rotateY(360deg);
}

.stat-item .stat-text .label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-text .label {
    opacity: 1;
}

.stat-item .stat-text .number {
    font-size: 36px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-text .number {
    color: #4080ff;
    transform: scale(1.1);
}

.stat-item .stat-text .number small {
    font-size: 14px;
    font-weight: normal;
    margin-left: 2px;
}

/* 股票部分样式 */
.stat-item.stock {
    align-items: center;
}

.stock-info {
    text-align: left;
}

.stock-row span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.stock-row .price {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0;
}

.stock-row .price i {
    font-size: 16px;
    color: #fff; /* 实际上这里通常是红或绿，设计稿全是�?*/
}

.stock-row .time {
    font-size: 10px;
    opacity: 0.5;
}

/* --- 混合网格 Info Grid --- */
.info-grid {
    display: flex;
    height: 600px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    /* 默认背景，实际请换图 */
    background-size: cover;
    background-position: center;
}

.big-card {
    width: 60%;
    /* 替换左侧大楼图片 */
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'); 
}

.grid-right-col {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.small-card {
    height: 100%;
    width: 100%;
}

.small-card.investor {
    /* 替换投资者图�?*/
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2070&auto=format&fit=crop'); 
}
.small-card.career {
    /* 替换人才发展图片 - 深蓝�?*/
    background-color: #2662bf;
    background-image: linear-gradient(135deg, #1e5799 0%,#2989d8 100%);
}

.grid-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); /* 文字底部阴影 */
    color: #fff;
}

.grid-item .subtitle {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.grid-item h2 {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 80%;
    height: 68px;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    /* border: 1px solid #fff; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    font-size: 20px;
}

/* 人才发展特殊图标 */
.career .bg-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

/* --- 页脚 Footer --- */
footer {
    background: #fff;
    font-size: 12px;
}

.footer-top {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 370px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    display: block;
}
.contact-info p {
    line-height: 2;
    color: #333;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--primary-blue);
}

.footer-mid {
    display: flex;
    gap: 50px;
    position: relative;
}

.footer-mid-left,
.footer-mid-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-mid a {
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-mid a:hover {
    color: #1e408d;
    transform: translateY(-1px);
}

.footer-right {
    text-align: left;
}
.footer-right p {
    font-weight: bold;
    margin-bottom: 15px;
}

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

.qr-img {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
}

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

.qr-item .qr-code {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    border: 2px solid #e5e5e5;
    padding: 5px;
    background: #fff;
    transition: all 0.3s ease;
}

.qr-item:hover .qr-code {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 82, 217, 0.2);
}

.qr-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
}

.qr-item span {
    display: block;
    scale: 0.9;
    color: #666;
    font-size: 12px;
    transition: all 0.3s ease;
}

.qr-item:hover span {
    color: var(--primary-blue);
}

.footer-bottom {
    background: #0d2a66;
    color: rgba(255,255,255,0.6);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom span {
    /* margin-right: 20px; */
}

.footer-bottom .icp a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom .icp a:hover {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

/* ========== 响应式设�?========== */
/* PC端 */
@media screen and (min-width: 768px) {
    .grid-item .overlay {
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* 平板设备 (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 13px;
    }
    
    .hero-content {
        margin-right: 10%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .news-section {
        padding: 50px 20px;
    }
    
    .stats-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .stat-item .stat-text .number {
        font-size: 28px;
    }
    
    .footer-top {
        padding: 40px 5%;
    }
    
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-area__company {
        display: none;
    }
}

/* 移动设备 (最�?768px) */
@media screen and (max-width: 768px) {
    /* 导航�?*/
    .navbar {
        padding: 10px 20px;
    }
    
    .nav-container {
        /* flex-direction: column; */
        gap: 15px;
    }
    
    .logo-area {
        width: 100%;
        justify-content: center;
    }

    .logo-area__company {
        display: none;
    }
    
    .nav-links {
        display: none; /* 移动端隐藏导航，实际项目可改为汉堡菜�?*/
    }
    
    .lang-switch {
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    /* Hero区域 */
    .hero {
        height: 70vh;
        align-items: flex-end;
        justify-content: center;
    }
    
    .hero-content {
        margin: 0;
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
    
    /* 新闻区域 */
    .news-section {
        padding: 40px 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .news-slider-container {
        padding: 0 40px;
    }
    
    .news-slide {
        flex: 0 0 100%;
    }
    
    .card-img {
        height: 180px;
    }
    
    .news-slider-btn {
        width: 32px;
        height: 32px;
    }
    
    /* 数据统计 */
    .stats-banner {
        padding: 30px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }
    
    .stat-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        padding: 15px;
        background: rgba(255,255,255,0.05);
        
    }
    
    .stat-item .icon {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .stat-item .stat-text {
        text-align: left;
    }
    
    .stat-item .stat-text .number {
        font-size: 24px;
    }
    
    /* 信息网格 */
    .info-grid {
        flex-direction: column;
        height: auto;
    }
    
    .big-card {
        width: 100%;
        min-height: 400px;
    }
    
    .grid-right-col {
        width: 100%;
    }
    
    .small-card {
        min-height: 300px;
    }
    
    .grid-item .overlay {
        padding: 30px 20px;
    }
    
    .grid-item h2 {
        font-size: 20px;
        max-width: 100%;
    }
    
    /* 页脚 */
    .footer-top {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-mid {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .footer-mid-left,
    .footer-mid-right {
        align-items: center;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .qr-item img {
        width: 70px;
        height: 70px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
}

/* 小屏手机 (最�?480px) */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 11px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .card-text h3 {
        font-size: 13px;
    }
    
    .stat-item .stat-text .number {
        font-size: 20px;
    }
    
    .grid-item h2 {
        font-size: 18px;
    }
    
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qr-item img {
        width: 60px;
        height: 60px;
    }
    
    .qr-item span {
        font-size: 11px;
    }
    
    .contact-info p {
        font-size: 11px;
    }
}


/* ===

/* ========== 内页通用样式 ========== */

/* 内页Hero区域：仅使用后台配置头图，未配置或未加载时显示占位 */
.page-hero {
    --page-hero-bg: none;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
    overflow: hidden;
}

/* 背景图 + 呼吸动画（仅当 --page-hero-bg 有值时显示，无本地回退图） */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--page-hero-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: pageHeroBreathe 6s ease-in-out infinite;
}

/* 占位：未配置头图或头图未加载时显示 loading/图标 */
.page-hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}
.page-hero-placeholder::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pageHeroPlaceholderSpin 0.8s linear infinite;
}
.page-hero.page-hero-bg-loaded .page-hero-placeholder {
    display: none;
}
@keyframes pageHeroPlaceholderSpin {
    to { transform: rotate(360deg); }
}

@keyframes pageHeroBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}




.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* 内容区域 */
.content-section {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航激活状�?*/
.nav-links a.active {
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

/* ========== 关于我们页面 ========== */

.intro-block {
    margin-bottom: 60px;
}

.intro-block h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

/* 公司概况布局 */
.intro-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: stretch; /* 左右两列等高 */
}

.intro-metas {
    border-left: 3px solid var(--primary-blue);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    color: #666;
}

.intro-metas .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intro-metas .meta-label {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

.intro-metas .meta-value {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.intro-content {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.intro-content p {
    text-indent: 28px;
}
.intro-content p + p {
    margin-top: 16px;
}

@media (max-width: 992px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.name-meaning {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.meaning-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.meaning-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.meaning-item:hover::before {
    transform: scaleX(1);
}

.meaning-item:hover {
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.12);
    transform: translateY(-4px);
}

.meaning-item .char {
    font-size: 48px;
    font-weight: bold;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.meaning-item p {
    line-height: 1.8;
    color: #666;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* 使命/愿景/价值观 - 截图样式：上图下文、蓝底白字、图片悬停放大且占位不变 */
.mission-vision.mission-vision-cards {
    gap: 16px;
}

.mission-vision-cards .mission-block {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.mission-vision-cards .mission-block-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.mission-vision-cards .mission-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mission-vision-cards .mission-block:hover img {
    transform: scale(1.08);
}

.mission-vision-cards .mission-block-text {
    padding: 24px 20px;
    color: #fff;
    text-align: left;
}

.mission-vision-cards .mission-block-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-vision-cards .mission-block-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 6.4em;
}

.mission-vision-cards .mission-bg-1 { background: rgb(34, 128, 200) }
.mission-vision-cards .mission-bg-2 { background: rgb(34, 100, 200); }
.mission-vision-cards .mission-bg-3 { background: rgb(19, 66, 144); }

@media (max-width: 768px) {
    .mission-vision.mission-vision-cards {
        grid-template-columns: 1fr;
    }
    .mission-vision-cards .mission-block-img {
        height: 220px;
    }
}

.mv-card {
    padding: 50px 40px;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 217, 0.05), transparent);
    transition: left 0.5s ease;
}

.mv-card:hover::before {
    left: 100%;
}

.mv-card:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 82, 217, 0.3);
}

.mv-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mv-card:hover i {
    color: #fff;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.mv-card:hover h3 {
    color: #fff;
}

.mv-card p {
    line-height: 1.8;
    color: #666;
    transition: all 0.3s ease;
}

.mv-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    padding: 30px;
    border: 2px solid #e0e0e0;
    
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--light-blue);
    box-shadow: 0 5px 20px rgba(45, 140, 240, 0.1);
}

.value-card i {
    font-size: 36px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.value-card p {
    line-height: 1.8;
    color: #666;
}

.company-structure h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.company-card {
    padding: 40px;
    background: #fff;
    border: 2px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transition: height 0.4s ease;
}

.company-card:hover::before {
    height: 100%;
}

.company-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.12);
    transform: translateY(-2px);
}

.company-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-card:hover h4 {
    color: var(--primary-blue);
}

.company-card .year {
    color: #999;
    font-size: 13px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 4px 12px;
    background: #f5f7fa;
    border-left: 3px solid var(--primary-blue);
}

.company-card ul {
    list-style: none;
}

.company-card ul li {
    padding: 10px 0;
    color: #666;
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
    transition: all 0.2s ease;
}

.company-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.company-card:hover ul li::before {
    background: var(--light-blue);
    transform: rotate(45deg) scale(1.2);
}

.company-card ul li:hover {
    color: var(--text-dark);
    padding-left: 28px;
}

/* ========== 产品页面 ========== */

.products-intro {
    text-align: center;
    margin-bottom: 60px;
}

.products-intro h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.products-intro .subtitle {
    font-size: 16px;
    color: #666;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

/* 产品分组（战略合作产品 / 拓展产品） */
.product-list .product-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.product-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 82, 217, 0.2);
}
.product-group-title .product-group-icon.strategic {
    /* color: #d4a017; */
}
.product-group-title .product-group-icon.expansion {
    /* color: #e74c3c; */
}
.product-group .product-item {
    margin: 0;
}

.product-item {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0;
    background: #fff;
    /* border: 2px solid #e5e5e5; */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transition: height 0.4s ease;
}

.product-item:hover::before {
    height: 100%;
}

.product-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 82, 217, 0.15);
    transform: translateY(-5px);
}

/* 反向布局（图片在右侧�?*/
.product-item.reverse {
    flex-direction: row-reverse;
}

/* 产品图片区域 */
.product-image {
    flex-shrink: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

/* 单图展示 */
.product-image.single-image {
    width: 45%;
}

.product-image.single-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover .product-image.single-image img {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 82, 217, 0.2);
}

/* 多图展示（APP截图�?*/
.product-image.multi-image {
    width: 40%;
}

.app-screens {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

/* 图片包裹容器 */
.app-screen-wrapper {
    position: relative;
    width: 180px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* 内容图片 */
.app-screen-wrapper .screen-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 边框图片 - 完全覆盖在内容图片上 */
.app-screen-wrapper .screen-frame {
    position: absolute;
    top: -10%;
    left: -20%;
    width: 140%;
    height: 120%;
    object-fit: fill;
    pointer-events: none;
    z-index: 10;
}

.app-screen-wrapper:nth-child(1) {
    transform: translateY(20px);
}

.app-screen-wrapper:nth-child(2) {
    transform: scale(1.1);
    z-index: 2;
}

.app-screen-wrapper:nth-child(3) {
    transform: translateY(20px);
}

.product-item:hover .app-screen-wrapper:nth-child(1) {
    transform: translateY(10px) rotate(-3deg);
}

.product-item:hover .app-screen-wrapper:nth-child(2) {
    transform: scale(1.15);
}

.product-item:hover .app-screen-wrapper:nth-child(3) {
    transform: translateY(10px) rotate(3deg);
}

/* 产品内容区域 */
.product-content {
    flex: 1;
    padding: 45px 40px;
}

.product-content h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-item:hover .product-content h3 {
    color: var(--primary-blue);
}

.badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
}

.badge.doctor {
    background: #4caf50;
}

.badge.patient {
    background: #ff9800;
}

.badge.pharmacy {
    background: #9c27b0;
}

.badge.sales {
    background: #f44336;
}

.product-content .desc {
    line-height: 1.8;
    color: #666;
    margin-bottom: 22px;
    font-size: 15px;
}

.features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.features li {
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.features li i {
    color: #4caf50;
    font-size: 12px;
}

.tech-support {
    padding: 15px;
    background: #fff;
    border-left: 3px solid var(--light-blue);
    font-size: 14px;
    color: #666;
}

.tech-strength {
    text-align: center;
}

.tech-strength h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.strength-card {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: #fff;
    
}

.strength-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

.strength-card h4 {
    font-size: 32px;
    margin-bottom: 5px;
}

.strength-card p {
    font-size: 14px;
    opacity: 0.9;
}

.qualifications {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.qualifications h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.qualifications ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.qualifications ul li {
    padding: 10px 15px;
    background: #f9f9f9;
    border-left: 3px solid var(--light-blue);
}

/* ========== 方案页面 ========== */

.solutions-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-intro h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.solutions-intro .subtitle {
    font-size: 16px;
    color: #666;
}



.solution-detail {
    margin-bottom: 60px;
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.solution-header {
    background: #f8f9fa;
    color: #333;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.solution-header i {
    font-size: 28px;
    color: var(--primary-blue);
}

.solution-header h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    flex: 1;
    color: var(--text-dark);
}

.solution-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin: 8px 0 0 0;
    line-height: 1.6;
    color: #666;
}

.solution-body {
    padding: 40px;
}

.solution-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-image-section {
    width: 100%;
}

.solution-image {
    width: 100%;
    height: auto;
    display: block;
    /* border: 1px solid #e5e5e5; */
}

.solution-text-section {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.solution-text-section h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.solution-text-section h4:first-child {
    margin-top: 0;
}

.solution-text-section p {
    margin: 10px 0;
}

.solution-text-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.solution-text-section ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.solution-text-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.solution-text-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.solution-text-section table th,
.solution-text-section table td {
    padding: 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.solution-text-section table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* 响应式 */
@media screen and (max-width: 768px) {
    .solution-body {
        padding: 25px 20px;
    }
    
    .solution-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .solution-header h3 {
        font-size: 22px;
    }
}


/* 只有图片时占满 */
.solution-content-wrapper:has(.solution-image-section:only-child) {
    grid-template-columns: 1fr;
}

/* 只有文字时占满 */
.solution-content-wrapper:has(.solution-text-section:only-child) {
    grid-template-columns: 1fr;
}

.solution-image-section {
    width: 100%;
}

.solution-image {
    width: 100%;
    height: auto;
    /* border: 1px solid #e5e5e5; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.solution-text-section {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.solution-text-section h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.solution-text-section h4:first-child {
    margin-top: 0;
}

.solution-text-section ul {
    list-style: none;
    padding: 0;
}

.solution-text-section ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.solution-text-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .solution-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .solution-body {
        padding: 30px;
    }
    
    .solution-header {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .solution-body {
        padding: 20px;
    }
    
    .solution-header {
        padding: 25px 20px;
    }
    
    .solution-header h3 {
        font-size: 22px;
    }
}

.partners-section {
    margin-top: 60px;
    text-align: center;
}

.partners-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.partners-grid {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-card {
    padding: 30px;
    background: #f9f9f9;
    
    transition: all 0.3s;

    flex: 1 0 calc(25% - 30px); /* 默认4个，减掉gap */
    min-width: 200px;
    box-sizing: border-box;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-card i {
    font-size: 48px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.partner-card h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 14px;
    color: #666;
}

/* 方案列表链接样式 */
.solution-detail-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.solution-detail-link:hover .solution-detail {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.15);
}

.view-detail-btn {
    text-align: right;
    padding: 15px 0 0 0;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-detail-link:hover .view-detail-btn {
    color: var(--light-blue);
}

.view-detail-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.solution-detail-link:hover .view-detail-btn i {
    transform: translateX(5px);
}

/* 方案详情页样式 */
.solution-detail-page {
    max-width: 1000px;
    margin: 0 auto;
}

.detail-image-section {
    margin-bottom: 40px;
}

.detail-main-image {
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.detail-content-section {
    margin-bottom: 60px;
}

.detail-rich-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.detail-rich-content h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.detail-rich-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.detail-rich-content p {
    margin: 15px 0;
}

.detail-rich-content ul,
.detail-rich-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.detail-rich-content li {
    margin: 8px 0;
}

.detail-rich-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 1px solid #e5e5e5;
}

.detail-rich-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 15px 20px;
    margin: 20px 0;
    background: #f8f9fa;
    color: #666;
}

.back-to-solutions {
    text-align: center;
    padding: 40px 0;
}

/* 新闻详情页样式 */
.news-detail-page {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-image {
    margin-bottom: 40px;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.news-detail-content h1,
.news-detail-content h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.news-detail-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.news-detail-content p {
    margin: 15px 0;
    line-height: 1.8;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.news-detail-content li {
    margin: 8px 0;
    line-height: 1.6;
}

.news-detail-content strong {
    font-weight: 600;
    color: #000;
}

.news-detail-content em {
    font-style: italic;
}

.news-detail-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.news-detail-content a:hover {
    color: var(--hover-blue);
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    /* margin: 20px 0;
    border: 1px solid #e5e5e5; */
}

.news-detail-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 15px 20px;
    margin: 20px 0;
    background: #f8f9fa;
    color: #666;
}

/* Quill 富文本对齐：前端内容不在 .ql-editor 内，需单独声明 */
.ql-align-center {
    text-align: center;
}
.ql-align-right {
    text-align: right;
}
.ql-align-justify {
    text-align: justify;
}

.back-to-news {
    text-align: center;
    padding: 40px 0;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 217, 0.3);
}

.btn-back i {
    margin-right: 8px;
}

/* ========== 客户页面 ========== */

.clients-intro {
    text-align: center;
    margin-bottom: 60px;
}

.clients-intro h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.clients-intro .subtitle {
    font-size: 16px;
    color: #666;
}

.clients-category {
    margin-bottom: 60px;
}

.clients-category h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.client-logo {
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.client-logo:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 82, 217, 0.1);
    transform: translateY(-3px);
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.cooperation-modes {
    margin-bottom: 60px;
}

.cooperation-modes h2 {
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--primary-blue);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 48px;
    right: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

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

.back-to-top i {
    margin: 0;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 10px;
    }
}

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

.mode-card {
    padding: 30px;
    background: #f9f9f9;
    
    text-align: center;
}

.mode-card i {
    font-size: 48px;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.mode-card h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mode-card ul {
    list-style: none;
    text-align: left;
}

.mode-card ul li {
    padding: 5px 0;
    font-size: 14px;
    color: #666;
}

.mode-card ul li::before {
    content: "�?";
    color: var(--light-blue);
    font-weight: bold;
}

.achievements {
    margin-bottom: 60px;
}

.achievements h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.achievement-card {
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: #fff;
    
    text-align: center;
}

.achievement-card .number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 14px;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    
}

.cta-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--light-blue);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 140, 240, 0.3);
}

/* ========== 联系我们页面 ========== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-align: center;
}

.contact-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 32px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
}

.contact-card .highlight {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 10px 0;
}

.contact-card .highlight a {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.2s ease, transform 0.2s ease;
}


.contact-card a[href^="tel:"] {
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.contact-card a[href^="tel:"]:hover {
    color: #1e408d;
}

.contact-card .note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.address-section,
.service-area {
    /* margin-bottom: 50px; */
}

.address-section h3,
.service-area h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.address-section h3 i,
.service-area h3 i {
    color: var(--primary-blue);
    font-size: 24px;
}

.address-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.address-item {
    padding: 24px 28px;
    background: #fff;
    border: 2px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.address-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}


.address-item:hover::before {
    transform: scaleX(1);
}

.address-item::after {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    color: var(--primary-blue);
    opacity: 0.08;
    transition: all 0.3s ease;
}

.address-item:hover::after {
    opacity: 0.15;
    transform: scale(1.1);
}

.address-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.12);
    transform: translateY(-3px);
}

.address-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.address-item h4::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.address-item:hover h4 {
    color: var(--primary-blue);
}

.address-item:hover h4::after {
    width: 100%;
}

.address-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}


.address-item .company-name {
    font-size: 14px;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border-left: none;
    padding-left: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}



.address-item .company-name::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
}

.address-item .address-detail {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 12px;
}

.address-item .address-phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 4px;
    margin-bottom: 0;
    padding-left: 18px;
}

.address-item .address-phone i {
    margin-right: 6px;
    font-size: 14px;
    opacity: 0.9;
}

.address-item .address-phone::before {
    display: none;
}

.address-map-link {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: var(--primary-blue);
    text-decoration: none;
}
.address-map-link:hover {
    color: var(--primary-blue);
    opacity: 0.85;
}

.address-detail-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.address-detail-link:hover {
    color: var(--primary-blue);
}

/* H5 地图跳转：移动端显示为地址，点击依次尝试高德→百度→腾讯→高德网页 */
.map-launcher-h5 {
    display: none;
}
.map-launcher-h5 .map-launcher-trigger {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.map-launcher-h5 .map-launcher-trigger:hover {
    color: var(--primary-blue);
}

.address-item:hover .company-name {
    color: var(--primary-blue);
}

.service-area p {
    line-height: 1.8;
    color: #666;
}

.highlight-text {
    color: var(--light-blue);
    font-weight: bold;
    margin-top: 10px;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--light-blue);
    color: #fff;
    border: none;
    
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-blue);
}

/* ========== 内页响应式设�?========== */

/* 平板设备 (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .page-hero h1 {
        font-size: 40px;
    }
    
    .name-meaning {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .academic-projects {
        grid-template-columns: 1fr;
    }
    
    .three-flows {
        grid-template-columns: 1fr;
    }
    
    .evolution-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualifications ul {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 移动设备 (最�?768px) */
@media screen and (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* 关于我们 */
    .intro-block h2,
    .values-section h2,
    .company-structure h2 {
        font-size: 24px;
    }
    
    .meaning-item .char {
        font-size: 36px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .mv-card i {
        font-size: 36px;
    }
    
    .mv-card h3 {
        font-size: 20px;
    }
    
    /* 产品页面 */
    .products-intro h2 {
        font-size: 24px;
    }
    
    .product-item {
        flex-direction: column;
        /* padding: 30px 20px; */
    }
    
    .product-icon {
        margin: 0 auto;
    }
    
    .product-content h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .badge {
        display: block;
        text-align: center;
        margin: 10px auto;
        width: fit-content;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .strength-card {
        padding: 20px;
    }
    
    .strength-card h4 {
        font-size: 24px;
    }
    
    .qualifications ul {
        grid-template-columns: 1fr;
    }
    
    /* 方案页面 */
    .solutions-intro h2 {
        font-size: 24px;
    }
    
    .solution-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .solution-header h3 {
        font-size: 20px;
    }
    
    .solution-body {
        padding: 30px 20px;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cases-table {
        font-size: 12px;
    }
    
    .cases-table th,
    .cases-table td {
        padding: 10px 5px;
    }
    
    .academic-projects {
        grid-template-columns: 1fr;
    }
    
    .three-flows {
        grid-template-columns: 1fr;
    }
    
    .evolution-steps {
        grid-template-columns: 1fr;
    }
    
    .docs-list {
        flex-direction: column;
    }
    
    /* .partners-grid {
        justify-content: center;
    } */
    
    /* 客户页面 */
    .clients-intro h2 {
        font-size: 24px;
    }
    
    .clients-category h3 {
        font-size: 20px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        padding: 20px;
    }
    
    .cooperation-modes h2,
    .achievements h2 {
        font-size: 24px;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievement-card {
        padding: 20px 15px;
    }
    
    .achievement-card .number {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    /* 联系我们 */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 24px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .address-list {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* 小屏手机 (最�?480px) */
@media screen and (max-width: 480px) {
    .page-hero h1 {
        font-size: 24px;
    }
    
    .page-hero p {
        font-size: 12px;
    }
    
    .intro-block h2,
    .values-section h2,
    .company-structure h2,
    .products-intro h2,
    .solutions-intro h2,
    .clients-intro h2,
    .cooperation-modes h2,
    .achievements h2,
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 20px;
    }
    
    .meaning-item {
        padding: 20px;
    }
    
    .meaning-item .char {
        font-size: 28px;
    }
    
    .mv-card i {
        font-size: 28px;
    }
    
    .product-content h3 {
        font-size: 18px;
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-table {
        display: block;
        overflow-x: auto;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* 让信息网格卡片可点击 */
.info-grid a.grid-item {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.info-grid a.grid-item:hover .overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.info-grid a.grid-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s;
}

/* ========== Logo和图片占位符样式 ========== */

/* 主Logo样式 */
.logo-area a {
    display: block;
    line-height: 0;
}

.main-logo {
    height: 45px;
    display: block;
    transition: all 0.3s ease;
}

.main-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* 新闻卡片图片背景 */
.news-img-1 {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    position: relative;
}

.news-img-1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.news-img-2 {
    background: linear-gradient(135deg, #8ebbf0 0%, #a8d0f5 100%);
    position: relative;
}

.news-img-2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.news-img-3 {
    background: linear-gradient(135deg, var(--light-blue) 0%, #5ca3f5 100%);
    position: relative;
}

.news-img-3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

/* 客户Logo样式 */
.client-logo {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo span {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-align: center;
    padding: 10px;
}

/* 响应式调�?*/
@media screen and (max-width: 768px) {
    .main-logo {
        height: 38px;
    }
    
    .qr-item .qr-code {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    .main-logo {
        height: 32px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .qr-item .qr-code {
        width: 60px;
        height: 60px;
    }
}

/* ========== 内页响应式设�?========== */

/* 平板设备 (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .page-hero h1 {
        font-size: 40px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .name-meaning {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .academic-projects {
        grid-template-columns: 1fr;
    }
    
    .three-flows {
        grid-template-columns: 1fr;
    }
    
    .evolution-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualifications ul {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 移动设备 (最�?768px) */
@media screen and (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 14px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* 关于我们 */
    .intro-block h2,
    .values-section h2,
    .company-structure h2 {
        font-size: 24px;
    }
    
    .meaning-item .char {
        font-size: 36px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .mv-card i {
        font-size: 36px;
    }
    
    .mv-card h3 {
        font-size: 20px;
    }
    
    /* 产品页面 */
    .products-intro h2 {
        font-size: 24px;
    }
    
    .product-item {
        flex-direction: column;
        /* padding: 30px 20px; */
    }
    
    .product-icon {
        margin: 0 auto;
    }
    
    .product-content h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .badge {
        display: block;
        text-align: center;
        margin: 10px auto;
        width: fit-content;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .strength-card {
        padding: 20px;
    }
    
    .strength-card h4 {
        font-size: 24px;
    }
    
    .qualifications ul {
        grid-template-columns: 1fr;
    }
    
    /* 方案页面 */
    .solutions-intro h2 {
        font-size: 24px;
    }
    
    .solution-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .solution-header h3 {
        font-size: 20px;
    }
    
    .solution-body {
        padding: 30px 20px;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cases-table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
    }
    
    .cases-table th,
    .cases-table td {
        padding: 10px 5px;
    }
    
    .academic-projects {
        grid-template-columns: 1fr;
    }
    
    .three-flows {
        grid-template-columns: 1fr;
    }
    
    .evolution-steps {
        grid-template-columns: 1fr;
    }
    
    .docs-list {
        flex-direction: column;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    /* 客户页面 */
    .clients-intro h2 {
        font-size: 24px;
    }
    
    .clients-category h3 {
        font-size: 20px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        padding: 20px;
    }
    
    .cooperation-modes h2,
    .achievements h2 {
        font-size: 24px;
    }
    
    .modes-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievement-card {
        padding: 20px 15px;
    }
    
    .achievement-card .number {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    /* 联系我们 */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 24px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .address-list {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* 小屏手机 (最�?480px) */
@media screen and (max-width: 480px) {
    .page-hero h1 {
        font-size: 24px;
    }
    
    .page-hero p {
        font-size: 12px;
    }
    
    .intro-block h2,
    .values-section h2,
    .company-structure h2,
    .products-intro h2,
    .solutions-intro h2,
    .clients-intro h2,
    .cooperation-modes h2,
    .achievements h2,
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 20px;
    }
    
    .meaning-item {
        padding: 20px;
    }
    
    .meaning-item .char {
        font-size: 28px;
    }
    
    .mv-card i {
        font-size: 28px;
    }
    
    .product-content h3 {
        font-size: 18px;
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ========== 新闻与媒体页�?========== */

.news-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #2d8cf0;
}

.tab-btn.active {
    color: #00338d;
    font-weight: bold;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2d8cf0;
}

/* 新闻网格布局 - 三列卡片 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.news-article {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f9f9f9;
    
    transition: all 0.3s;
}

.news-article:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.article-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #00338d 0%, #2d8cf0 100%);
    color: #fff;
    
}

.article-date .month {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.article-date .year {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.article-content {
    flex: 1;
}

.article-tag {
    display: inline-block;
    padding: 4px 12px;
    
    font-size: 12px;
    margin-bottom: 10px;
}

.article-tag.company {
    background: #e3f2fd;
    color: #2d8cf0;
}

.article-tag.academic {
    background: #f3e5f5;
    color: #9c27b0;
}

.article-tag.business {
    background: #e8f5e9;
    color: #4caf50;
}

.article-tag.industry {
    background: #fff3e0;
    color: #ff9800;
}

.article-content h3 {
    font-size: 20px;
    color: #00338d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 14px;
}

.article-meta span i {
    margin-right: 5px;
}

.read-more {
    color: #2d8cf0;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more:hover {
    color: #00338d;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
}

.page-btn:hover {
    border-color: #2d8cf0;
    color: #2d8cf0;
    text-decoration: none;
}

.page-btn.active {
    background: #2d8cf0;
    color: #fff;
    border-color: #2d8cf0;
    cursor: default;
}

.page-dots {
    padding: 8px 5px;
    color: #999;
    font-size: 14px;
}


/* ========== 职业发展页面 ========== */

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro h2 {
    font-size: 32px;
    color: #00338d;
    margin-bottom: 15px;
}

.careers-intro .subtitle {
    font-size: 16px;
    color: #666;
}

.top-model {
    margin-bottom: 60px;
}

.top-model h3 {
    font-size: 28px;
    color: #00338d;
    margin-bottom: 30px;
    text-align: center;
}

.top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.top-card {
    padding: 40px 30px;
    background: #f9f9f9;
    
    text-align: center;
    transition: all 0.3s;
}

.top-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.top-letter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00338d 0%, #2d8cf0 100%);
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.top-card h4 {
    font-size: 20px;
    color: #00338d;
    margin-bottom: 15px;
}

.top-card ul {
    list-style: none;
    text-align: left;
}

.top-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.top-card ul li::before {
    content: "�?;
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    font-size: 32px;
    color: #00338d;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: #f9f9f9;
    
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.benefit-card i {
    font-size: 48px;
    color: #2d8cf0;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 18px;
    color: #00338d;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* 人才发展卡片：悬停时图片自下而上滑入覆盖文字，文字位置不变 */
.benefit-cards-flip {
    /* 无翻转，仅作容器 */
}

.benefit-card-flip {
    min-height: 260px;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0.96;
    transition: opacity 0.4s ease;
}

.benefit-card-flip:hover {
    opacity: 1;
}

.benefit-card-flip .benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
}

/* 文字层：始终在原位，不参与位移 */
.benefit-card-flip .benefit-card-front,
.benefit-card-flip .benefit-card-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 260px;
}

/* 文字层：默认在下方隐藏，悬停时自下而上滑入显示 */
.benefit-card-flip .benefit-card-front {
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.benefit-card-flip:hover .benefit-card-front {
    transform: translateY(0);
}

/* 图片层：默认展示，悬停时向上滑出隐藏 */
.benefit-card-flip .benefit-card-back {
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.5s ease;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.benefit-card-flip:hover .benefit-card-back {
    transform: translateY(-100%);
}

.benefit-card-flip .benefit-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card-flip .benefit-card-back-placeholder {
    font-size: 64px;
    color: #2d8cf0;
    opacity: 0.5;
}

.benefit-card-flip .benefit-card-front.benefit-card:hover {
    background: #f9f9f9;
}

/* 人才招聘入口：社会招聘 / 校园招聘 两张横排卡片 */

.recruitment-entry-section h2 {
    font-size: 32px;
    color: #00338d;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}
.recruitment-entry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.recruitment-entry-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    min-height: 280px;
    text-decoration: none;
    color: #fff;
}
.recruitment-entry-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #e0e0e0;
}
.recruitment-entry-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
/* 仅当鼠标在图片区域时图片放大（鼠标在 overlay 上时 overlay 在上层，image-wrap 不触发 hover）；占位空间不变 */
.recruitment-entry-image-wrap:hover img {
    transform: scale(1.08);
}
.recruitment-entry-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    /* background: rgba(0, 51, 141, 0.35); */
    /* border-radius: 12px; */
    /* transition: background 0.3s ease; */
    pointer-events: auto;
}
/* .recruitment-entry-card:hover .recruitment-entry-overlay {
    background: rgba(0, 51, 141, 0.5);
} */
.recruitment-entry-icon {
    font-size: 48px;
    opacity: 0.95;
    transition: transform 0.4s ease;
}
.recruitment-entry-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
/* 鼠标在文字/图标上时呼吸效果（此时未悬停 image-wrap，图片不放大） */
.recruitment-entry-overlay:hover .recruitment-entry-icon,
.recruitment-entry-overlay:hover .recruitment-entry-title {
    animation: recruitmentEntryBreathe 2s ease-in-out infinite;
}
@keyframes recruitmentEntryBreathe {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.08); opacity: 1; }
}
@media (max-width: 768px) {
    .recruitment-entry-cards {
        grid-template-columns: 1fr;
    }
    .recruitment-entry-card {
        min-height: 220px;
    }
}

.jobs-section {
    margin-bottom: 60px;
}

.jobs-section h2 {
    font-size: 32px;
    /* 与“人才发展”标题保持一致色值 */
    color: #00338d;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.job-category {
    margin-bottom: 50px;
}

.job-category h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    padding-bottom: 15px;
}

.job-category h3 i {
    color: var(--primary-blue);
    font-size: 26px;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.job-card {
    padding: 35px;
    background: #fff;
    border: 2px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transition: height 0.4s ease;
}

.job-card:hover::before {
    height: 100%;
}

.job-card::after {
    content: "\f0b1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 60px;
    color: var(--primary-blue);
    opacity: 0.05;
    transition: all 0.3s ease;
}

.job-card:hover::after {
    opacity: 0.1;
    transform: scale(1.1) rotate(-5deg);
}

.job-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 82, 217, 0.15);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.job-header h4 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-card:hover .job-header h4 {
    color: var(--primary-blue);
}

.job-location {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.job-location::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-blue);
}

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

.job-tags .tag {
    padding: 6px 14px;
    background: #f5f7fa;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.job-card:hover .job-tags .tag {
    background: #e8f0fe;
    border-color: var(--primary-blue);
}

.job-desc {
    margin-bottom: 25px;
    max-height: 180px;
    overflow: hidden;
    position: relative;
}

/* 底部渐隐 + 省略号效果，提示还有更多内容 */
.job-desc::after {
    content: "…";
    position: absolute;
    right: 10px;
    bottom: 4px;
    padding-left: 40px;
    text-align: right;
    font-size: 18px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.4);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 40%, #fff 100%);
}

.job-desc p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 18px 0 12px;
    font-size: 15px;
}

.job-desc ul {
    list-style: none;
}

.job-desc ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    transition: all 0.2s ease;
}

.job-desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.job-card:hover .job-desc ul li::before {
    background: var(--light-blue);
    transform: rotate(45deg) scale(1.2);
}

.job-desc ul li:hover {
    color: var(--text-dark);
    padding-left: 28px;
}

/* 职位卡片“查看更多”链接样式 */
.job-actions {
    display: flex;
    justify-content: flex-end;
}
.job-more-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 8px;
    padding-left: 18px; /* 与岗位描述文字对齐 */
}

.job-more-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.job-more-link:hover span.link-text {
    text-decoration: underline;
}

.job-more-link:hover i {
    transform: translateX(2px);
}

.apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

/* .apply-btn:hover::before {
    width: 300px;
    height: 300px;
} */

.apply-btn:hover {
    background: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(0, 82, 217, 0.3);
    transform: translateY(-2px);
}

.apply-section {
    text-align: center;
}

.apply-section h2 {
    font-size: 32px;
    color: #00338d;
    margin-bottom: 40px;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.apply-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00338d 0%, #2d8cf0 100%);
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.apply-step h4 {
    font-size: 18px;
    color: #00338d;
    margin-bottom: 10px;
}

.apply-step p {
    color: #666;
    font-size: 14px;
}

/* 新闻和职业发展页面响应式 */
@media screen and (max-width: 1024px) {
    .top-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .job-list {
        grid-template-columns: 1fr;
    }
    
    .apply-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 新闻网格响应式 - 平板设备两列 */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .news-article {
        flex-direction: column;
        padding: 20px;
    }
    
    .article-date {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }
    
    .article-date .month,
    .article-date .year {
        display: inline;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 新闻网格响应式 - 移动端单列 */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .careers-intro h2,
    .benefits-section h2,
    .jobs-section h2,
    .apply-section h2 {
        font-size: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .apply-steps {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .article-content h3 {
        font-size: 16px;
    }
    
    .top-letter {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .benefit-card i {
        font-size: 36px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


/* ========== 最终导航栏修复 ========== */

/* 强制所有页面使用白色背景导航栏 */
.navbar {
    position: fixed !important;
    background: #fff !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* 导航链接深色文字 */
.nav-item > a,
.nav-links a {
    color: #333 !important;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: #0052d9 !important;
}
/* 移除渐变背景 */
.navbar::before {
    display: none !important;
}
/* ========== 完整导航栏样�?========== */

/* 导航栏基础 */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 2000 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
    height: 70px !important;
}

/* Logo */
.logo-area {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.logo-area a {
    display: block !important;
    line-height: 0 !important;
}

.main-logo {
    height: 45px !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.main-logo:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
}

/* 导航链接容器 */
.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    height: 100% !important;
}

/* 导航�?*/
.nav-item {
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
}

.nav-item > a {
    color: #333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.nav-item > a i {
    font-size: 9px !important;
    transition: transform 0.3s ease !important;
}

.nav-item:hover > a {
    color: #0052d9 !important;
}

.nav-item.active > a {
    color: #0052d9 !important;
}

.nav-item.active::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: #0052d9 !important;
}

.nav-item:hover::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: #0052d9 !important;
}

.nav-item.has-dropdown:hover > a i {
    transform: rotate(180deg) !important;
}

/* 桌面端：导航条为内容容器，移动端加号隐藏 */
.nav-item-bar {
    display: contents !important;
}
.nav-icon-mobile {
    display: none !important;
}

/* 二级菜单 */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: #0052d9 !important;
    box-shadow: 0 8px 32px rgba(0, 82, 217, 0.25) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 14px 24px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-menu a:last-child {
    border-bottom: none !important;
}

.dropdown-menu a::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 3px !important;
    height: 0 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: height 0.3s ease !important;
}

.dropdown-menu a:hover::before {
    height: 100% !important;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding-left: 32px !important;
}

/* 产品下拉分组（战略合作 / 拓展产品） */
.dropdown-menu .dropdown-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.dropdown-menu .dropdown-group:last-child {
    border-bottom: none !important;
}
.dropdown-group-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px 8px !important;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    pointer-events: none !important;
}
.dropdown-group-title .dropdown-icon.strategic {
    /* color: #f0c14b !important; */
}
.dropdown-group-title .dropdown-icon.expansion {
    /* color: #e74c3c !important; */
}
.dropdown-group a {
    padding-left: 46px !important;
}

.dropdown-group a:hover {
    padding-left: 52px !important;
}

/* 语言切换 */
.lang-switch {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    background: #f5f7fa !important;
    border: 1px solid #e5e5e5 !important;
}

.lang-switch span {
    color: #666 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    transition: all 0.3s ease !important;
}

.lang-switch span.active {
    background: #0052d9 !important;
    color: #fff !important;
}

.lang-switch span:hover:not(.active) {
    color: #0052d9 !important;
}

/* Hero区域调整 */
.hero {
    margin-top: 70px !important;
}

.page-hero {
    margin-top: 70px !important;
}

/* 响应�?*/
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px !important;
    }
    
    .nav-item {
        padding: 0 16px !important;
    }
}

/* 手机端：汉堡按钮（仅小屏显示） */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
    background: rgba(0, 82, 217, 0.08);
    color: #0052d9;
}
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-container {
        padding: 0 16px !important;
        height: 56px !important;
    }
    
    .page-hero {
        margin-top: 56px !important;
    }
    
    html {
        scroll-padding-top: 76px;
    }
    
    .main-logo {
        height: 36px !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 56px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 56px) !important;
        background: #fff !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 !important;
        overflow-y: auto !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        z-index: 1999 !important;
    }
    
    .nav-links.active {
        left: 0 !important;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .nav-item {
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        background: #1e408d !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        display: block !important;
    }
    
    .nav-item:last-child {
        border-bottom: none !important;
    }
    
    .nav-item-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .nav-item > a,
    .nav-item-bar > a {
        width: auto !important;
        flex: 1 !important;
        padding: 16px 20px !important;
        justify-content: flex-start !important;
        font-size: 16px !important;
        color: #fff !important;
    }
    
    .nav-item:hover > a,
    .nav-item.active > a,
    .nav-item-bar a:hover {
        color: #fff !important;
    }
    
    .nav-icon-desktop {
        display: none !important;
    }
    
    .nav-icon-mobile {
        display: flex !important;
    }
    
    .nav-expand {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 16px 20px !important;
        background: transparent !important;
        border: none !important;
        color: #fff !important;
        cursor: pointer !important;
        font-size: 18px !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-expand:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
    }
    
    .nav-item.has-dropdown.active .nav-expand i.fa-plus {
        transform: rotate(45deg);
    }
    
    .nav-item.has-dropdown > a i.fa-chevron-down {
        transition: transform 0.25s ease;
    }
    .nav-item.has-dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .nav-item::after {
        display: none !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.15) !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
    }
    
    .dropdown-group-title {
        padding: 10px 20px 10px 40px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    .dropdown-group a {
        padding-left: 61px !important;
    }
    
    .lang-switch {
        margin: 20px 20px !important;
    }
}

/* 产品页图片展示响应式 */
@media screen and (max-width: 1024px) {
    .product-item {
        flex-direction: column !important;
        gap: 0;
    }
    
    .product-image.single-image,
    .product-image.multi-image {
        width: 100%;
        padding: 30px;
    }
    
    .app-screens {
        gap: 10px;
    }
    
    .app-screen-wrapper {
        width: 140px;
    }
    
    .product-content {
        padding: 30px;
    }
    
    .product-content h3 {
        font-size: 22px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .product-image {
        padding: 20px;
    }
    
    .app-screens {
        gap: 8px;
    }
    
    .app-screen-wrapper {
        width: 100px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-content h3 {
        font-size: 20px;
    }
}

/* 方案页图片展示样�?*/
.solution-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.solution-image-wrapper:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.12);
}

/* 流程图样�?*/
.solution-flowchart {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-flowchart:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.15);
}

/* 普通图片样�?*/
.solution-image {
    width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 响应�?*/
@media screen and (max-width: 768px) {
    .solution-image-wrapper {
        padding: 20px;
    }
    
    .solution-flowchart,
    .solution-image {
        max-width: 100%;
    }
}

/* 产品页丰富内容样�?- 优化�?*/

/* 产品概览统计 */
.products-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 80px;
    padding: 0;
}

.overview-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0052d9 0%, #4a9eff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.08);
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.overview-text h3 {
    font-size: 40px;
    color: #0052d9;
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.overview-text p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* 产品生态图 */
.product-ecosystem {
    position: relative;
    /* height: 450px; */
    margin: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    /* border: 1px solid #e5e5e5; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ecosystem-center {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 52px;
    position: relative;
    z-index: 10;
    box-shadow: 0 12px 48px rgba(0, 82, 217, 0.35);
}

.ecosystem-center span {
    font-size: 17px;
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ecosystem-node {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #fff;
    border: 3px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 82, 217, 0.15);
    transition: all 0.3s ease;
}

.ecosystem-node span {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 700;
}

.ecosystem-node:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 82, 217, 0.3);
}

.ecosystem-node.node-1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.ecosystem-node.node-2 {
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

.ecosystem-node.node-3 {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.ecosystem-node.node-4 {
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
}

/* 产品优势 */
.product-advantages {
    margin: 100px 0;
}

.product-advantages h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.advantage-card {
    padding: 45px 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid transparent;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 82, 217, 0.12);
    transform: translateY(-6px);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: #fff;
    transform: scale(1.05);
}

.advantage-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.advantage-card p {
    color: #666;
    line-height: 1.9;
    font-size: 14px;
}

/* 应用场景 */
.use-cases-section {
    margin: 100px 0;
    /* padding: 80px 60px; */
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%); */
    /* border: 1px solid #e5e5e5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
}

.use-cases-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.case-card {
    padding: 45px;
    background: #fff;
    border: 1px solid transparent;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transition: height 0.3s ease;
}

.case-card:hover::before {
    height: 100%;
}

.case-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 82, 217, 0.12);
    transform: translateY(-5px);
}

.case-number {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.25);
    transition: all 0.3s ease;
}

.case-card:hover .case-number {
    transform: scale(1.05);
}

.case-card h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
    padding-right: 80px;
}

.case-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

.case-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.case-tags span {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.case-card:hover .case-tags span {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: #fff;
    border-color: var(--primary-blue);
}

/* 客户案例 */
.customer-cases {
    margin: 100px 0 0 0;
    /* padding: 80px 70px; */
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%); */
    /* border: 1px solid #e5e5e5; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
    position: relative;
    overflow: hidden;
}

.customer-cases::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 82, 217, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.customer-cases h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
    z-index: 1;
}

.cases-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.case-item {
    padding: 45px 40px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.case-item:hover::before {
    transform: scaleX(1);
}

.case-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(0, 82, 217, 0.15);
    transform: translateY(-6px);
}

.case-logo {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 82, 217, 0.25);
    transition: all 0.3s ease;
}

.case-item:hover .case-logo {
    transform: scale(1.05);
}

.case-item h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}

.case-desc {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 14px;
}

.case-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* 响应�?*/
@media screen and (max-width: 1024px) {
    .products-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-slider {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-node {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .products-overview {
        grid-template-columns: 1fr;
    }
    
    .product-ecosystem {
        /* height: 500px; */
        margin: 30px 0;
    }
    .products-intro {
        margin-bottom: 0;
    }
    
    .ecosystem-center {
        width: 120px;
        height: 120px;
        font-size: 36px;
    }
    
    .ecosystem-node {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
    .product-list {
        margin-bottom: 40px;
    }
    .product-advantages {
        margin: 40px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-cases {
        padding: 40px 20px;
    }
}


/* 新闻页面样式优化 */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #e5e5e5;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 82, 217, 0.05));
    transition: height 0.3s ease;
}

.tab-btn:hover::before {
    height: 100%;
}

.tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 82, 217, 0.25);
}

.news-content {
    margin-top: 40px;
}

/* 新闻列表页 news-card：确保整卡可点击跳转详情 */
.news-content .news-card-link {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* 新闻列表页 news-card：图片 img、占位不变的悬停放大、文字悬停变蓝、card-text 背景 */
.news-content .news-card .card-text {
    background: #f5f5f5;
    transition: background 0.2s ease;
}

.news-content .news-card .card-text h3,
.news-content .news-card .news-date {
    transition: color 0.3s ease;
}

.news-content .news-card-link:hover .news-card .card-img img {
    transform: scale(1.12);
}

.news-content .news-card-link:hover .news-card .card-text h3,
.news-content .news-card-link:hover .news-card .news-date,
.news-content .news-card-link:hover .news-card .card-img .tag {
    color: var(--primary-blue);
}

.news-date {
    color: #999;
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: var(--primary-blue);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

