        @charset "utf-8";

        .cardrfidgdzc {
            /* background: #eef2f6; */
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding: 24px; */
        }

        /* 大容器 —— 完全符合要求：一个大div，内含标题 + 两排三列内容 */
        .home-panel {
            background-color: #ffffff;
            padding: 2.5rem 5rem;
            transition: all 0.2s ease;
			width: 100%;
        }

        /* 标题样式 */
        .home-panel h2 {
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: #1a2b3c;
            margin: 0 0 0.75rem 0;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            border-bottom: 4px solid #3b82f6;
            padding-bottom: 0.3rem;
        }

        /* 两排三列网格容器 (原类名不变，但改为三列) */
        .grid-three-two {
            display: grid;
            grid-template-columns: repeat(4, 1fr);  /* 修改为三列 */
            gap: 1.8rem;                             /* 行列间隔 */
            margin-top: 2.5rem;
        }

        /* 卡片样式：每个卡片包含图片和一段文字 */
        .card {
            background-color: #fff;
            overflow: hidden;
            box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 36px -12px rgba(59, 130, 246, 0.25);
        }

        /* 图片区域——固定高度，铺满宽度，保证整齐 */
        .card img {
            width: 100%;
            height: auto;
            object-fit: cover;          /* 确保所有图片比例填充，不变形 */
            display: block;
            background-color: #d1d9e6;   /* 加载中的占位色 */
            transition: transform 0.6s ease;
        }

        .card:hover img {
            transform: scale(1.03);
        }

        /* 文字段落 */
        .cardh {
            padding: 1rem;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: #1e293b;
            background: #ffffff;
            border-top: 1px solid #f0f4f9;
            flex: 1 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.5;
            letter-spacing: 0.3px;
        }

        /* 为文字增加一点引号装饰，更精致 */
        .cardh::before {
            content: "“";
            font-size: 1.6rem;
            color: #3b82f6;
            opacity: 0.5;
            margin-right: 4px;
            font-weight: 600;
        }

        .cardh::after {
            content: "”";
            font-size: 1.6rem;
            color: #3b82f6;
            opacity: 0.5;
            margin-left: 4px;
            font-weight: 600;
        }
		
		.cardtitle {
			margin: 0;
			    font-size: 0.9rem;
			    color: #1e293b;
			    background: #ffffff;
			    flex: 1 0 auto;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    text-align: center;
			    line-height: 1.5;
			    letter-spacing: 0.3px;
		}

        /* 移动端适配：小屏幕自动变为单列 (一列排列) */
        @media (max-width: 640px) {
            .home-panel {
                padding: 1.8rem 1rem;
            }
            .home-panel h2 {
                font-size: 1.9rem;
                white-space: normal;
                left: 0;
                transform: none;
                display: block;
                text-align: center;
            }
            .grid-three-two {
                grid-template-columns: 1fr;  /* 改为单列 */
                gap: 1.5rem;
				max-height: 600px;           /* 限制最大高度，只显示约4个卡片的高度 */
				overflow-y: auto;             /* 启用垂直滚动条 */
				padding-right: 8px;           /* 为滚动条预留空间，防止内容被遮挡 */
				scrollbar-width: thin;        /* 细滚动条（Firefox） */
				scrollbar-color: #3b82f6 #e0e7ff; /* 滚动条颜色（Firefox） */
            }
			
			/* 自定义滚动条样式（WebKit浏览器：Chrome、Safari、Edge） */
			    .grid-three-two::-webkit-scrollbar {
			        width: 6px;                   /* 滚动条宽度 */
			    }
			    
			    .grid-three-two::-webkit-scrollbar-track {
			        background: #e0e7ff;           /* 滚动条轨道颜色 */
			        border-radius: 10px;
			    }
			    
			    .grid-three-two::-webkit-scrollbar-thumb {
			        background: #3b82f6;           /* 滚动条滑块颜色 */
			        border-radius: 10px;
			    }
			    
			    .grid-three-two::-webkit-scrollbar-thumb:hover {
			        background: #2563eb;           /* 悬停时颜色加深 */
			    }
        }

        /* 中等屏幕调整 (例如平板，三列可能太挤，改为两列) */
        @media (min-width: 641px) and (max-width: 900px) {
            .grid-three-two {
                grid-template-columns: repeat(2, 1fr);  /* 中屏变为两列，共四行 */
                gap: 1.5rem;
            }
			.home-panel {
			    padding: 2.5rem 1rem;
			}
        }
		
		@media (min-width: 901px) and (max-width: 1400px) {
			.home-panel {
			    padding: 2.5rem 1rem;
			}
		}

        /* 极小屏以下已经由 media (max-width:640) 处理，大屏保持三列 */