        :root {
            --primary-color: #1A3A6B;     /* 主色：深蓝 */
            --secondary-color: #007BFF;   /* 辅色：科技蓝 */
            --light-color: #F8F9FA;       /* 辅色：浅灰 */
            --accent-color: #FF6B35;      /* 强调色：橙色 */
            --bs-primary: #1A3A6B;  /* 原始蓝色保留为网站主色调 */
            --bs-primary-article: #444444;  /* 文章页面使用的深灰色 */
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            color: #333333;
            font-size: 1rem;
            line-height: 1.6;
        }
        a:link, a:visited, a:active {
        /*	text-decoration: none;
        	color: #333333;*/
        }
        a:hover {
        	text-decoration: none;
        	color: #007BFF;
        }
        /* 顶部区域样式 */
        .topbar {
            background-color: var(--light-color);
            color: #333333;
            padding: 5px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            z-index: 1030; /* 确保高于导航栏 */
        }
        
        .topbar .dropdown-toggle {
            color: #333333 !important;
            background-color: transparent;
            border: none;
        }
        
        .topbar .btn-outline-light {
            color: #333333;
            border-color: #333333;
        }
        
        .topbar .btn-outline-light:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1020;
            min-height: 80px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        /* 导航链接样式 */
        .navbar .nav-link {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--primary-color) !important;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }

        /* 下拉菜单样式 */
        .navbar .dropdown-menu {
            border: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
        }

        .navbar .dropdown-item {
            font-size: 1rem; /* 下拉菜单项字体大小 */
            padding: 0.6rem 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .navbar .dropdown-item:hover {
            background-color: rgba(0,0,0,0.03);
            color: var(--accent-color);
            padding-left: 2rem;
        }

        /* 当前激活的导航项 */
        .navbar .nav-link.active {
            color: var(--accent-color) !important;
            font-weight: 600;
        }
        
        /* 增加logo图片大小以适应更高的导航栏 */
        .navbar-brand img {
            height: 50px;
        }
        
        .banner {
            min-height: 500px;
            background-color: var(--light-color);
            position: relative;
            color: white;
        }
        
        .carousel, .carousel-inner, .carousel-item {
            height: 100%;
            min-height: 550px; /* 增加高度以便有更多垂直空间 */
        }
        
        .carousel-item {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative; /* 确保绝对定位的子元素相对于这个元素 */
        }
        
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 2; /* 降低z-index值 */
            pointer-events: none; /* 让鼠标事件可以穿透这个元素 */
        }
        
        /* 为carousel-content中的可交互元素重新启用指针事件 */
        .carousel-content button, 
        .carousel-content a {
            pointer-events: auto;
        }
        
        .carousel-item .container {
            position: relative;
            z-index: 2;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            z-index: 10; /* 提高切换按钮的z-index */
        }
        
        .carousel-indicators {
            z-index: 10; /* 提高指示器的z-index */
        }
        
        /* 标题样式 - 居中显示 */
        .section-title {
            position: relative;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            color: #1d4280;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            transform: translateX(-50%);
        }
        
        /* 标题容器 - 确保居中 */
        .title-wrapper {
            text-align: center;
            margin-bottom: 2rem;
            width: 100%;
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            color: white;
            border: none;
        }
        
        .btn-accent:hover {
            background-color: #e55a25;
            color: white;
        }
        
        .service-card {
            transition: all 0.3s;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
            position: relative;
            background-color: #fff;
            border: none;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-card .card-img-container {
            overflow: hidden;
            height: auto;
        }
        
        .service-card .card-img-top {
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .service-card .card-body {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .service-card .card-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .service-card:hover .card-title {
            color: var(--accent-color);
        }
        
        .service-card .bi-check-circle-fill {
            transition: all 0.3s ease;
        }
        
        .service-card:hover .bi-check-circle-fill {
            color: var(--accent-color) !important;
        }
        
        .service-card ul li {
            opacity: 0.8;
            transform: translateX(0);
            transition: all 0.3s ease;
        }
        
        .service-card:hover ul li {
            opacity: 1;
            transform: translateX(5px);
        }
        
        .service-card:hover ul li:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .service-card:hover ul li:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .service-card:hover ul li:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        .shine-button {
            position: relative;
            overflow: hidden;
            border-color: var(--accent-color);
            color: var(--accent-color);
        }
        
        .shine-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: rotate(30deg);
            transition: all 0.7s ease;
            opacity: 0;
        }
        
        .shine-button:hover {
            border-color: var(--accent-color);
            background-color: var(--accent-color);
            color: white;
        }
        
        .shine-button:hover::after {
            transform: rotate(30deg) translate(50%, -50%);
            opacity: 1;
        }
        
        .float-button {
            animation: float 2s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }
        
        .floating-element {
            display: inline-block;
            animation: floating 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        footer {
            background-color: #e9ecef;
            color: #333333;
            padding: 3rem 0;
            border-top: 1px solid #dee2e6;
        }
        
        .footer-links a {
            color: #333333;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            text-decoration: none;
            opacity: 1;
            padding-left: 5px; /* 添加悬停时的位移效果 */
        }
        
        /* 底部版权信息样式 */
        footer hr {
            border-color: rgba(0,0,0,0.1);
            margin: 2rem 0;
        }

        footer .text-white {
            color: #333333 !important;
            transition: color 0.3s ease;
        }

        footer .text-white:hover {
            color: var(--accent-color) !important;
        }
        
        /* 增加banner标题文字大小 */
        .carousel-item h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            color: white;
        }
        
        /* 增加banner描述文字大小 */
        .carousel-item p {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            color: white;
        }
        
        /* 确保下拉菜单显示在最上层 */
        .dropdown-menu {
            z-index: 1035;
        }
        
        /* 添加悬停显示下拉菜单的样式 */
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        /* 添加社交媒体图标悬停样式 */
        .social-icons a {
            display: inline-block;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .social-qr {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 5px;
            padding: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            z-index: 1000;
            margin-bottom: 10px;
            width: 150px;
        }
        
        .social-qr img {
            width: 100%;
            height: auto;
            border-radius: 3px;
        }
        
        .social-qr:after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: white transparent transparent transparent;
        }
        
        .social-icons a:hover .social-qr {
            display: block;
        }
        
        /* 全球通关解决方案板块样式 */
        .global-solutions {
            position: relative;
            overflow: hidden;
        }
        
        .global-solutions .container {
            position: relative;
            z-index: 1;
        }
        
        /* 卡片悬停效果 */
        .global-card {
            transition: all 0.4s ease;
            transform: translateY(0);
            background: rgba(255, 255, 255, 0.9);
            border: none;
        }
        
        .global-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        /* 图标动画 */
        .globe-icon {
            display: inline-block;
            transition: all 0.5s ease;
        }
        
        .global-card:hover .globe-icon {
            transform: rotate(20deg) scale(1.2);
            color: var(--accent-color) !important;
        }
        
        /* 咨询区域效果 */
        .consult-box {
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            color: var(--primary-color);
            box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
            transition: all 0.4s ease;
        }
        
        .consult-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
        }
        
        /* 按钮脉动效果 */
        .pulse-btn {
            position: relative;
            overflow: hidden;
        }
        
        .pulse-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            transform: scale(0);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }
        
        /* 连接世界的点线效果 */
        .world-dots {
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--primary-color);
            opacity: 0.5;
            animation: fadeInOut 3s infinite alternate;
        }
        
        @keyframes fadeInOut {
            0% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.5);
            }
            100% {
                opacity: 0.2;
                transform: scale(1);
            }
        }
        
        /* 核心业务模块动态效果 */
        .core-business {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        /* 动态波浪背景 */
        .wave-bg {
            position: absolute;
            width: 100%;
            left: 0;
            top: 0;
            opacity: 0.1;
            height: 100%;
            z-index: 0;
        }
        
        .core-business .container {
            position: relative;
            z-index: 2;
        }
        
        /* 服务卡片增强效果 */
        .service-card {
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            height: 100%;
            background: white;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        /* 卡片内容动画 */
        .service-card .card-body {
            transition: all 0.3s ease;
            padding: 20px;
        }
        
        .service-card:hover .card-body {
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(249,249,249,1) 100%);
        }
        
        .service-card h5 {
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }
        
        .service-card:hover h5 {
            transform: translateX(8px);
            color: var(--accent-color);
        }
        
        /* 卡片图片效果 */
        .service-card .card-img-top {
            transition: all 1s ease;
            transform: scale(1);
        }
        
        .service-card:hover .card-img-top {
            transform: scale(1.1);
        }
        
        /* 列表项图标动画 */
        .service-card .bi-check-circle-fill {
            transition: all 0.4s ease;
            display: inline-block;
        }
        
        .service-card:hover .bi-check-circle-fill {
            transform: scale(1.2) rotate(10deg);
        }
        
        .service-card ul li {
            transition: all 0.3s ease;
            transform: translateX(0);
            opacity: 0.8;
        }
        
        .service-card:hover ul li {
            transform: translateX(5px);
            opacity: 1;
        }
        
        /* 不同延迟的列表项动画 */
        .service-card:hover ul li:nth-child(1) {
            transition-delay: 0s;
        }
        
        .service-card:hover ul li:nth-child(2) {
            transition-delay: 0.1s;
        }
        
        .service-card:hover ul li:nth-child(3) {
            transition-delay: 0.2s;
        }
        
        /* 按钮动画效果 */
        .shine-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .shine-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: rotate(30deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
        
        .shine-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .shine-button:hover::after {
            left: 100%;
            opacity: 1;
        }
        
        /* 主按钮漂浮效果 */
        .float-button {
            animation: float 3s infinite ease-in-out;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        
        /* 背景浮动元素 */
        .floating-element {
            position: absolute;
            background-color: var(--primary-color);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
            animation: floating 15s infinite linear;
        }
        
        @keyframes floating {
            from { transform: rotate(0deg) translateX(30px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
        }
        
        /* 关于国翔部分的动态效果 */
        .about-section {
            position: relative;
            overflow: hidden;
        }
        
        /* 数据统计卡片悬停效果 */
        .counter-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 58, 107, 0.03), rgba(255, 107, 53, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .counter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .counter-card:hover::before {
            opacity: 1;
        }
        
        .counter-icon {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            width: 90px;
            border-radius: 50%;
            background-color: rgba(26, 58, 107, 0.08);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        
        .counter-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .counter-card:hover .counter-icon {
            transform: scale(1.05);
            background-color: rgba(26, 58, 107, 0.12);
        }
        
        .counter-card:hover .counter-icon i {
            transform: scale(1.1);
        }
        
        .counter-number {
            font-size: 2.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 0.5rem 0;
            line-height: 1.1;
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-number {
            color: var(--accent-color);
        }
        
        .counter-card p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        @media (max-width: 992px) {
            .counter-number {
                font-size: 2.4rem;
            }
            
            .counter-icon {
                height: 80px;
                width: 80px;
            }
            
            .counter-icon i {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .counter-number {
                font-size: 2rem;
            }
            
            .counter-icon {
                height: 70px;
                width: 70px;
            }
            
            .counter-icon i {
                font-size: 2rem;
            }
            
            .counter-card p {
                font-size: 1rem;
            }
        }

        /* 文本段落动画 */
        .highlight-text {
            position: relative;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(255, 107, 53, 0.2);
            z-index: -1;
            transition: height 0.3s ease;
        }

        .highlight-text:hover::before {
            height: 100%;
        }

        /* 按钮动画效果 */
        .glow-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .glow-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }

        .glow-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 53, 0.2);
        }

        .glow-button:hover::before {
            transform: translateX(0);
        }

        /* 图片交互效果 */
        .about-image-container {
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .about-image {
            transition: all 0.8s ease;
            width: 100%;
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26, 58, 107, 0.8) 0%, rgba(26, 58, 107, 0) 70%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .about-image-container:hover .about-image-overlay {
            opacity: 0.9;
        }

        .about-image-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            opacity: 1;
            transition: all 0.4s ease;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .about-image-container:hover .about-image-text {
            transform: translateY(-5px);
        }

        /* 装饰元素 */
        .decor-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-color);
            opacity: 0.2;
            z-index: -1;
        }

        /* 新闻资讯部分动态效果 */
        .news-section {
            position: relative;
            overflow: hidden;
        }

        /* 新闻卡片悬停效果 */
        .news-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }

        /* 图片放大效果 */
        .news-image-container {
            overflow: hidden;
        }

        .news-image {
            transition: transform 0.6s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        /* 新闻标题渐变动画 */
        .news-title {
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .news-title::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.4s ease;
        }

        .news-card:hover .news-title {
            color: var(--accent-color);
        }

        .news-card:hover .news-title::after {
            width: 100%;
        }

        /* 新闻列表项动画 */
        .news-list-item {
            transition: all 0.3s ease;
            border-left: 0px solid var(--accent-color);
            transform: translateX(0);
        }

        .news-list-item:hover {
            background-color: rgba(255, 107, 53, 0.05);
            border-left: 4px solid var(--accent-color);
            transform: translateX(5px);
        }

        .news-list-item i {
            transition: transform 0.4s ease;
        }

        .news-list-item:hover i {
            transform: translateX(5px);
        }

        /* 阅读更多按钮效果 */
        .read-more-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            width: 0;
            height: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .read-more-btn:hover {
            color: white;
            border-color: var(--primary-color);
        }

        .read-more-btn:hover::before {
            width: 100%;
        }

        /* 查看更多链接动画 */
        .view-more-link {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .view-more-link:hover {
            transform: translateX(5px);
            color: var(--accent-color) !important;
        }

        .view-more-link i {
            transition: transform 0.3s ease;
        }

        .view-more-link:hover i {
            transform: translateX(3px);
        }

        /* 新闻标题栏动画 */
        .news-header {
            position: relative;
            transition: all 0.3s ease;
        }

        /* 默认标题下方渐变线条 - 从左到右 */
        .news-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, var(--primary-color), transparent);
        }

        /* 右对齐标题下方渐变线条 - 从右到左 */
        .news-header.text-end::after {
            background: linear-gradient(to left, var(--primary-color), transparent);
        }

        /* 新闻卡片图片容器样式 */
        .news-card {
            height: 100%;
        }

        .news-card .card-img-top {
            height: calc(100% - 56px); /* 减去卡片body的高度 */
            object-fit: cover;
            object-position: center;
        }

        .news-card .card-body {
            height: 56px; /* 标题和日期所需的固定高度 */
            padding: 1rem;
            display: flex;
            align-items: center;
        }

        /* 确保列表组件占满容器高度 */
        .list-group.h-100 {
            height: 100% !important;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 新闻卡片和列表布局样式 */
        .news-section .row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

        /* 新闻卡片样式 */
        .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* 计算图片高度：5个列表项 * 56px = 280px */
        .news-card .card-img-top {
            height: 280px; /* 与右侧5个列表项的总高度相同 */
            object-fit: cover;
            object-position: center;
            flex: none; /* 取消flex-grow */
        }

        .news-card .card-body {
            height: 56px; /* 固定高度，与列表项保持一致 */
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 56px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻标题和日期的布局 */
        .news-card .card-body .d-flex {
            width: 100%;
        }

        .news-card .card-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 0;
            flex: 1;
            padding-right: 1rem;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-card small {
            font-size: 0.8rem;
            white-space: nowrap;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 46.67px; /* 调整高度：280px / 6条新闻 ≈ 46.67px */
            min-height: 46.67px; /* 确保最小高度 */
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 280px; /* 保持与之前相同的总高度 */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem; /* 稍微减小字体大小 */
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem; /* 稍微减小日期字体大小 */
            color: #6c757d;
            display: block;
            margin-top: 1px;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 50px; /* 调整为50px */
            min-height: 50px;
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 300px; /* 调整为 6 * 50px = 300px */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem;
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻卡片底部高度 */
        .news-card .card-body {
            height: 50px; /* 与列表项保持一致 */
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 核心业务卡片图片样式 */
        .service-card .card-img-container {
            overflow: hidden;
            height: auto; /* 设置固定高度 */
        }

        .service-card .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .service-card:hover .card-img-top {
            transform: scale(1.1);
        }

        /* 小标题样式 - 与section-title相似但更淡 */
        .subtitle-style {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }

        .subtitle-style:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }

        /* 确保所有标题父容器居中 */
        .section-title, .subtitle-style {
            width: 100%;
            text-align: center;
            display: block;
        }

        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* 添加页面banner相关样式 */
        .page-banner {
            position: relative;
            padding: 100px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
        }

        .page-banner .breadcrumb {
            display: inline-flex;
            padding: 8px 16px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 30px;
        }

        .page-banner .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .page-banner .lead {
            font-size: 1.2rem;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .page-banner h1 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 60px 0;
            }
            
            .page-banner .lead {
                font-size: 1rem;
            }
            
            .page-banner h1 {
                font-size: 2.2rem;
            }
        }

        /* 国翔简介部分增强样式 */
        .company-intro {
            position: relative;
        }

        .company-intro h3 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .company-intro h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .company-intro:hover h3:after {
            width: 80px;
        }

        /* 优势卡片增强效果 */
        .advantage-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary-color);
            transition: height 0.4s ease;
            z-index: -1;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
            border-color: transparent !important;
        }

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

        .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(26, 58, 107, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .advantage-card:hover .icon-circle {
            background-color: rgba(26, 58, 107, 0.2);
            transform: scale(1.1);
        }

        .advantage-card:hover h5 {
            color: var(--primary-color);
        }

        .advantage-card i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .advantage-card:hover i {
            transform: scale(1.2);
        }

        /* 资质证书卡片优化 */
        .qualification-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            position: relative;
        }

        .qualification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
            border-color: rgba(0,0,0,0.08);
        }

        .qualification-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: center;
        }

        .qualification-card:hover::after {
            transform: scaleX(1);
        }

        .qualification-card h5 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .qualification-card:hover h5 {
            color: var(--accent-color);
        }

        /* 证书图片和重要图片优化显示 */
        .qualification-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 320px;
            overflow: hidden;
            background-color: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .qualification-img img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .qualification-card:hover .qualification-img {
            background-color: #f5f5f5;
        }

        .qualification-card:hover .qualification-img img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* 资质证书区域布局优化 */
        .qualification-slider {
            background-color: #f8f9fa;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border-radius: 8px;
            padding: 20px 15px;
        }

        .qualification-slider .row {
            margin-left: -15px;
            margin-right: -15px;
        }

        .qualification-slider .col-md-6 {
            padding: 15px;
        }

        /* 证书卡片悬停效果细节优化 */
        .qualification-card {
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .qualification-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* 确保图片容器占据卡片主要空间 */
        .qualification-card .qualification-img {
            flex: 1;
            min-height: 260px;
            margin-bottom: 15px;
        }

        .counter-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 58, 107, 0.03), rgba(255, 107, 53, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .counter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .counter-card:hover::before {
            opacity: 1;
        }
        
        .counter-icon {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            width: 90px;
            border-radius: 50%;
            background-color: rgba(26, 58, 107, 0.08);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        
        .counter-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .counter-card:hover .counter-icon {
            transform: scale(1.05);
            background-color: rgba(26, 58, 107, 0.12);
        }
        
        .counter-card:hover .counter-icon i {
            transform: scale(1.1);
        }
        
        .counter-number {
            font-size: 2.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 0.5rem 0;
            line-height: 1.1;
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-number {
            color: var(--accent-color);
        }
        
        .counter-card p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        @media (max-width: 992px) {
            .counter-number {
                font-size: 2.4rem;
            }
            
            .counter-icon {
                height: 80px;
                width: 80px;
            }
            
            .counter-icon i {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .counter-number {
                font-size: 2rem;
            }
            
            .counter-icon {
                height: 70px;
                width: 70px;
            }
            
            .counter-icon i {
                font-size: 2rem;
            }
            
            .counter-card p {
                font-size: 1rem;
            }
        }

        /* 文本段落动画 */
        .highlight-text {
            position: relative;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(255, 107, 53, 0.2);
            z-index: -1;
            transition: height 0.3s ease;
        }

        .highlight-text:hover::before {
            height: 100%;
        }

        /* 按钮动画效果 */
        .glow-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .glow-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }

        .glow-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 53, 0.2);
        }

        .glow-button:hover::before {
            transform: translateX(0);
        }

        /* 图片交互效果 */
        .about-image-container {
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .about-image {
            transition: all 0.8s ease;
            width: 100%;
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26, 58, 107, 0.8) 0%, rgba(26, 58, 107, 0) 70%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .about-image-container:hover .about-image-overlay {
            opacity: 0.9;
        }

        .about-image-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            opacity: 1;
            transition: all 0.4s ease;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .about-image-container:hover .about-image-text {
            transform: translateY(-5px);
        }

        /* 装饰元素 */
        .decor-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-color);
            opacity: 0.2;
            z-index: -1;
        }

        /* 新闻资讯部分动态效果 */
        .news-section {
            position: relative;
            overflow: hidden;
        }

        /* 新闻卡片悬停效果 */
        .news-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }

        /* 图片放大效果 */
        .news-image-container {
            overflow: hidden;
        }

        .news-image {
            transition: transform 0.6s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        /* 新闻标题渐变动画 */
        .news-title {
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .news-title::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.4s ease;
        }

        .news-card:hover .news-title {
            color: var(--accent-color);
        }

        .news-card:hover .news-title::after {
            width: 100%;
        }

        /* 新闻列表项动画 */
        .news-list-item {
            transition: all 0.3s ease;
            border-left: 0px solid var(--accent-color);
            transform: translateX(0);
        }

        .news-list-item:hover {
            background-color: rgba(255, 107, 53, 0.05);
            border-left: 4px solid var(--accent-color);
            transform: translateX(5px);
        }

        .news-list-item i {
            transition: transform 0.4s ease;
        }

        .news-list-item:hover i {
            transform: translateX(5px);
        }

        /* 阅读更多按钮效果 */
        .read-more-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            width: 0;
            height: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .read-more-btn:hover {
            color: white;
            border-color: var(--primary-color);
        }

        .read-more-btn:hover::before {
            width: 100%;
        }

        /* 查看更多链接动画 */
        .view-more-link {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .view-more-link:hover {
            transform: translateX(5px);
            color: var(--accent-color) !important;
        }

        .view-more-link i {
            transition: transform 0.3s ease;
        }

        .view-more-link:hover i {
            transform: translateX(3px);
        }

        /* 新闻标题栏动画 */
        .news-header {
            position: relative;
            transition: all 0.3s ease;
        }

        /* 默认标题下方渐变线条 - 从左到右 */
        .news-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, var(--primary-color), transparent);
        }

        /* 右对齐标题下方渐变线条 - 从右到左 */
        .news-header.text-end::after {
            background: linear-gradient(to left, var(--primary-color), transparent);
        }

        /* 新闻卡片图片容器样式 */
        .news-card {
            height: 100%;
        }

        .news-card .card-img-top {
            height: calc(100% - 56px); /* 减去卡片body的高度 */
            object-fit: cover;
            object-position: center;
        }

        .news-card .card-body {
            height: 56px; /* 标题和日期所需的固定高度 */
            padding: 1rem;
            display: flex;
            align-items: center;
        }

        /* 确保列表组件占满容器高度 */
        .list-group.h-100 {
            height: 100% !important;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 新闻卡片和列表布局样式 */
        .news-section .row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

        /* 新闻卡片样式 */
        .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* 计算图片高度：5个列表项 * 56px = 280px */
        .news-card .card-img-top {
            height: 280px; /* 与右侧5个列表项的总高度相同 */
            object-fit: cover;
            object-position: center;
            flex: none; /* 取消flex-grow */
        }

        .news-card .card-body {
            height: 56px; /* 固定高度，与列表项保持一致 */
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 56px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻标题和日期的布局 */
        .news-card .card-body .d-flex {
            width: 100%;
        }

        .news-card .card-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 0;
            flex: 1;
            padding-right: 1rem;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-card small {
            font-size: 0.8rem;
            white-space: nowrap;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 46.67px; /* 调整高度：280px / 6条新闻 ≈ 46.67px */
            min-height: 46.67px; /* 确保最小高度 */
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 280px; /* 保持与之前相同的总高度 */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem; /* 稍微减小字体大小 */
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem; /* 稍微减小日期字体大小 */
            color: #6c757d;
            display: block;
            margin-top: 1px;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 50px; /* 调整为50px */
            min-height: 50px;
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 300px; /* 调整为 6 * 50px = 300px */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem;
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻卡片底部高度 */
        .news-card .card-body {
            height: 50px; /* 与列表项保持一致 */
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 核心业务卡片图片样式 */
        .service-card .card-img-container {
            overflow: hidden;
            height: auto; /* 设置固定高度 */
        }

        .service-card .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .service-card:hover .card-img-top {
            transform: scale(1.1);
        }

        /* 小标题样式 - 与section-title相似但更淡 */
        .subtitle-style {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }

        .subtitle-style:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }

        /* 确保所有标题父容器居中 */
        .section-title, .subtitle-style {
            width: 100%;
            text-align: center;
            display: block;
        }

        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* 添加页面banner相关样式 */
        .page-banner {
            position: relative;
            padding: 100px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
        }

        .page-banner .breadcrumb {
            display: inline-flex;
            padding: 8px 16px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 30px;
        }

        .page-banner .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .page-banner .lead {
            font-size: 1.2rem;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .page-banner h1 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 60px 0;
            }
            
            .page-banner .lead {
                font-size: 1rem;
            }
            
            .page-banner h1 {
                font-size: 2.2rem;
            }
        }

        /* 国翔简介部分增强样式 */
        .company-intro {
            position: relative;
        }

        .company-intro h3 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .company-intro h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .company-intro:hover h3:after {
            width: 80px;
        }

        /* 优势卡片增强效果 */
        .advantage-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary-color);
            transition: height 0.4s ease;
            z-index: -1;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
            border-color: transparent !important;
        }

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

        .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(26, 58, 107, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .advantage-card:hover .icon-circle {
            background-color: rgba(26, 58, 107, 0.2);
            transform: scale(1.1);
        }

        .advantage-card:hover h5 {
            color: var(--primary-color);
        }

        .advantage-card i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .advantage-card:hover i {
            transform: scale(1.2);
        }

        /* 资质证书卡片优化 */
        .qualification-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            position: relative;
        }

        .qualification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
            border-color: rgba(0,0,0,0.08);
        }

        .qualification-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: center;
        }

        .qualification-card:hover::after {
            transform: scaleX(1);
        }

        .qualification-card h5 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .qualification-card:hover h5 {
            color: var(--accent-color);
        }

        /* 证书图片和重要图片优化显示 */
        .qualification-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 320px;
            overflow: hidden;
            background-color: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .qualification-img img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .qualification-card:hover .qualification-img {
            background-color: #f5f5f5;
        }

        .qualification-card:hover .qualification-img img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* 资质证书区域布局优化 */
        .qualification-slider {
            background-color: #f8f9fa;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border-radius: 8px;
            padding: 20px 15px;
        }

        .qualification-slider .row {
            margin-left: -15px;
            margin-right: -15px;
        }

        .qualification-slider .col-md-6 {
            padding: 15px;
        }

        /* 证书卡片悬停效果细节优化 */
        .qualification-card {
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .qualification-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* 确保图片容器占据卡片主要空间 */
        .qualification-card .qualification-img {
            flex: 1;
            min-height: 260px;
            margin-bottom: 15px;
        }

        .counter-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 58, 107, 0.03), rgba(255, 107, 53, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .counter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .counter-card:hover::before {
            opacity: 1;
        }
        
        .counter-icon {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            width: 90px;
            border-radius: 50%;
            background-color: rgba(26, 58, 107, 0.08);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        
        .counter-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .counter-card:hover .counter-icon {
            transform: scale(1.05);
            background-color: rgba(26, 58, 107, 0.12);
        }
        
        .counter-card:hover .counter-icon i {
            transform: scale(1.1);
        }
        
        .counter-number {
            font-size: 2.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 0.5rem 0;
            line-height: 1.1;
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-number {
            color: var(--accent-color);
        }
        
        .counter-card p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        @media (max-width: 992px) {
            .counter-number {
                font-size: 2.4rem;
            }
            
            .counter-icon {
                height: 80px;
                width: 80px;
            }
            
            .counter-icon i {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .counter-number {
                font-size: 2rem;
            }
            
            .counter-icon {
                height: 70px;
                width: 70px;
            }
            
            .counter-icon i {
                font-size: 2rem;
            }
            
            .counter-card p {
                font-size: 1rem;
            }
        }

        /* 文本段落动画 */
        .highlight-text {
            position: relative;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(255, 107, 53, 0.2);
            z-index: -1;
            transition: height 0.3s ease;
        }

        .highlight-text:hover::before {
            height: 100%;
        }

        /* 按钮动画效果 */
        .glow-button {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .glow-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }

        .glow-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 53, 0.2);
        }

        .glow-button:hover::before {
            transform: translateX(0);
        }

        /* 图片交互效果 */
        .about-image-container {
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .about-image {
            transition: all 0.8s ease;
            width: 100%;
        }

        .about-image-container:hover .about-image {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26, 58, 107, 0.8) 0%, rgba(26, 58, 107, 0) 70%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .about-image-container:hover .about-image-overlay {
            opacity: 0.9;
        }

        .about-image-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            opacity: 1;
            transition: all 0.4s ease;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .about-image-container:hover .about-image-text {
            transform: translateY(-5px);
        }

        /* 装饰元素 */
        .decor-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-color);
            opacity: 0.2;
            z-index: -1;
        }

        /* 新闻资讯部分动态效果 */
        .news-section {
            position: relative;
            overflow: hidden;
        }

        /* 新闻卡片悬停效果 */
        .news-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }

        /* 图片放大效果 */
        .news-image-container {
            overflow: hidden;
        }

        .news-image {
            transition: transform 0.6s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        /* 新闻标题渐变动画 */
        .news-title {
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .news-title::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.4s ease;
        }

        .news-card:hover .news-title {
            color: var(--accent-color);
        }

        .news-card:hover .news-title::after {
            width: 100%;
        }

        /* 新闻列表项动画 */
        .news-list-item {
            transition: all 0.3s ease;
            border-left: 0px solid var(--accent-color);
            transform: translateX(0);
        }

        .news-list-item:hover {
            background-color: rgba(255, 107, 53, 0.05);
            border-left: 4px solid var(--accent-color);
            transform: translateX(5px);
        }

        .news-list-item i {
            transition: transform 0.4s ease;
        }

        .news-list-item:hover i {
            transform: translateX(5px);
        }

        /* 阅读更多按钮效果 */
        .read-more-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            width: 0;
            height: 100%;
            top: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .read-more-btn:hover {
            color: white;
            border-color: var(--primary-color);
        }

        .read-more-btn:hover::before {
            width: 100%;
        }

        /* 查看更多链接动画 */
        .view-more-link {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .view-more-link:hover {
            transform: translateX(5px);
            color: var(--accent-color) !important;
        }

        .view-more-link i {
            transition: transform 0.3s ease;
        }

        .view-more-link:hover i {
            transform: translateX(3px);
        }

        /* 新闻标题栏动画 */
        .news-header {
            position: relative;
            transition: all 0.3s ease;
        }

        /* 默认标题下方渐变线条 - 从左到右 */
        .news-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, var(--primary-color), transparent);
        }

        /* 右对齐标题下方渐变线条 - 从右到左 */
        .news-header.text-end::after {
            background: linear-gradient(to left, var(--primary-color), transparent);
        }

        /* 新闻卡片图片容器样式 */
        .news-card {
            height: 100%;
        }

        .news-card .card-img-top {
            height: calc(100% - 56px); /* 减去卡片body的高度 */
            object-fit: cover;
            object-position: center;
        }

        .news-card .card-body {
            height: 56px; /* 标题和日期所需的固定高度 */
            padding: 1rem;
            display: flex;
            align-items: center;
        }

        /* 确保列表组件占满容器高度 */
        .list-group.h-100 {
            height: 100% !important;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 新闻卡片和列表布局样式 */
        .news-section .row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

        /* 新闻卡片样式 */
        .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* 计算图片高度：5个列表项 * 56px = 280px */
        .news-card .card-img-top {
            height: 280px; /* 与右侧5个列表项的总高度相同 */
            object-fit: cover;
            object-position: center;
            flex: none; /* 取消flex-grow */
        }

        .news-card .card-body {
            height: 56px; /* 固定高度，与列表项保持一致 */
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 56px; /* 固定高度 */
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

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

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 调整新闻列表项左侧间距 */
        .news-list-item > div {
            padding-left: 1em; /* 添加一个字符宽度的左侧间距 */
            flex: 1;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 56px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻标题和日期的布局 */
        .news-card .card-body .d-flex {
            width: 100%;
        }

        .news-card .card-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin: 0;
            flex: 1;
            padding-right: 1rem;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-card small {
            font-size: 0.8rem;
            white-space: nowrap;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 46.67px; /* 调整高度：280px / 6条新闻 ≈ 46.67px */
            min-height: 46.67px; /* 确保最小高度 */
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 280px; /* 保持与之前相同的总高度 */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem; /* 稍微减小字体大小 */
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem; /* 稍微减小日期字体大小 */
            color: #6c757d;
            display: block;
            margin-top: 1px;
        }

        /* 新闻列表容器样式 */
        .list-group.h-100 {
            height: 100% !important;
            display: flex;
            flex-direction: column;
        }

        /* 新闻列表项样式 */
        .news-list-item {
            height: 50px; /* 调整为50px */
            min-height: 50px;
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid rgba(0,0,0,.125);
        }

        /* 调整图片高度以匹配6条新闻的总高度 */
        .news-card .card-img-top {
            height: 300px; /* 调整为 6 * 50px = 300px */
            object-fit: cover;
            object-position: center;
            flex: none;
        }

        /* 新闻列表项内容样式 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.9rem;
            line-height: 1.3;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.75rem;
            color: #6c757d;
            display: block;
            margin-top: 2px;
        }

        /* 确保每个列表项高度相等 */
        .list-group-item {
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* 调整新闻卡片底部高度 */
        .news-card .card-body {
            height: 50px; /* 与列表项保持一致 */
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        /* 核心业务卡片图片样式 */
        .service-card .card-img-container {
            overflow: hidden;
            height: auto; /* 设置固定高度 */
        }

        .service-card .card-img-top {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .service-card:hover .card-img-top {
            transform: scale(1.1);
        }

        /* 小标题样式 - 与section-title相似但更淡 */
        .subtitle-style {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }

        .subtitle-style:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }

        /* 确保所有标题父容器居中 */
        .section-title, .subtitle-style {
            width: 100%;
            text-align: center;
            display: block;
        }

        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* 添加页面banner相关样式 */
        .page-banner {
            position: relative;
            padding: 100px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
        }

        .page-banner .breadcrumb {
            display: inline-flex;
            padding: 8px 16px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 30px;
        }

        .page-banner .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .page-banner .lead {
            font-size: 1.2rem;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .page-banner h1 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 60px 0;
            }
            
            .page-banner .lead {
                font-size: 1rem;
            }
            
            .page-banner h1 {
                font-size: 2.2rem;
            }
        }

        /* 国翔简介部分增强样式 */
        .company-intro {
            position: relative;
        }

        .company-intro h3 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .company-intro h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .company-intro:hover h3:after {
            width: 80px;
        }

        /* 优势卡片增强效果 */
        .advantage-card {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary-color);
            transition: height 0.4s ease;
            z-index: -1;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
            border-color: transparent !important;
        }

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

        .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(26, 58, 107, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .advantage-card:hover .icon-circle {
            background-color: rgba(26, 58, 107, 0.2);
            transform: scale(1.1);
        }

        .advantage-card:hover h5 {
            color: var(--primary-color);
        }

        .advantage-card i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .advantage-card:hover i {
            transform: scale(1.2);
        }

        /* 资质证书卡片优化 */
        .qualification-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            position: relative;
        }

        .qualification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
            border-color: rgba(0,0,0,0.08);
        }

        .qualification-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: center;
        }

        .qualification-card:hover::after {
            transform: scaleX(1);
        }

        .qualification-card h5 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .qualification-card:hover h5 {
            color: var(--accent-color);
        }

        /* 证书图片和重要图片优化显示 */
        .qualification-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 320px;
            overflow: hidden;
            background-color: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .qualification-img img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .qualification-card:hover .qualification-img {
            background-color: #f5f5f5;
        }

        .qualification-card:hover .qualification-img img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* 资质证书区域布局优化 */
        .qualification-slider {
            background-color: #f8f9fa;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border-radius: 8px;
            padding: 20px 15px;
        }

        .qualification-slider .row {
            margin-left: -15px;
            margin-right: -15px;
        }

        .qualification-slider .col-md-6 {
            padding: 15px;
        }

        /* 证书卡片悬停效果细节优化 */
        .qualification-card {
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .qualification-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* 确保图片容器占据卡片主要空间 */
        .qualification-card .qualification-img {
            flex: 1;
            min-height: 260px;
            margin-bottom: 15px;
        }

        .counter-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 58, 107, 0.03), rgba(255, 107, 53, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .counter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        
        .counter-card:hover::before {
            opacity: 1;
        }
        
        .counter-icon {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 90px;
            width: 90px;
            border-radius: 50%;
            background-color: rgba(26, 58, 107, 0.08);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        
        .counter-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .counter-card:hover .counter-icon {
            transform: scale(1.05);
            background-color: rgba(26, 58, 107, 0.12);
        }
        
        .counter-card:hover .counter-icon i {
            transform: scale(1.1);
        }
        
        .counter-number {
            font-size: 2.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 0.5rem 0;
            line-height: 1.1;
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-number {
            color: var(--accent-color);
        }
        
        .counter-card p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        @media (max-width: 992px) {
            .counter-number {
                font-size: 2.4rem;
            }
            
            .counter-icon {
                height: 80px;
                width: 80px;
            }
            
            .counter-icon i {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .counter-number {
                font-size: 2rem;
            }
            
            .counter-icon {
                height: 70px;
                width: 70px;
            }
            
            .counter-icon i {
                font-size: 2rem;
            }
            
            .counter-card p {
                font-size: 1rem;
            }
        }

        /* 子标题样式 */
        .subtitle-style {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }

        .subtitle-style:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }

        /* 整体部分动画效果 */
        .about-section {
            position: relative;
            overflow: hidden;
        }

        /* 装饰元素 */
        .about-section::before,
        .about-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(26, 58, 107, 0.03), rgba(255, 107, 53, 0.03));
            z-index: -1;
        }

        .about-section::before {
            top: -150px;
            left: -150px;
        }

        .about-section::after {
            bottom: -150px;
            right: -150px;
        }

        /* 增强高亮文本效果 */
        .highlight-text {
            position: relative;
            z-index: 1;
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: rgba(255, 107, 53, 0.2);
            z-index: -1;
            transition: height 0.3s ease;
        }

        .highlight-text:hover::before {
            height: 100%;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .counter-number {
                font-size: 2rem;
            }

            .qualification-slider {
                padding: 15px !important;
            }
            
            .advantage-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .counter-number {
                font-size: 1.8rem;
            }
            
            .about-image-container {
                max-height: 300px;
                overflow: hidden;
            }
            
            .about-image {
                object-fit: cover;
                height: 100%;
            }
        }

        /* 全局字体设置 */
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            color: #333333;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* 标题统一样式 */
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.3;
        }

        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2.2rem;
        }

        h3 {
            font-size: 1.8rem;
        }

        h4 {
            font-size: 1.5rem;
        }

        h5 {
            font-size: 1.2rem;
        }

        h6 {
            font-size: 1rem;
        }

        /* 段落文本 */
        p {
            margin-bottom: 1rem;
            color: #333333;
        }

        .lead {
            font-size: 1.2rem;
            font-weight: 300;
            color: #495057;
        }

        /* 小号文本 */
        small, .small {
            font-size: 0.85rem;
            color: #6c757d;
        }

        /* 按钮文字 */
        .btn {
            font-size: 1rem;
            font-weight: 500;
        }

        /* 卡片标题 */
        .card-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        /* 卡片内文本 */
        .card-text {
            font-size: 1rem;
            color: #495057;
        }

        /* 新闻列表项文本 */
        .news-list-item .mb-1 {
            margin-bottom: 0 !important;
            font-size: 0.95rem;
            color: #333333;
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-list-item small {
            font-size: 0.8rem;
            color: #6c757d;
        }

        /* 公司简介特殊样式 */
        .company-intro h3 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        /* 计数器数字 */
        .counter-number {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* 响应式字体调整 */
        @media (max-width: 992px) {
            h1, .carousel-item h1 {
                font-size: 2.4rem;
            }
            
            h2, .section-title {
                font-size: 2rem;
            }
            
            h3, .subtitle-style {
                font-size: 1.6rem;
            }
            
            .counter-number {
                font-size: 2rem;
            }
            
            .lead {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            h1, .carousel-item h1 {
                font-size: 2rem;
            }
            
            h2, .section-title {
                font-size: 1.8rem;
            }
            
            h3, .subtitle-style {
                font-size: 1.4rem;
            }
            
            .counter-number {
                font-size: 1.8rem;
            }
            
            .lead {
                font-size: 1rem;
            }
            
            p {
                font-size: 0.95rem;
            }
        }

        /* 企业文化部分 */
        .culture-section {
            position: relative;
            overflow: hidden;
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .culture-circle-container {
            position: relative;
            width: 100%;
            height: 650px;
            margin: 2rem auto;
            overflow: hidden;
        }

        .culture-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(26, 58, 107, 0.2);
            z-index: 10;
            transition: all 0.5s ease;
        }

        .culture-center:hover {
            box-shadow: 0 0 40px rgba(26, 58, 107, 0.4);
            transform: translate(-50%, -50%) scale(1.05);
        }

        .company-logo {
            width: 110px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s ease;
        }

        .company-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .center-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-color);
            opacity: 0.7;
        }

        .particle-1 {
            top: 20%;
            left: 10%;
            animation: particleMove 3s infinite ease-in-out;
        }

        .particle-2 {
            top: 70%;
            left: 20%;
            animation: particleMove 4s infinite ease-in-out 0.5s;
        }

        .particle-3 {
            top: 30%;
            right: 10%;
            animation: particleMove 3.5s infinite ease-in-out 1s;
        }

        .particle-4 {
            top: 80%;
            right: 20%;
            animation: particleMove 4.5s infinite ease-in-out 1.5s;
        }

        .particle-5 {
            top: 50%;
            right: 5%;
            animation: particleMove 5s infinite ease-in-out 2s;
        }

        @keyframes particleMove {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0.7;
            }
        }

        .culture-item {
            position: absolute;
            width: 280px;
            height: 224px;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .culture-card {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(26, 58, 107, 0.1);
            position: relative;
            overflow: hidden;
        }

        .culture-card::before {
            content: '';
            position: absolute;
            opacity: 0.7;
            background: var(--primary-color);
            transition: all 0.4s ease;
        }

        .culture-item:hover .culture-card {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* 上方卡片(愿景)：装饰边在左侧 */
        .culture-item-1 .culture-card::before {
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
        }

        .culture-item-1:hover .culture-card::before {
            width: 8px;
            opacity: 1;
        }

        /* 右方卡片(价值观)：装饰边在上侧 */
        .culture-item-2 .culture-card::before {
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
        }

        .culture-item-2:hover .culture-card::before {
            height: 8px;
            opacity: 1;
        }

        /* 下方卡片(服务理念)：装饰边在右侧 */
        .culture-item-3 .culture-card::before {
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
        }

        .culture-item-3:hover .culture-card::before {
            width: 8px;
            opacity: 1;
        }

        /* 左方卡片(使命)：装饰边在下侧 */
        .culture-item-4 .culture-card::before {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
        }

        .culture-item-4:hover .culture-card::before {
            height: 8px;
            opacity: 1;
        }

        .culture-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(26, 58, 107, 0.1);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .culture-icon i {
            font-size: 24px;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }

        .culture-item:hover .culture-icon {
            background: var(--primary-color);
            transform: scale(1.1) rotate(10deg);
        }

        .culture-item:hover .culture-icon i {
            color: #fff;
        }

        .culture-content h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .culture-content h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.4s ease;
        }

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

        .culture-content p {
            color: #666;
            margin-bottom: 0;
            transition: all 0.3s ease;
        }

        .culture-item:hover .culture-content p {
            color: #333;
        }

        /* 位置布局 - 设置与中心点的距离为220px */
        .culture-item-1 {
            top: calc(50% - 305px);
            left: calc(50%);
            transform: translateX(-50%) translateY(-100%);
        }

        .culture-item-2 {
            top: calc(50%);
            right: calc(50% - 360px); /* 中心点到右边缘距离220px */
            transform: translateY(-50%);
        }

        .culture-item-3 {
            top: calc(50% + 80px);
            left: calc(50% - 280px);
            transform: translateX(-50%) translateY(100%);
        }

        .culture-item-4 {
            top: calc(50% - 224px);
            left: calc(50% - 360px); /* 中心点到左边缘距离220px */
            transform: translateY(-50%);
        }

        .culture-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .culture-svg {
            width: 100%;
            height: 100%;
        }

        .main-circle {
            fill: none;
            stroke-width: 1.5;
            opacity: 0.5;
            animation: rotateCircle 30s linear infinite;
            transform-origin: center;
        }

        @keyframes rotateCircle {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .culture-circle-container {
                height: 600px;
            }
            
            .culture-item {
                width: 280px;
                height: 224px;
            }
            
            .culture-item-1 {
                top: calc(50% - 260px);
                left: calc(50%);
                transform: translateX(-50%) translateY(-100%);
            }
            
            .culture-item-2 {
                top: calc(50% - 114px);
                right: calc(50% - 320px);
                transform: translateY(-50%);
            }
            
            .culture-item-3 {
                top: calc(50% + 60px);
                left: calc(50% - 240px);
                transform: translateX(-50%) translateY(100%);
            }
            
            .culture-item-4 {
                top: calc(50% - 200px);
                left: calc(50% - 320px);
                transform: translateY(-50%);
            }
        }

        @media (max-width: 992px) {
            .culture-circle-container {
                height: auto;
                padding: 120px 0;
                margin-bottom: 30px;
            }
            
            .culture-center {
                position: relative;
                top: 0;
                left: 0;
                transform: none;
                margin: 0 auto 60px;
            }
            
            .culture-lines {
                display: none;
            }
            
            .culture-item {
                position: relative;
                width: 280px;
                height: 224px;
                max-width: 280px;
                margin: 0 auto 40px;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                transform: none;
            }
            
            .culture-item-1, .culture-item-2, .culture-item-3, .culture-item-4 {
                transform: none;
            }
            
            /* 在平板尺寸下每个卡片保持其独特的装饰边样式 */
            .culture-item-1 .culture-card::before,
            .culture-item-2 .culture-card::before,
            .culture-item-3 .culture-card::before,
            .culture-item-4 .culture-card::before {
                /* 保持各自的样式 */
            }
        }

        @media (max-width: 768px) {
            .culture-circle-container {
                padding: 80px 0;
            }
            
            .culture-center {
                width: 120px;
                height: 120px;
                margin-bottom: 40px;
            }
            
            .company-logo {
                width: 90px;
                height: 90px;
            }
            
            .culture-item {
                height: auto;
                min-height: 200px;
                margin-bottom: 30px;
            }
            
            .culture-card {
                padding: 15px;
            }
            
            .culture-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 10px;
            }
            
            .culture-icon i {
                font-size: 20px;
            }
            
            .culture-content h4 {
                font-size: 18px;
                margin-bottom: 8px;
            }
            
            .culture-content p {
                font-size: 14px;
                line-height: 1.4;
            }
        }

        /* 连接线动画 */
        .connection-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 2s ease-in-out forwards;
        }

        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* 党建工作样式 */
        .party-container {
            position: relative;
            padding: 2rem 0;
            overflow: hidden;
        }

        .party-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* 装饰圆形 */
        .party-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .party-circle-1 {
            width: 300px;
            height: 300px;
            background-color: #c12c1f;
            top: -150px;
            left: -100px;
            animation: float 15s infinite ease-in-out;
        }

        .party-circle-2 {
            width: 200px;
            height: 200px;
            background-color: #c12c1f;
            bottom: -50px;
            right: -50px;
            animation: float 12s infinite ease-in-out 2s;
        }

        /* 装饰星星 */
        .party-star {
            position: absolute;
            background-color: #c12c1f;
            opacity: 0.2;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .party-star-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 10%;
            animation: rotate 30s infinite linear;
        }

        .party-star-2 {
            width: 60px;
            height: 60px;
            bottom: 15%;
            left: 15%;
            animation: rotate 20s infinite linear reverse;
        }

        /* 党徽位置 */
        .party-badge {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            top: -20px;
            right: -20px;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: pulse 3s infinite;
        }

        .party-logo {
            width: 70%;
            height: auto;
        }

        .party-img {
            transition: all 0.5s ease;
            border: 5px solid #fff;
            overflow: hidden;
        }

        .party-img-container {
            max-width: 550px;
            margin: 0 auto;
        }

        /* 调整党建图片固定高度 */
        .party-img {
            height: 350px;
            overflow: hidden;
        }

        .party-img img {
            height: 100%;
            object-fit: cover;
        }

        .party-img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
        }

        .party-subtitle {
            color: #c12c1f;
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }

        .party-subtitle:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: #c12c1f;
            transition: width 0.3s ease;
        }

        .party-subtitle:hover:after {
            width: 100%;
        }

        .party-content p {
            color: #333;
            line-height: 1.8;
            transition: all 0.3s ease;
        }

        .party-content p:hover {
            transform: translateX(5px);
        }

        /* 党建活动卡片 */
        .party-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e9e9e9;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .party-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #c12c1f;
        }

        .party-card-icon {
            color: #c12c1f;
            font-size: 2rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .party-card:hover .party-card-icon {
            transform: scale(1.2);
        }

        .party-card-content h5 {
            color: #333;
            margin-bottom: 0.8rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .party-card:hover .party-card-content h5 {
            color: #c12c1f;
        }

        .party-card-content p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* 动画关键帧 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(193, 44, 31, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(193, 44, 31, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(193, 44, 31, 0);
            }
        }

        /* 通关研究中心样式 */
        .research-center-wrapper {
            position: relative;
            padding: 4rem 0;
            overflow: hidden;
        }

        .research-center-content {
            position: relative;
            z-index: 2;
        }

        /* 主内容区域 */
        .research-center-content {
            position: relative;
            z-index: 2;
        }

        /* 愿景标语 */
        .research-motto {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            padding: 0 15px 10px;
        }

        .research-motto:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        /* 图片容器 */
        .research-img-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .research-img {
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 5px solid #fff;
        }

        .research-img img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        .research-img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(26, 58, 107, 0.8) 100%);
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }

        .research-img:hover .research-img-overlay {
            opacity: 0.9;
        }

        .research-img-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            display: flex;
            flex-direction: column;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .research-img-badge span:first-child {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .research-img-badge span:last-child {
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* 核心理念 */
        .research-philosophy {
            margin-bottom: 2rem;
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .research-description p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* 研究方向 */
        .research-directions {
            padding: 20px 0;
        }

        .direction-title {
            position: relative;
            color: var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }

        .direction-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--accent-color);
        }

        .direction-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .direction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .direction-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(26, 58, 107, 0.1);
            border-radius: 50%;
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .direction-icon i {
            font-size: 30px;
            color: var(--secondary-color);
            transition: all 0.4s ease;
        }

        .direction-card:hover .direction-icon {
            background-color: var(--secondary-color);
        }

        .direction-card:hover .direction-icon i {
            color: white;
            transform: scale(1.1);
        }

        .direction-content h5 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .direction-card:hover .direction-content h5 {
            color: var(--secondary-color);
        }

        .direction-content p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 揭牌仪式 */
        .research-event {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .event-title {
            position: relative;
            color: var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .event-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .event-title:hover:after {
            width: 100%;
        }

        .event-gallery {
            margin-bottom: 20px;
        }

        .event-img {
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }

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

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

        .event-description {
            color: #333;
        }

        .event-date {
            margin-bottom: 15px;
        }

        .event-date .badge {
            background-color: var(--primary-color);
            padding: 6px 12px;
            font-weight: 500;
        }

        .event-description p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .research-motto {
                font-size: 1.8rem;
            }
            
            .research-img img {
                height: 250px;
            }
            
            .direction-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .research-motto {
                font-size: 1.6rem;
                padding: 0 10px 8px;
            }
            
            .research-img img {
                height: 200px;
            }
            
            .direction-icon {
                width: 60px;
                height: 60px;
            }
            
            .direction-icon i {
                font-size: 25px;
            }
            
            .event-img img {
                height: 150px;
            }
        }

        /* 国翔公益样式 */
        .charity-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        /* 装饰元素 */
        .charity-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .charity-shape {
            position: absolute;
            opacity: 0.08;
            border-radius: 50%;
        }

        .charity-shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color), #4a90e2);
            top: -100px;
            right: -50px;
            animation: float-shape 15s infinite ease-in-out;
        }

        .charity-shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, var(--accent-color), #ff9966);
            bottom: -80px;
            left: -30px;
            animation: float-shape 12s infinite ease-in-out 2s;
        }

        .charity-shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #4a90e2, #6dd5ed);
            top: 40%;
            left: 10%;
            animation: float-shape 10s infinite ease-in-out 1s;
        }

        @keyframes float-shape {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* 公益标题 */
        .charity-slogan {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.8rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .charity-slogan:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        /* 内容卡片 */
        .charity-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            margin-bottom: 0;
        }

        /* 顶部橙色横条 - 默认隐藏 */
        .charity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            background-color: var(--accent-color);
            transition: width 0.6s ease;
            z-index: 2;
        }

        /* 横条悬停效果 - 从左到右显示 */
        .charity-card:hover::before {
            width: 100%;
        }

        .charity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .charity-section {
            margin-bottom: 2rem;
        }

        .charity-section .charity-card {
            height: 100%;
        }

        .charity-subtitle {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #f0f0f0;
        }

        /* 新增项目标题样式 */
        .charity-item-title {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1rem;
        }

        .charity-item-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.3rem;
            width: 4px;
            height: 1rem;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        /* 项目文字样式 */
        .charity-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
            padding-left: 1rem;
        }

        .charity-list {
            list-style: none;
            padding-left: 1.5rem;
            margin-bottom: 0;
        }

        .charity-list li {
            position: relative;
            padding: 0.4rem 0;
            font-size: 0.95rem;
            color: #444;
            transition: all 0.3s ease;
        }

        .charity-list li:before {
            content: '•';
            position: absolute;
            left: -1rem;
            color: var(--accent-color);
            font-size: 1.5rem;
            line-height: 1;
        }

        .charity-list li:hover {
            transform: translateX(5px);
            color: var(--accent-color);
        }

        /* 按钮样式 */
        .charity-detail-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .charity-detail-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: all 0.3s ease;
        }

        .charity-detail-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .charity-detail-btn:hover:before {
            transform: translateX(0);
        }

        /* 合作伙伴部分 */
        .charity-partners {
            margin-top: 3rem;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .empty-partner-wall {
            padding: 2rem;
            border: 2px dashed #e0e0e0;
            border-radius: 8px;
            margin-top: 1.5rem;
        }

        /* 详情模态框 */
        .charity-detail-content {
            color: #333;
        }

        .charity-detail-list {
            padding-left: 1.2rem;
        }

        .charity-detail-list > li {
            margin-bottom: 1rem;
        }

        .charity-detail-list ul {
            padding-left: 1.5rem;
            margin-top: 0.5rem;
            list-style-type: circle;
        }

        .charity-detail-list p {
            margin-top: 0.3rem;
            color: #555;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .charity-slogan {
                font-size: 1.5rem;
            }
            
            .charity-subtitle {
                font-size: 1.2rem;
            }
            
            .charity-list li {
                font-size: 1rem;
            }
            
            .charity-partners {
                padding: 1rem;
            }
        }

        /* 模块交替背景色 */
        .section-bg-gray {
            background-color: #f8f9fa; /* 浅灰色背景 */
        }

        .section-bg-white {
            background-color: #ffffff; /* 白色背景 */
        }

        /* 全宽度区域，确保背景色横向铺满 */
        .full-width-section {
            width: 100%;
            padding: 60px 0;
            overflow: hidden; /* 防止可能的溢出 */
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        /* 模块统一样式 */
        .module-section {
            position: relative;
            overflow: hidden;
        }

        /* 移除现有边框，因为已经在full-width-section中添加了 */
        .module-section {
            border-bottom: none;
        }

        /* 服务页面样式 */
        /* 页面标题区域 */
        .page-title {
            position: relative;
            padding: 100px 0;
            background-size: cover;
            background-position: center;
        }

        .page-title .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }

        .title-content {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: transparent;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #ffffff;
        }

        .breadcrumb-item.active {
            color: #ffffff;
        }

        /* 服务部分样式 */
        .service-section {
            position: relative;
            overflow: hidden;
        }

        .section-subtitle {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 流程样式 */
        .process-flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            margin: 40px 0;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 2;
            padding: 0 10px;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid var(--accent-color);
        }

        .step-icon i {
            font-size: 26px;
            color: var(--accent-color);
        }

        .process-step:hover .step-icon {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .step-content h5 {
            margin-bottom: 10px;
            font-weight: 600;
        }

        .process-connector {
            height: 2px;
            background: var(--accent-color);
            flex-grow: 1;
            margin-top: 35px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .process-flow {
                flex-direction: column;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
            
            .process-connector {
                width: 2px;
                height: 30px;
                margin: 0 auto;
            }
        }

        /* 服务优势卡片 */
        .advantage-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .advantage-icon {
            width: auto;
            height: 70px;
            margin: 0 auto 20px;
            background: rgba(var(--accent-color-rgb), 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-icon i {
            font-size: 30px;
            color: var(--accent-color);
        }

        .advantage-card h5 {
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

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

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

        /* 联系我们页面的样式 */
        .contact-card {
            background: #ffffff;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(var(--accent-color-rgb), 0.1);
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            background: var(--accent-color);
            color: white;
        }

        .contact-form .form-control, .contact-form .form-select {
            border: 1px solid #e0e0e0;
            padding: 0.75rem 1rem;
            height: auto;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-form .form-control:focus, .contact-form .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(var(--accent-color-rgb), 0.25);
        }

        .map-container {
            height: 300px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .map-container:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .map-container:hover img {
            transform: scale(1.05);
        }

        .office-info {
            border-radius: 10px;
            padding: 15px;
            background: rgba(var(--primary-color-rgb), 0.05);
            border-left: 4px solid var(--primary-color);
        }

        .office-info h5 {
            color: var(--primary-color);
            font-weight: 600;
        }

        .office-info p {
            margin-bottom: 0.5rem;
        }

        .office-info p:last-child {
            margin-bottom: 0;
        }

        .location-tabs .nav-tabs {
            border-bottom: 2px solid #e0e0e0;
        }

        .location-tabs .nav-link {
            border: none;
            color: #666;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.3s ease;
        }

        .location-tabs .nav-link:hover {
            color: var(--accent-color);
        }

        .location-tabs .nav-link.active {
            color: var(--accent-color);
            border-bottom: 2px solid var(--accent-color);
            background: transparent;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .contact-card {
                margin-bottom: 20px;
            }
            
            .map-container {
                height: 250px;
            }
        }

        /* 新闻资讯页面样式 */
        .news-category-menu {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .news-category-menu .nav-link {
            color: #333;
            border-radius: 0;
            padding: 1rem;
            text-align: center;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .news-category-menu .nav-link:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
        }

        .news-category-menu .nav-link.active {
            background-color: var(--primary-color);
            color: #fff;
        }

        .featured-news-card {
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .featured-news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .featured-news-card .card-title {
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .featured-news-card .badge {
            font-size: 0.75rem;
            padding: 0.5em 0.8em;
            font-weight: 500;
        }

        .news-card {
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
        }

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

        .news-card .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .news-card .card-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .news-card .card-text {
            color: #666;
            margin-bottom: 1rem;
        }

        .news-card .badge {
            font-size: 0.75rem;
            padding: 0.4em 0.7em;
            font-weight: 500;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more-btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--accent-color);
        }

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

        .pagination .page-link {
            color: var(--primary-color);
            border-color: #e9ecef;
            padding: 0.5rem 0.85rem;
        }

        .pagination .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .pagination .page-link:focus {
            box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
        }

        .pagination .page-link:hover {
            background-color: #f8f9fa;
            color: var(--accent-color);
        }

        @media (max-width: 992px) {
            .featured-news-card .card-title {
                font-size: 1.35rem;
            }
            
            .news-card .card-img-top {
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .news-category-menu .nav-link {
                padding: 0.75rem 0.5rem;
                font-size: 0.9rem;
            }
            
            .featured-news-card .img-fluid {
                height: 220px !important;
            }
            
            .news-card .card-img-top {
                height: 160px;
            }
        }

        /* 新闻资讯页面样式 */
        .news-tabs {
            display: none;
        }

        .news-tabs .nav-link {
            display: none;
        }

        .news-tabs .nav-link:hover {
            display: none;
        }

        .news-tabs .nav-link.active {
            display: none;
        }

        .section-title {
            position: relative;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .sort-dropdown .btn {
            border-radius: 4px;
            padding: 0.5rem 1rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .sort-dropdown .dropdown-menu {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: none;
            padding: 0.5rem;
        }

        .sort-dropdown .dropdown-item {
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .sort-dropdown .dropdown-item.active,
        .sort-dropdown .dropdown-item:active {
            background-color: var(--primary-color);
            color: #fff;
        }

        .featured-news-card {
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
        }

        .featured-news-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .featured-news-card .card-title {
            font-weight: 600;
            line-height: 1.4;
        }

        .news-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: #fff;
            background-color: #1d4280;
            border-radius: 4px;
        }

        .news-tag-red {
            background-color: #dc3545;
        }

        .news-tag-blue {
            background-color: #0d6efd;
        }

        .news-tag-green {
            background-color: #198754;
        }

        .news-list-card {
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
            border-radius: 8px;
        }

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

        .news-list-card .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .news-list-card .card-title {
            font-weight: 600;
            line-height: 1.4;
        }

        .news-list-card .card-text {
            color: #666;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .news-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .news-link:hover {
            color: var(--accent-color);
        }

        .news-link:hover i {
            transform: translateX(5px);
        }

        .pagination {
            margin-top: 2rem;
        }

        .pagination .page-link {
            color: var(--primary-color);
            border-color: #e9ecef;
            padding: 0.5rem 0.85rem;
            margin: 0 0.25rem;
            border-radius: 4px;
        }

        .pagination .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .pagination .page-link:focus {
            box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
        }

        .pagination .page-link:hover {
            background-color: #f8f9fa;
            color: var(--accent-color);
        }

        @media (max-width: 992px) {
            .news-tabs .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
            
            .featured-news-card .card-title {
                font-size: 1.35rem;
            }
            
            .news-list-card .card-img-top {
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .news-tabs .nav-link {
                padding: 0.6rem 0.5rem;
                font-size: 0.8rem;
            }
            
            .featured-news-card .img-fluid {
                height: 220px !important;
            }
            
            .news-list-card .card-img-top {
                height: 160px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

       

        /* 保持其他页面的标题居中 */
        .section-title, .subtitle-style {
            width: 100%;
            text-align: center;
            display: block;
        }

        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
         /* 新闻列表页标题样式 - 左对齐 */
         .news-section-title {
            text-align: left;
            display: block;
        }

        .news-section-title:after {
            left: 0;
            transform: none;
        }

        /* 排序下拉菜单样式 */
        .sort-dropdown {
            position: relative;
        }

        .sort-dropdown .btn {
            border-radius: 4px;
            padding: 0.5rem 1rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            background-color: #f8f9fa;
            border-color: #e9ecef;
            color: #495057;
            font-size: 0.9rem;
        }

        .sort-dropdown .dropdown-menu {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: none;
            padding: 0.5rem;
            right: 0;
            left: auto !important;
        }

        .dropdown-menu-end {
            right: 0 !important;
            left: auto !important;
        }

        /* 文章详情页样式 */
        .article-header {
            margin-bottom: 2rem;
        }

        .article-title {
            color: #444444;
            font-size: 1.8rem;
            line-height: 1.4;
        }

        .article-meta {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .article-cover {
            margin-bottom: 2rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .article-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-content h4 {
            color: #444444;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 1.5rem 0;
        }

        .article-quote {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 6px 6px 0;
        }

        .article-quote p {
            margin-bottom: 0.5rem;
        }

        .article-quote footer {
            font-size: 0.9rem;
            font-weight: 600;
            color: #6c757d;
            font-style: normal;
        }

        .article-tags .badge {
            padding: 0.5rem 0.8rem;
            margin-right: 0.5rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.8rem;
            background-color: #f0f0f0;
            color: #666;
            transition: all 0.3s ease;
        }

        .article-tags .badge:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .article-share .share-buttons {
            display: flex;
            align-items: center;
        }

        .article-share .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f0f0f0;
            color: #666;
            transition: all 0.3s ease;
        }

        .article-share .share-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .article-navigation {
            margin: 3rem 0;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .article-nav-link {
            display: block;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            color: #333;
            transition: all 0.3s ease;
        }

        .article-nav-link:hover {
            background-color: #e9ecef;
            text-decoration: none;
        }

        .article-nav-title {
            color: #333;
            font-weight: 500;
        }

        .related-articles {
            margin-top: 3rem;
        }

        .related-articles h4 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .related-articles h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-content {
                font-size: 1rem;
            }
            
            .article-navigation .col-md-6:first-child {
                margin-bottom: 1rem;
            }
        }

        /* 文章详情页样式 */
        .article-section {
            background-color: #f8f9fa;
        }

        .article-detail {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .article-title {
            color: #444444;
            font-size: 1.8rem;
            line-height: 1.4;
        }

        .article-meta span {
            font-size: 0.9rem;
        }

        .article-cover {
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .article-cover img {
            width: 100%;
        }

        .article-content {
            color: #333;
            line-height: 1.8;
        }

        .article-content h4 {
            color: #444444;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .article-content p {
            margin-bottom: 1.25rem;
        }

        .article-quote {
            background-color: #f8f9fa;
            border-left: 4px solid #FF6B35;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .article-quote p {
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .article-quote footer {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .list-custom {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .list-custom li, .list-numbered li {
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .article-tags, .article-share {
            padding-top: 1rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .badge {
            padding: 0.5rem 1rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            border-radius: 50rem;
            background-color: #f8f9fa!important;
            color: #1A3A6B;
            border: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .badge:hover {
            background-color: #1A3A6B;
            color: #1A3A6B!important;
            transform: translateY(-3px);
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f8f9fa;
            color: #1A3A6B;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background-color: #1A3A6B;
            color: #fff;
            transform: translateY(-3px);
        }

        .article-navigation {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .article-nav-link {
            display: block;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .article-nav-link:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .article-nav-title {
            color: #333;
        }

        .news-date {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: #FF6B35;
            color: #fff;
            font-size: 0.8rem;
            padding: 0.5rem;
            border-radius: 5px;
            z-index: 1;
            text-align: center;
            line-height: 1.2;
            width: 55px;
            height: 55px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-date span {
            font-size: 1.5rem;
            font-weight: bold;
            display: block;
            line-height: 1;
            margin-bottom: 2px;
        }

        .card-title {
            margin-top: 1.5rem;
            line-height: 1.4;
            font-size: 1.15rem;
        }

        .post-dot {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 3px;
        }

        .post-dot i {
            font-size: 8px;
        }

        /* 添加文章页面中text-primary元素的颜色覆盖 */
        .article-section .text-primary,
        .sidebar-widget .text-primary,
        .article-content h4.text-primary,
        .badge.text-primary,
        .news-detail .text-primary,
        a.text-primary {
            color: var(--bs-primary-article) !important;
        }

        .post-dot i.text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 文章页面中使用text-primary类的元素颜色设置为深灰色 */
        .article-section .text-primary,
        .sidebar-widget .text-primary,
        .badge.text-primary,
        .article-content h4.text-primary,
        .news-detail .text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 全局覆盖文章页面中的text-primary类，确保所有元素都使用深灰色 */
        .news-detail .text-primary,
        .article-section .text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 修改推荐文章中的小圆点颜色 */
        .post-dot i.text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 修改文章页面中的徽章 */
        .article-section .badge.bg-light.text-primary,
        .sidebar-widget .badge.bg-light.text-primary,
        .news-detail .badge.bg-light.text-primary,
        a.badge.text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 文章侧边栏分类的徽章 */
        .category-list .badge.bg-light.text-primary {
            color: var(--bs-primary-article) !important;
        }

        /* 修改文章链接hover状态下的颜色 */
        .badge.text-primary:hover,
        a.text-primary:hover {
            color: var(--bs-primary-article) !important;
            opacity: 0.8;
        }

        /* 新闻卡片样式调整 */
        .news-card {
            height: 100%;
            overflow: hidden;
        }

        .news-card .card-img-top {
            height: 300px;
            width: 100%;
            object-fit: cover;
            object-position: center;
            max-width: 624px;
        }

        .news-card .card-body {
            height: 50px; /* 标题和日期固定高度 */
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
        }

        .news-card .card-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 75%; /* 防止与日期重叠 */
        }

        /* 确保图片容器尺寸正确且隐藏溢出内容 */
        .card.news-card {
            max-width: 624px;
            overflow: hidden;
        }

        /* 联系卡片中的冒号垂直对齐 */
        .contact-card p {
            text-align: left;
            position: relative;
            padding-left: 10.5em;
            margin-bottom: 0.5rem;
        }

        .contact-card p::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 10.5em;
            text-align: right;
        }

        /* 如果没有冒号的段落，可以通过添加一个空白的data-label属性来保持一致的缩进 */
        .contact-card p:not([data-label]) {
            padding-left: 0;
        }

        /* 证书图片统一样式 */
        .certificate-img {
            height: auto;
            max-height: 100%;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            display: inline-block;
            border-radius: 4px;
        }

        /* 针对长方形和正方形证书的不同优化 */
        .qualification-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 260px;
            overflow: hidden;
            background-color: #fafafa;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            padding: 10px;
        }

        /* 针对横版和竖版证书的响应式优化 */
        @media (min-width: 992px) {
            .qualification-img {
                height: 280px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .qualification-img {
                height: 240px;
            }
        }

        @media (max-width: 767px) {
            .qualification-img {
                height: 220px;
            }
        }

        /* 证书卡片标签优化 */
        .qualification-card h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.6rem;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .qualification-card .text-muted {
            font-size: 0.85rem;
        }

        /* 证书卡片悬停时图片效果 */
        .qualification-card:hover .certificate-img {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        /* ========================================
   模板页面自定义样式 - 从模板文件中整理汇总
   ======================================== */

/* ========================================
   新闻列表页样式 (list.html)
   ======================================== */

/* 文章卡片图片悬停效果 */
.news-list-card img {
    transition: transform 0.3s ease; /* 图片缩放过渡动画 */
}

.news-list-card a:hover img {
    transform: scale(1.05); /* 悬停时图片放大1.05倍 */
}

/* 特色新闻卡片图片悬停效果 */
.featured-news-card img {
    transition: transform 0.3s ease; /* 图片缩放过渡动画 */
}

.featured-news-card a:hover img {
    transform: scale(1.02); /* 悬停时图片轻微放大 */
}

/* 标题链接悬停效果 */
.card-title a:hover {
    color: #0d6efd !important; /* 悬停时标题变为蓝色 */
    transition: color 0.3s ease; /* 颜色变化过渡动画 */
}

/* 图片容器悬停效果 - 防止图片溢出 */
.news-list-card .card-img-top {
    overflow: hidden; /* 隐藏溢出的图片部分 */
}

.featured-news-card .col-lg-5 {
    overflow: hidden; /* 隐藏溢出的图片部分 */
}

/* ========================================
   搜索页面样式 (search.html)
   ======================================== */

/* 搜索结果卡片样式 - 复用新闻列表卡片样式 */
/* .news-list-card img 和相关样式已在上方定义 */

/* ========================================
   文章详情页样式 (show.html)
   ======================================== */

/* 文章详情页整体样式 */
.article-detail {
    line-height: 1.8; /* 文章内容行高 */
}

/* 文章标题样式 */
.article-title {
    color: #2c3e50; /* 文章标题颜色 */
    line-height: 1.3; /* 标题行高 */
}

/* 文章元信息样式 */
.article-meta span {
    font-size: 0.9rem; /* 元信息字体大小 */
}

/* 文章内容样式 */
.article-content {
    font-size: 1rem; /* 内容字体大小 */
    color: #444; /* 内容文字颜色 */
}

/* 文章内容标题样式 */
.article-content h1, 
.article-content h2, 
.article-content h3, 
.article-content h4 {
    color: #2c3e50; /* 内容标题颜色 */
    margin-top: 2rem; /* 标题上边距 */
    margin-bottom: 1rem; /* 标题下边距 */
}

/* 文章段落样式 */
.article-content p {
    margin-bottom: 1.2rem; /* 段落下边距 */
}

/* 文章图片样式 */
.article-content img {
    max-width: 100%; /* 图片最大宽度 */
    height: auto; /* 图片高度自适应 */
    border-radius: 8px; /* 图片圆角 */
    margin: 1rem 0; /* 图片上下边距 */
}

/* 文章列表样式 */
.article-content ul, 
.article-content ol {
    padding-left: 2rem; /* 列表左内边距 */
    margin-bottom: 1.2rem; /* 列表下边距 */
}

.article-content li {
    margin-bottom: 0.5rem; /* 列表项下边距 */
}

/* 文章引用样式 */
.article-content blockquote {
    border-left: 4px solid #007bff; /* 左边框 */
    padding-left: 1rem; /* 左内边距 */
    margin: 1.5rem 0; /* 上下边距 */
    font-style: italic; /* 斜体 */
    background-color: #f8f9fa; /* 背景色 */
    padding: 1rem; /* 内边距 */
    border-radius: 4px; /* 圆角 */
}

/* 分享按钮样式 */
.share-btn {
    display: inline-flex; /* 内联弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    width: 40px; /* 按钮宽度 */
    height: 40px; /* 按钮高度 */
    border-radius: 50%; /* 圆形按钮 */
    background-color: #f8f9fa; /* 背景色 */
    color: #6c757d; /* 文字颜色 */
    text-decoration: none; /* 去除下划线 */
    transition: all 0.3s ease; /* 过渡动画 */
}

.share-btn:hover {
    background-color: #007bff; /* 悬停背景色 */
    color: white; /* 悬停文字颜色 */
    transform: translateY(-2px); /* 悬停时向上移动 */
}

/* 文章导航样式 */
.article-nav-link:hover {
    background-color: #e9ecef !important; /* 悬停背景色 */
    text-decoration: none; /* 去除下划线 */
}

.article-nav-title {
    color: #495057; /* 导航标题颜色 */
}

/* 侧边栏样式 */
.sidebar-title::after {
    content: ''; /* 伪元素内容 */
    position: absolute; /* 绝对定位 */
    bottom: -5px; /* 底部偏移 */
    left: 0; /* 左对齐 */
    width: 30px; /* 下划线宽度 */
    height: 3px; /* 下划线高度 */
    background-color: #007bff; /* 下划线颜色 */
}

/* 分类列表悬停效果 */
.category-list a:hover {
    color: #007bff !important; /* 悬停文字颜色 */
    padding-left: 10px; /* 悬停时左内边距增加 */
}

/* 文章项悬停效果 */
.post-item a:hover {
    color: #007bff !important; /* 悬停文字颜色 */
}

/* 标签云悬停效果 */
.tagcloud a:hover {
    background-color: #007bff !important; /* 悬停背景色 */
    color: white !important; /* 悬停文字颜色 */
    transform: translateY(-1px); /* 悬停时向上移动 */
}

/* 相关文章卡片样式 */
.related-article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 过渡动画 */
}

.related-article-card:hover {
    transform: translateY(-5px); /* 悬停时向上移动 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* 悬停时阴影 */
}

/* 通用悬停效果 */
.hover-scale:hover {
    transform: scale(1.02); /* 悬停时轻微放大 */
}

.transition-all {
    transition: all 0.3s ease; /* 所有属性过渡动画 */
}

/* ========================================
   分页样式修复 - 适用于所有页面
   ======================================== */

/* 分页容器样式 */
.pagination {
    margin-top: 2rem; /* 分页上边距 */
}

/* 分页链接样式 */
.pagination .page-link {
    color: #007bff; /* 链接颜色 */
    border-color: #e9ecef; /* 边框颜色 */
    padding: 0.5rem 0.85rem; /* 内边距 */
    transition: all 0.3s ease; /* 过渡动画 */
}

/* 当前页样式 */
.pagination .page-item.active .page-link {
    background-color: #007bff; /* 当前页背景色 */
    border-color: #007bff; /* 当前页边框色 */
    color: #fff; /* 当前页文字颜色 */
}

/* 分页链接焦点样式 */
.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* 焦点阴影 */
}

/* 分页链接悬停样式 */
.pagination .page-link:hover {
    background-color: #f8f9fa; /* 悬停背景色 */
    color: #0056b3; /* 悬停文字颜色 */
    border-color: #dee2e6; /* 悬停边框色 */
}

/* 禁用状态分页样式 */
.pagination .page-item.disabled .page-link {
    color: #6c757d; /* 禁用文字颜色 */
    background-color: #fff; /* 禁用背景色 */
    border-color: #dee2e6; /* 禁用边框色 */
    cursor: not-allowed; /* 禁用鼠标样式 */
}

/* ========================================
   返回顶部按钮样式 - 适用于所有页面
   ======================================== */

/* 返回顶部按钮基础样式 */
.back-to-top {
    position: fixed; /* 固定定位 */
    bottom: 30px; /* 距离底部距离 */
    right: 30px; /* 距离右侧距离 */
    width: 50px; /* 按钮宽度 */
    height: 50px; /* 按钮高度 */
    background-color: #007bff; /* 背景色 */
    color: white; /* 文字颜色 */
    border: none; /* 无边框 */
    border-radius: 50%; /* 圆形按钮 */
    cursor: pointer; /* 鼠标指针 */
    opacity: 0; /* 初始透明 */
    visibility: hidden; /* 初始隐藏 */
    transition: all 0.3s ease; /* 过渡动画 */
    z-index: 1000; /* 层级 */
}

/* 返回顶部按钮激活状态 */
.back-to-top.active {
    opacity: 1; /* 显示 */
    visibility: visible; /* 可见 */
}

/* 返回顶部按钮悬停效果 */
.back-to-top:hover {
    background-color: #0056b3; /* 悬停背景色 */
    transform: translateY(-2px); /* 悬停时向上移动 */
}

/* 新闻卡片标题链接样式 */
.news-card .card-title a {
    /* 单行显示，溢出隐藏 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

        /* 新闻卡片标题链接样式 */
        .news-card .card-title a {
            /* 单行显示，溢出隐藏 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
        }

        /* 确保新闻列表项标题也单行显示 */
        .news-list-item h6.mb-1 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            margin-bottom: 0 !important;
        }

        /* 确保新闻卡片标题容器不会溢出 */
        .news-card .card-title.news-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            max-width: 200px; /* 限制最大宽度 */
        }

        /* 确保新闻列表项的左侧div容器控制溢出 */
        .news-list-item > div {
            flex: 1;
            min-width: 0; /* 允许flex item收缩 */
            overflow: hidden;
        }
        .phone-list {
            text-align: left;
        }
        
        .phone-item {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .phone-item:last-child {
            margin-bottom: 0;
        }
        
        .phone-label {
            width: 120px;
            text-align: right;
            color: #666;
        }
        
        .phone-number {
            width: 130px;
            text-align: left;
            color: #333;
        }