 .cqgdt-hy {
     height: 332px;
     overflow: auto;
 }

 .cqgdt-yt {
     height: 529px;
     overflow: auto;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     background: #FFFFFF;
     border-radius: 16px;
     box-sizing: border-box;
 }

 .cqgdt-hy::-webkit-scrollbar {
     width: 8px;
     height: 8px;
 }


 .cqgdt-hy::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 4px;
 }

 .cqgdt-hy::-webkit-scrollbar-thumb {
     background: #c1c1c1;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .cqgdt-hy::-webkit-scrollbar-thumb:hover {
     background: #a8a8a8;
 }

 .cqgdt-yt::-webkit-scrollbar {
     width: 8px;
     height: 8px;
 }


 .cqgdt-yt::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 4px;
 }

 .cqgdt-yt::-webkit-scrollbar-thumb {
     background: #c1c1c1;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .cqgdt-yt::-webkit-scrollbar-thumb:hover {
     background: #a8a8a8;
 }

 .gallery-wrap {
     position: relative;
     width: 100%;
     overflow: hidden;
     margin: 9px 0;
 }

 .gallery-container {
     display: flex;
     gap: 15px;
     transition: transform 0.4s ease;
     will-change: transform;
 }

 .gallery-item {
     width: 116px;
     height: 116px;
     object-fit: cover;
     border-radius: 8px;
     cursor: pointer;
     flex-shrink: 0;
     transition: transform 0.3s;
 }

 .gallery-item:hover {
     transform: scale(1.05);
 }


 .arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     background: rgba(0, 0, 0, 0.5);
     color: white;
     border: none;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     z-index: 10;
     transition: 0.3s;
 }

 .arrow:hover {
     background: rgba(0, 0, 0, 0.8);
 }

 .arrow.left {
     left: 10px;
 }

 .arrow.right {
     right: 10px;
 }


 .modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
 }


 .modal-content {
     margin: auto;
     display: block;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);

     width: auto;
     height: auto;
     max-width: 90%;
     max-height: 80vh;

     border-radius: 4px;
     box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
     animation: zoomIn 0.3s;
 }


 .modal-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: transparent;
     color: white;
     font-size: 40px;
     border: none;
     cursor: pointer;
     z-index: 10000;
     user-select: none;
     transition: 0.3s;
 }

 .modal-arrow:hover {
     color: #ddd;
     transform: translateY(-50%) scale(1.2);
 }

 .modal-arrow.left {
     left: 20px;
 }

 .modal-arrow.right {
     right: 20px;
 }


 .close {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     cursor: pointer;
     z-index: 10001;
 }

 @keyframes zoomIn {
     from {
         opacity: 0;
         transform: translate(-50%, -50%) scale(0.8);
     }

     to {
         opacity: 1;
         transform: translate(-50%, -50%) scale(1);
     }
 }

 .gq-main-wrapper {
     max-width: 1360px;
     margin: 0 auto;
     padding: 20px;
     display: flex;
     gap: 30px;
     /* 左右间距 */
     align-items: flex-start;
     /* 关键：顶部对齐，高度互不关联 */
 }

 /* --- 左侧地图区域 --- */
 .gq-map-section {
     flex: 1;
     /* 占据剩余空间 */
     position: relative;
     overflow: hidden;
     min-height: 518px;
     align-items: center;
     display: flex;
     border-radius: 12px;
     background: rgba(255, 255, 255, 1);
     box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
 }

 /* 地图图片，响应式铺满 */
 .gq-map-img {
     width: 100%;
     height: auto;
     display: block;
     padding: 20px;
 }

 /* 锚点容器 */
 .gq-marker {
     position: absolute;
     width: 24px;
     height: 24px;
     cursor: pointer;
     /* 初始位置示例，实际通过HTML style属性覆盖 */
     /* top: 50%; left: 50%; */
     transform: translate(-50%, -50%);
     /* 中心点定位 */
     z-index: 10;
 }

 /* 红色图标 */
 .gq-marker-icon {
     width: 100%;
     height: 100%;
     position: relative;
     z-index: 2;
     animation: gq-anim-bounce 2s infinite ease-in-out;
 }
 .gq-marker-icon img {
    width: 24px;
    height: 24px;
 }

 /* 扩散光圈 */
 .gq-marker-ping {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     height: 100%;
     background-color: #0088FF;
     margin: -12px 0 0 -12px;
     border-radius: 50%;
     opacity: 0.6;
     z-index: 1;
     animation: gq-anim-ping 2s infinite ease-out;
 }
.gq-marker-content {
    position: relative;
    z-index: 2; /* 高于扩散圈 */
    display: flex;
    align-items: center; /* 垂直居中：让文字和图片垂直对齐 */
    justify-content: flex-start; /* 水平靠左 */
    padding-left: 0; /* 根据需要调整图标与左侧的距离 */
}

/* --- 图标外层容器：负责跳动 --- */
.gq-icon-wrapper {
    width: 24px;
    height: 24px;
    /* 应用跳动动画 */
    animation: gq-anim-bounce 2s infinite ease-in-out;
    /* 关键：设置变换原点为中心，确保图标在中心跳动而不是偏移 */
    transform-origin: center center; 
}

.gq-icon-wrapper img {
    width: 24px;
    height: 100%;
    display: block;
}

/* --- 文字样式 --- */
.gq-marker-content p {
    margin-left: 8px; /* 图标与文字的间距 */
    color: rgba(15, 23, 42, 1);
  font-family: "CN-Bold";
  font-weight: 600;
  font-size: 16px;
    white-space: nowrap; /* 防止文字换行 */
    /* 文字不需要动画，保持静止 */
}
 /* --- 右侧信息区域 --- */
 .gq-info-section {
     width: 33%;
     /* 固定右侧宽度，或根据需求调整 */
     border-radius: 12px;
  background: rgba(255, 255, 255, 1);
     padding: 30px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     flex-shrink: 0;
     /* 防止被压缩 */
 }

 /* 信息项样式 */
 .gq-info-item {
     display: none;
     /* 默认隐藏 */
 }

 .gq-info-item.active {
     display: block;
     /* 激活显示 */
     animation: gq-fade-in 0.5s;
 }

 .gq-info-title {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 20px;
     color: #1d39c4;
     border-bottom: 2px solid #f0f0f0;
     padding-bottom: 10px;
 }

 .gq-info-row {
     display: flex;
     margin-bottom: 12px;
     font-size: 14px;
     color: #555;
 }

 .gq-info-label {
     width: 90px;
     color: #888;
 }

 .gq-info-value {
     flex: 1;
     font-weight: 500;
 }

 .gq-info-value.highlight {
     color: #ff4d4f;
 }

 .gq-steps-box {
     background: #f9f9f9;
     padding: 15px;
     border-radius: 4px;
     margin: 15px 0;
 }

 .gq-steps-box h4 {
     font-size: 16px;
     margin-bottom: 10px;
     color: #333;
     display: flex;
     align-items: center;
 }

 .gq-steps-box h4::before {
     content: '';
     display: inline-block;
     width: 6px;
     height: 6px;
     background: #1d39c4;
     border-radius: 50%;
     margin-right: 8px;
 }

 .gq-steps-list li {
     font-size: 13px;
     margin-bottom: 8px;
     padding-left: 10px;
     position: relative;
     color: #666;
 }

 .gq-steps-list li::before {
     content: '•';
     color: #1d39c4;
     position: absolute;
     left: 0;
 }

 .gq-conclusion-box h4 {
     font-size: 16px;
     margin-bottom: 10px;
     color: #333;
     display: flex;
     align-items: center;
 }

 .gq-conclusion-box h4::before {
     content: '';
     display: inline-block;
     width: 6px;
     height: 6px;
     background: #ff4d4f;
     border-radius: 50%;
     margin-right: 8px;
 }

 .gq-tag {
     display: inline-block;
     padding: 2px 6px;
     border-radius: 2px;
     font-size: 12px;
     color: #fff;
     margin-right: 8px;
 }

 .gq-tag.success {
     background-color: #52c41a;
 }

 .gq-tag.warn {
     background-color: #faad14;
 }

 .gq-btn-download {
     display: block;
     width: 100%;
     padding: 12px 0;
     background-color: #1d39c4;
     color: #fff;
     text-align: center;
     border-radius: 4px;
     text-decoration: none;
     font-weight: bold;
     margin-top: 20px;
     transition: background 0.3s;
 }

 .gq-btn-download:hover {
     background-color: #162a9c;
 }

 @keyframes gq-anim-bounce {

     0%,
     100% {
         transform: translate(-50%, -50%) translateY(0);
     }

     50% {
         transform: translate(-50%, -50%) translateY(-8px);
     }
 }

 @keyframes gq-anim-ping {
     0% {
         width: 100%;
         height: 100%;
         opacity: 0.6;
     }

     100% {
         width: 300%;
         height: 300%;
         opacity: 0;
     }
 }

 @keyframes gq-fade-in {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* --- 响应式适配 (可选) --- */
 @media (max-width: 1024px) {
     .gq-main-wrapper {
         flex-direction: column;
         padding: 10px;
     }

     .gq-info-section {
         width: 100%;
     }
 }
 @keyframes gq-anim-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px); /* 向上跳动 6px */
    }
}

/* 雷达扩散动画 */
@keyframes gq-anim-ping {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5); /* 扩散到 2.5 倍大小 */
        opacity: 0;
    }
}

        /* 卡片主体 */
        .faq-card {
            max-width: 1360px;
            margin: 3rem auto;
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* 标题样式 */
        .faq-card__title {
            font-size: 1.75rem;
            margin-bottom: 2rem;
            color: #2c3e50;
            font-weight: 700;
            position: relative;
            padding-bottom: 1rem;
            font-family: 'CN-Bold';
        }

        .faq-card__title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: #0072c7;
            border-radius: 2px;
        }

        /* 列表样式 */
        .faq-card__list {
            list-style: none;
                padding-inline-start: 0px;
        }

        .faq-card__item {
            margin-bottom: 0.75rem;
            border: 1px solid #eef2f5;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-card__item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border-color: #e1e4e8;
        }

        /* 触发按钮 */
        .faq-card__trigger {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: #fff;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: #34495e;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
            outline: none;
            font-family: 'CN-Regular';
        }

        /* 激活状态下的按钮样式 */
        .faq-card__item.is-active .faq-card__trigger {
            color: #0072c7;
            background-color: #fafcff;
        }

        .faq-card__trigger:hover {
            background-color: #f8f9fa;
        }

        /* 图标样式 */
        .faq-card__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            font-size: 1.2rem;
            color: #0072c7;
            font-weight: 300;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
            background: #f0f7ff;
        }
        
        .faq-card__item.is-active .faq-card__icon {
            background: #0072c7;
            color: #fff;
            transform: rotate(45deg);
        }

        /* 内容区域 - 核心修复部分 */
        .faq-card__content {
            max-height: 0;
            overflow: hidden;
            /* 使用 ease-out 让动画更自然 */
            transition: max-height 0.3s ease-out; 
        }

        .faq-card__answer {
            padding: 1.25rem 1.5rem;
            color: #5f6c7b;
            line-height: 1.8;
            background-color: #fcfcfc;
            border-top: 1px solid #f1f1f1;
            font-size: 0.95rem;
            font-family: 'CN-Regular';
        }

        /* 响应式适配 */
        @media (max-width: 600px) {
            body {
                padding: 1rem;
                background-color: #fff;
            }
            .faq-card {
                margin: 0;
                border-radius: 0;
                box-shadow: none;
                padding: 1.5rem;
            }
            .faq-card__title {
                font-size: 1.5rem;
            }
        }
        .tyxqy {
				--primary-color: #C9A063;
				--primary-dark: #C9A063;
				--primary-light: #ECDEC9;
				--text-dark: #333;
				--text-gray: #666;
				--text-light: #999;
				--text-white: #fff;
				--bg-white: #fff;
				--bg-light: #f9f9f9;
				--bg-dark: #222;
				--shadow-color: rgba(0, 0, 0, 0.08);
				--shadow-lg-color: rgba(0, 0, 0, 0.1);
				--overlay-dark: rgba(0, 0, 0, 0.7);
				--gradient-primary: linear-gradient(135deg, #005b9f, var(--primary-dark));
				--border-light: #f5f5f5;
				--border-gray: #eee;
				--border-medium: #e0e0e0;
				--border-dark: #444;
				--shadow: 0 5px 15px var(--shadow-color);
				--shadow-lg: 0 10px 30px var(--shadow-lg-color);
				--transition: all 0.3s ease;
				--radius: 12px;
			}
			.article-detail-page {
				width: 1360px;
				margin: 0 auto;
			}
			.article-detail-page .page-header-section {
				background: linear-gradient(135deg, #005b9f, var(--primary-dark));
				padding: 15px 0;
				margin-top: 56px;
				box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
				position: relative;
				z-index: 50;
				height: 80px;
				color: var(--bg-white);
			}

			.article-detail-page .page-header {
				display: flex;
				flex-direction: column;
				gap: 15px;
			}

			.article-detail-page .breadcrumb-nav {
				margin-top: 0;
			}

			.article-detail-page .breadcrumb-list {
				display: flex;
				align-items: center;
				flex-wrap: wrap;
				gap: 10px;
				margin-left: -35px;
			}

			.article-detail-page .breadcrumb-item {
				display: flex;
				align-items: center;
				gap: 10px;
				font-size: 14px;
				color: #dadce0;
			}

			.article-detail-page .breadcrumb-item a {
				color: var(--bg-white);
				transition: color 0.3s ease;
				text-decoration: none;
				padding: 5px 0;
				font-weight: 600;
				font-size: 16px;
			}

			.article-detail-page .breadcrumb-item a:hover {
				color: #dadce0;
				font-weight: 600;
				font-size: 14px;
			}

			.article-detail-page .breadcrumb-item i.fa-chevron-right {
				font-size: 10px;
				color: #dadce0;
			}

			.article-detail-page .breadcrumb-item.active {
				color: #005b9f;
				font-weight: 600;
			}

			.article-detail-main-section {
				padding: 50px 0 0px;
			}

			.article-detail-page .two-column-layout {
				display: flex;
				gap: 40px;
			}

			.article-detail-page .main-content-column {
				flex: 1;
				min-width: 0;
			}

			.article-detail-page .sidebar-column {
				width: 350px;
				flex-shrink: 0;
			}

			.article-detail-main-section.container {
				width: 100%;
				max-width: 1200px;
				margin: 0 auto;
				padding: 0 20px;
			}

			.two-column-layout {
				display: flex;
				gap: 40px;
			}

			.main-content-column {
				flex: 1;
				min-width: 0;
			}

			.article-detail-container {
				background: var(--bg-white);
				border-radius: var(--radius);
				overflow: hidden;
				box-shadow: var(--shadow);
				padding: 30px;
				margin-bottom: 30px;
				animation: fadeInUp 0.6s ease-out;
			}

			.article-detail-title {
				font-size: 32px;
				color: var(--text-dark);
				margin: 0 0 20px 0;
				font-weight: 700;
				line-height: 1.4;
				padding-bottom: 20px;
				border-bottom: 2px solid color(a98-rgb 0.2 0.36 0.61 / 0.32);
				position: relative;
                font-family: 'CN-Bold';
			}

			.article-detail-title::after {
				content: "";
				position: absolute;
				bottom: -2px;
				left: 0;
				width: 100px;
				height: 2px;
				background: #005b9f;
			}

			.article-meta-info {
				display: flex;
				flex-wrap: wrap;
				gap: 20px 30px;
				margin-bottom: 30px;
				padding: 20px;
				background: #f9f9f9;
				border-radius: var(--radius);
				border-left: 4px solid  #005b9f;
			}

			.article-meta-info .meta-item {
				display: flex;
				align-items: center;
				gap: 8px;
				font-size: 14px;
				color: var(--text-gray);
			}

			.article-meta-info .meta-item i {
				color: #005b9f;
				width: 16px;
				text-align: center;
			}

			.article-meta-info .meta-item .far {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1
			}

			.meta-label {
				color: var(--text-dark);
				font-weight: 600;
                font-family: 'CN-Medium';
                font-size: 16px;
			}

			.meta-value {
				color: var(--text-gray);
                font-family: 'CN-Medium';
                font-size: 16px;
			}

			.meta-value a {
				color: #005b9f;
				transition: var(--transition);
			}

			.meta-value a:hover {
				color: #005b9f;
				text-decoration: underline;
			}

			.article-content-wrapper {
				margin-top: 30px;
			}

			.article-content-wrapper p {
				line-height: 1.67;
				margin: 0;
				/* opacity: .9; */
				margin-bottom: 25px;
				font-size: 1.1em;
			}

			.article-content-wrapper p a:hover {
				color: #005b9f;
			}

			.article-content-wrapper img {
				max-width: 100% !important;
				height: auto !important;
				width: auto !important;
				margin-left: auto !important;
				margin-right: auto !important;
				display: block !important;
				box-sizing: border-box !important;
				padding: 10px 0;
			}

			.ab_img img {
				max-width: 100% !important;
				height: auto !important;
				display: inline-block;
			}

			.ab_img p {
				text-wrap: inherit !important;
                font-family: 'CN-Regular';
			}

			.ab_img p span {
				text-wrap: inherit !important;
                font-family: 'CN-Regular';
			}

			.article-navigation {
				display: flex;
				justify-content: space-between;
				margin-top: 40px;
				padding-top: 30px;
				border-top: 1px solid var(--border-gray);
			}

			.nav-item {
				flex: 1;
				max-width: 48%;
			}

			.nav-item i {
				color: #005b9f;
				font-size: 20px;
				margin: 0 15px;
                font-family: 'CN-Regular';
			}

			.prev-article .nav-link {
				text-align: left;
			}

			.next-article .nav-link {
				text-align: right;
				flex-direction: row-reverse;
			}

			.nav-link {
				display: flex;
				align-items: center;
				padding: 20px;
				background: var(--bg-light);
				border-radius: var(--radius);
				transition: var(--transition);
				border: 1px solid transparent;
                font-family: 'CN-Regular';
			}

			.nav-link:hover {
				background: var(--bg-white);
				border-color: #005b9f;
				transform: translateY(-3px);
				box-shadow: var(--shadow);
			}

			.nav-link:hover .nav-title {
				color: #005b9f;
			}

			.nav-content {
				flex: 1;
			}

			.nav-label {
				display: block;
				font-size: 12px;
				color: var(--text-light);
				margin-bottom: 5px;
				text-transform: uppercase;
				letter-spacing: 1px;
                font-family: 'CN-Regular';
			}

			.nav-title {
				display: block;
				font-size: 16px;
				color: var(--text-dark);
				font-weight: 600;
				line-height: 1.4;
				transition: var(--transition);
                font-family: 'CN-Regular';
			}