        :root {
            /* DeepSeek品牌色彩 */
            --primary-blue: #1a73e8;
            --primary-blue-dark: #0d47a1;
            --primary-blue-light: #4285f4;
            --accent-green: #34a853;
            --accent-yellow: #fbbc05;
            --accent-red: #ea4335;
            --text-dark: #202124;
            --text-light: #5f6368;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #dadce0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-blue-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
        }
        
        .btn-secondary:hover {
            background-color: rgba(26, 115, 232, 0.05);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .sectionlink {
            padding: 5px 0px;
            font-size: 0.8em;
            color: var(--text-light);
			margin-top: 15px;
			margin-bottom: -20px;
        }
        
        .sectionlink b,.sectionlink a{
            font-size: 0.7em;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* 头部导航栏 */
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .header-container span {
            /* 使用clamp()函数：最小值，动态值，最大值 */
            font-size: clamp(0.55em, 2vw, 0.65em);
            
            /* 确保可读性和可访问性 */
            line-height: 1.5;
            letter-spacing: 0.02em;
        }
        
        /* 针对小屏幕手机优化 */
        @media (max-width: 480px) {
            .header-container span {
                font-size: 0.65em;
                line-height: 1.6;
            }
        }
        
        /* 针对横屏模式优化 */
        @media (min-width: 768px) and (max-width: 1024px) {
            .header-container span {
                font-size: 0.42em;
            }
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
            background-image: url(//haojianghe.com/api/logo.png);
            background-size: contain;
            background-repeat: no-repeat;
            display: block;
            
            /* 使用aspect-ratio保持宽高比 */
            aspect-ratio: 61 / 41; /* 61:41的宽高比 */
            width: 61px; /* PC端默认尺寸 */
            height: auto; /* 高度自动根据宽高比计算 */
            
            /* 响应式调整宽度 */
            @media (max-width: 768px) {
                width: 40px;
                margin-right: 6px;
                font-size: 1.5rem;
            }
            
            @media (max-width: 480px) {
                width: 32px;
                margin-right: 4px;
                font-size: 1.2rem;
            }
        }
        
        .nav-links {
            display: flex;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
		
		.fa-home:before {
			position: relative;
			top: 0.8px;
		}
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--bg-white);
            min-width: 200px;
            max-height: 800px;
            overflow-y: auto;
            box-shadow: var(--shadow-hover);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            padding: 10px 0;
            column-count: 1;
            column-gap: 0;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content li {
            margin: 0;
            break-inside: avoid;
            page-break-inside: avoid;
        }
        
        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            font-size: 0.95rem;
        }
        
        .dropdown-content a:hover {
            background-color: rgba(26, 115, 232, 0.05);
        }
        
        .dropdown-content a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        /* Banner轮播区域 */
        .hero-banner {
            margin-top: 70px;
            max-width: 100%;
            max-height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 900px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        
        .slide-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: white;
            background-color: rgba(0,0,0,0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: white;
            opacity: 0.7;
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--primary-blue);
            opacity: 1;
        }
        
        /* 产品分类 */
        .product-categories {
            display: flex;
            flex-wrap: wrap;
            /* justify-content: center; */
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-item {
            padding: 10px 25px;
            background-color: var(--bg-light);
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .category-item:hover, .category-item.active {
            background-color: var(--primary-blue);
            color: white;
        }
        
        /* 产品展示 */
        .products {
            background-color: var(--bg-white);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .product-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card a{
			margin-top: 10px;
			text-align: center;
        }
        
        .product-card a:hover{
			color: var(--primary-blue);
		    text-decoration: none;
        }
        
        .product-image {
            /* height: 200px; */
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-content a{
			margin-top: 10px;
			/* color: var(--primary-blue); */
			text-align: center;
        }
        
        .product-content a:hover{
		    color: var(--primary-blue);
		    text-decoration: none;
        }
        
        .product-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            flex-grow: 1;
		    text-align: center;
        }
        
        .product-content p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        /* 案例展示 */
        .cases {
            background-color: var(--bg-light);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .cases-grid a{
			margin-top: 10px;
			text-align: center;
        }
        
        .cases-grid a:hover{
			color: var(--primary-blue);
		    text-decoration: none;
        }
		
        .case-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .case-img {
            /* height: 260px; */
            overflow: hidden;
        }
		
		.case-img img {
		    width: 100%;
		    height: 130%;
		    object-fit: cover;
		    transition: transform 0.5s ease;
		    margin-bottom: -115px;
		    margin-top: 10px;
		}
        
        /* .case-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        } */
        
        .case-card:hover .case-img img {
            transform: scale(1.1);
        }
        
        .case-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .case-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
		    text-align: center;
        }

        .case-content h3 a{
			margin-top: 10px;
			text-align: center;
        }
        
        .case-content h3 a:hover{
			color: var(--primary-blue);
		    text-decoration: none;
        }
				
        .case-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .case-tag {
            background-color: rgba(26, 115, 232, 0.1);
            color: var(--primary-blue);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
		    text-align: center;
        }
        
        /* 工厂展示 */
        .factory-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .factory-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .factory-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .factory-image {
            height: 200px;
            overflow: hidden;
        }
        
        .factory-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .factory-card:hover .factory-image img {
            transform: scale(1.05);
        }
        
        .factory-content {
            padding: 5px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .factory-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            flex-grow: 1;
			text-align: center;
        }
		
        .factory-grid a{
			margin-top: 10px;
			text-align: center;
        }
        
        .factory-grid a:hover{
			color: var(--primary-blue);
		    text-decoration: none;
        }
        
        /* 新闻动态 */
        .news {
            background-color: var(--bg-light);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-image {
            height: 250px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
			color: var(--text-light);
			font-size: 0.9em;
        }
        
        .news-content a{
			margin-top: 10px;
		    color: var(--primary-blue-dark);
			text-align: center;
        }
        
        .news-content a:hover{
			color: var(--primary-blue);
		    text-decoration: none;
        }
        
        .news-content p{
			color: var(--text-light);
        }
        
        .news-date {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-bottom: 15px;
			text-align: center;
        }
        
        .news-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
            flex-grow: 1;
        }
        
        /* 询单留言区块 - 新样式 */
        .inquiry {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            color: white;
            padding: 45px 0;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .inquiry:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 100%);
        }
        
        .inquiry-wrapper {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 60px;
        }
        
        .inquiry-content {
            flex: 1;
            min-width: 300px;
        }
        
        .inquiry-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .inquiry-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-green), var(--accent-yellow));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .inquiry-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .inquiry-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
        }
        
        .feature-item i {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent-green);
        }
        
        .feature-item span {
            font-weight: 500;
        }
        
        .inquiry-form {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-large);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-row input,
        .form-row select {
            flex: 1;
            min-width: 0;
        }
        
        .inquiry-form input,
        .inquiry-form textarea,
        .inquiry-form select {
            width: 100%;
            padding: 15px 20px;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.95);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }
        
        .inquiry-form input:focus,
        .inquiry-form textarea:focus,
        .inquiry-form select:focus {
            outline: none;
            border-color: var(--accent-green);
            background: white;
            box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.2);
        }
        
        .inquiry-form input::placeholder,
        .inquiry-form textarea::placeholder {
            color: #9ca3af;
        }
        
        .inquiry-form textarea {
            min-height: 120px;
            resize: vertical;
            margin-bottom: 25px;
        }
        
        .inquiry-form select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
            padding-right: 50px;
        }
        
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-green), #2e8b47);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(52, 168, 83, 0.3);
            background: linear-gradient(135deg, #2e8b47, #276e39);
        }
        
        .submit-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .submit-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 底部 */
        footer {
            background-color: #1a202c;
            color: #e2e8f0;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
			justify-items: center;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo i {
            margin-right: 10px;
            font-size: 2rem;
			    background-image: url(//haojianghe.com/api/logo.png);
			    width: 61px;
			    height: 41px;
			    background-size: contain;
			    background-repeat: no-repeat;
			    display: block;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.8;
			text-indent:2em;
			font-size: 0.9em;
        }
        
        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4:after, .footer-contact h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary-blue);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--primary-blue);
        }
        
        .footer-links ul li i {
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 15px;
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-top: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .products-grid,
            .factory-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .products-grid,
            .factory-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .inquiry-wrapper {
                flex-direction: column;
                gap: 40px;
            }
            
            .inquiry-content,
            .inquiry-form {
                min-width: 100%;
            }
            
            .inquiry-title {
                text-align: center;
            }
            
            .inquiry-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .inquiry-features {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .feature-item {
                flex: 1;
                min-width: 200px;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-white);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 0 0 15px 0;
                width: 100%;
            }
            
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(26, 115, 232, 0.05);
                margin-top: 10px;
                border-radius: 4px;
                display: none;
                max-height: 300px;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slide-content h1 {
                font-size: 2.4rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .products-grid,
            .cases-grid,
            .factory-grid {
                grid-template-columns: 1fr;
            }
            
            .product-categories {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                /* flex-wrap: nowrap; */
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .inquiry-form {
                padding: 30px 25px;
            }
            
            .inquiry-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .swiper-button-next, .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
            
            .swiper-button-next:after, .swiper-button-prev:after {
                font-size: 1.2rem;
            }
            
            .inquiry {
                padding: 60px 0;
            }
            
            .feature-item {
                min-width: 100%;
                justify-content: flex-start;
            }
            
            .inquiry-title {
                font-size: 1.8rem;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
        /* 内联样式确保立即加载 */
        .page-loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #dadce0;
            border-top-color: #1a73e8;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }		
		
/* 单页模版样式 */



/* ==============================
   单页通用模板样式 - 添加到现有style.css中
   ============================== */

/* 通用单页容器 */
.single-page-container {
    min-height: calc(100vh - 400px);
    padding: 40px 0 80px;
    background-color: var(--bg-light);
}

/* 单页面包屑导航 - 已修复 */
.page-breadcrumb {
    background-color: var(--primary-blue);
    padding: 15px 0;
    margin-top: 70px; /* 添加顶部间距，避免被header遮住 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 50;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--bg-white);
}

.breadcrumb-content a {
    color: var(--bg-white);
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 5px 0;
    /* position: relative; */
}

.breadcrumb-content a:hover {
    color: var(--border-color);
	text-decoration: none;
}

.breadcrumb-content a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-blue);
	text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: var(--border-color);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 10px;
    background-color: rgba(26, 115, 232, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--primary-blue);
}

/* 单页标题区域 */
.single-page-header {
    text-align: center;
    margin: 10px 0 35px;
    position: relative;
    padding: 0 20px;
}

.single-page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.single-page-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.single-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* 内容区块通用样式 */
.content-section {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.content-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

/* 富文本内容样式 */
.rich-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4, .rich-content h5 {
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-weight: 600;
}

.rich-content h1 { font-size: 2rem; }
.rich-content h2 { font-size: 1.8rem; }
.rich-content h3 { font-size: 1.5rem; }
.rich-content h4 { font-size: 1.3rem; }
.rich-content h5 { font-size: 1.2rem; }

.rich-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.rich-content p 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;
}

.rich-content ul, .rich-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.rich-content li {
    margin-bottom: 0.8em;
    position: relative;
}

.rich-content ul li:before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -1em;
}

.rich-content a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.rich-content a:hover {
    color: var(--primary-blue-dark);
    border-bottom: 1px solid var(--primary-blue);
}

.rich-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 20px 30px;
    margin: 30px 0;
    background-color: var(--bg-light);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
}

.rich-content table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.rich-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.rich-content table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* 图片展示区块 */
.image-gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 250px;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* 证书展示 */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue-light);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.certificate-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.certificate-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 特色卡片 */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-blue);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* 统计数字 */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 时间线样式 */
.timeline-section {
    position: relative;
    padding-left: 50px;
}

.timeline-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -13px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-blue-light);
}

.timeline-year {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .single-page-title {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 40px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .certificate-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-breadcrumb {
        margin-top: 60px;
        padding: 12px 0;
    }
    
    .single-page-container {
        padding: 30px 0 60px;
    }
    
    .single-page-title {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-section {
        padding-left: 30px;
    }
}

@media (max-width: 576px) {
    .page-breadcrumb {
        margin-top: 90px;
    }
    
    .breadcrumb-content {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-separator {
        margin: 0 8px;
    }
    
    .single-page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* 页面加载动画 */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

































/* 文章内容页模板 */

/* ==============================
   文章内页模板样式 - 添加到现有style.css中
   ============================== */

/* 文章内页容器 */
.article-container {
    min-height: calc(100vh - 400px);
    padding: 40px 0 80px;
    background-color: var(--bg-light);
}

/* 文章头部区域 */
.article-header {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

.article-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(26, 115, 232, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background-color: rgba(26, 115, 232, 0.1);
    transform: translateY(-2px);
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.meta-item span {
    font-weight: 500;
}

/* 文章特色图 */
.article-featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    position: relative;
}

.article-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.article-featured-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* 文章内容区域 */
.article-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
}

.article-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

/* 文章正文样式 */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
	
    border-radius: 12px;
    padding: 45px 0px 0px 0px;
    /* box-shadow: var(--shadow); */
    margin-bottom: 40px;
    position: relative;
	text-align: left; /* 或者 text-align: right; */
}
.article-body img,.article-body div 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;
}

.article-body h2, 
.article-body h3, 
.article-body h4 {
    color: var(--text-dark);
    margin: 35px 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.article-body h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--border-color);
}

.article-body h2:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

.article-body h3 {
    font-size: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--primary-blue);
}

.article-body h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.article-body p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.article-body p,.article-body div {
    text-indent:2em;
}

.article-body ul, .article-body ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.article-body li {
    margin-bottom: 0.8em;
    position: relative;
}

.article-body ul li:before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -1.2em;
    font-size: 1.2rem;
}

.article-body ol {
    counter-reset: item;
}

.article-body ol li {
    counter-increment: item;
}

.article-body ol li:before {
    content: counter(item) '.';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -1.8em;
}

.article-body a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.article-body a:hover {
    color: var(--text-dark);
    border-bottom: 1px solid var(--primary-blue);
	text-decoration:none;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 25px 35px;
    margin: 35px 0;
    background-color: var(--bg-light);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.15rem;
    position: relative;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 15px;
    color: var(--primary-blue);
    opacity: 0.3;
    font-size: 2rem;
}

.article-body blockquote:after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: var(--primary-blue);
    opacity: 0.3;
    font-size: 2rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.article-body img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

.article-body .image-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: -15px;
    margin-bottom: 25px;
    font-style: italic;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.article-body table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.article-body table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-body table tr:nth-child(even) {
    background-color: rgba(26, 115, 232, 0.03);
}

.article-body table tr:hover {
    background-color: rgba(26, 115, 232, 0.05);
}

/* 文章底部信息 */
.article-footer {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tags h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 10px;
    font-weight: 500;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(26, 115, 232, 0.1);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.tag i {
    font-size: 0.8rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.share-btn.wechat:hover {
    background-color: #07C160;
    color: white;
}

.share-btn.weibo:hover {
    background-color: #E6162D;
    color: white;
}

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

.share-btn.print:hover {
    background-color: var(--text-dark);
    color: white;
}


/* 相关文章推荐 */
.related-articles {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.related-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.related-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.related-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid transparent;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue-light);
}

.related-image {
    /* height: 200px; */
    overflow: hidden;
}

.related-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    margin: 0 auto; /* 水平居中 */
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
	align-items: center;
}

.related-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
	padding-left: 16px; */
}

.related-card:hover .related-content h3 {
    color: var(--primary-blue);
}

.related-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.related-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 文章评论区域 */
.article-comments {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.comments-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.comments-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

/* 返回按钮 */
.article-back {
    text-align: center;
    margin-top: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.back-btn i {
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .article-title {
        font-size: 2.3rem;
    }
    
    .article-header,
    .article-content,
    .article-footer,
    .article-navigation,
    .related-articles,
    .article-comments {
        padding: 40px 30px;
    }
    
    .article-featured-image img {
        height: 400px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .article-container {
        padding: 30px 0 60px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-header,
    .article-content,
    .article-footer,
    .article-navigation,
    .related-articles,
    .article-comments {
        padding: 30px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-featured-image img {
        height: 300px;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-share {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.7rem;
    }
    .footer-links,.footer-contact{ 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: start;      /* 网格整体居左 */
  justify-items: start;        /* 每个卡片内容居左 */
  gap: 24px;
  padding: 20px;
	}
    .article-header,
    .article-content,
    .article-footer,
    .article-navigation,
    .related-articles,
    .article-comments {
        padding: 25px 15px;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
    }
}

/* 文章内页动画效果 */
@keyframes fadeInArticle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-fade-in {
    animation: fadeInArticle 0.8s ease forwards;
}

.article-delay-1 { animation-delay: 0.2s; }
.article-delay-2 { animation-delay: 0.4s; }
.article-delay-3 { animation-delay: 0.6s; }
.article-delay-4 { animation-delay: 0.8s; }
.article-delay-5 { animation-delay: 1s; }

/* 阅读进度条 */
.reading-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(26, 115, 232, 0.1);
    z-index: 999;
    display: none;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
    width: 0%;
    transition: width 0.3s ease;
}

/* 文章目录（如果需要） */
.article-toc {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-left: 30px;
    display: none; /* 默认隐藏，可以通过JS控制显示 */
}

.toc-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.toc-list {
    list-style: none;
}

.toc-item {
    margin-bottom: 8px;
}

.toc-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

.toc-link:hover {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.toc-link.active {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    font-weight: 500;
}






































/* 文章内容页模板 */
/* ==============================
   文章列表页模板样式 - 添加到现有style.css末尾
   ============================== */

/* 文章列表页容器 */
.article-list-container {
    min-height: calc(100vh - 400px);
    padding: 40px 0 80px;
    background-color: var(--bg-light);
}

/* 列表页头部区域 */
.list-header {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.list-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

.list-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.list-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 文章列表内容 */
.article-list-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.article-list-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

/* 文章列表项 */
.article-list-item {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

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

.article-list-item:hover {
    background-color: rgba(26, 115, 232, 0.02);
    transform: translateX(10px);
}

/* 文章缩略图 */
.article-thumbnail {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 30px;
    position: relative;
    box-shadow: var(--shadow);
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-list-item:hover .article-thumbnail img {
    transform: scale(1.05);
}

/* 文章内容 */
.article-list-body {
    flex-grow: 1;
}

.article-list-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-list-item:hover .article-list-body h3 {
    color: var(--primary-blue);
}

.article-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 文章元信息 */
.article-meta-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item-list i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.meta-item-list span {
    font-weight: 500;
}

/* 阅读更多按钮 */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

/* 标签列表 */
.tags-section {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.tags-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-title i {
    color: var(--primary-blue);
}

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

.tag-item {
    padding: 8px 18px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.tag-item:hover, .tag-item.active {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
    border-color: var(--primary-blue);
}

.tag-count {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-left: 5px;
}

/* 无缩略图文章样式 */
.article-list-item.no-thumb {
    padding-left: 20px;
    position: relative;
}

.article-list-item.no-thumb:before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

/* 列表分页 */
.list-pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.pagination a:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.pagination .current {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination .prev, .pagination .next {
    font-size: 0.9rem;
}

.pagination .prev i, .pagination .next i {
    font-size: 0.8rem;
}

/* 空状态提示 */
.empty-list {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.empty-subtext {
    font-size: 1rem;
    opacity: 0.8;
}

/* 排序选项 */
.list-sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
    gap: 15px;
}

.sort-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-option {
    padding: 8px 18px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.sort-option:hover, .sort-option.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 响应式设计 - 文章列表页 */
@media (max-width: 992px) {
    .list-title {
        font-size: 2.2rem;
    }
    
    .list-header,
    .article-list-content,
    .tags-section {
        padding: 35px 30px;
    }
    
    .article-thumbnail {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .article-list-container {
        padding: 30px 0 60px;
    }
    
    .list-title {
        font-size: 2rem;
    }
    
    .list-header,
    .article-list-content,
    .tags-section {
        padding: 30px 20px;
    }
    
    .article-list-item {
        flex-direction: column;
        padding: 25px 0;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 250px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .article-list-item.no-thumb {
        padding-left: 15px;
    }
    
    .article-list-body h3 {
        font-size: 1.3rem;
    }
    
    .tags-list {
        justify-content: center;
    }
    
    .list-sort {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .list-title {
        font-size: 1.8rem;
    }
    
    .list-header,
    .article-list-content,
    .tags-section {
        padding: 25px 15px;
    }
    
    .article-thumbnail {
        height: 200px;
    }
    
    .article-list-body h3 {
        font-size: 1.2rem;
    }
    
    .article-meta-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
}

/* 文章列表页动画效果 */
@keyframes slideInList {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-fade-in {
    animation: slideInList 0.6s ease forwards;
	font-size: 0.6em;
	color: var(--text-light);
}

.list-delay-1 { animation-delay: 0.1s; }
.list-delay-2 { animation-delay: 0.2s; }
.list-delay-3 { animation-delay: 0.3s; }
.list-delay-4 { animation-delay: 0.4s; }
.list-delay-5 { animation-delay: 0.5s; }

/* 加载更多动画 */
.load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.2);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

/* 列表筛选器 */
.list-filter {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    color: var(--primary-blue);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-option {
    padding: 8px 20px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.filter-option:hover, .filter-option.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}











































/* 产品页封面、列表模板样式 */
/* ==============================
   产品列表页模板样式 - 添加到现有style.css末尾
   ============================== */

/* 产品列表页容器 */
.product-list-container {
    min-height: calc(100vh - 400px);
    padding: 40px 0 80px;
    background-color: var(--bg-light);
}

/* 产品列表页头部区域 */
.product-list-header {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 50px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-list-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-green));
}

.product-list-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-list-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 产品分类筛选 */
.product-category-filter {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
}

.product-category-filter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

.filter-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    color: var(--primary-blue);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-category {
    padding: 10px 25px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.filter-category:hover {
    background-color: rgba(26, 115, 232, 0.15);
    transform: translateY(-2px);
}

.filter-category.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.filter-category .category-count {
    margin-left: 8px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* 产品列表内容 */
.product-list-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.product-list-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
}

/* 产品网格布局 */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* 成品案例封面页缩略图布局 */
.case-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

/* 产品卡片 */
.product-list-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
}

.product-list-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue-light);
}

/* 新品标签 */
.product-new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-green), #2e8b47);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-new-badge i {
    font-size: 0.7rem;
}

/* 产品图片区域 */
.product-list-image {
    /* height: 250px; */
    overflow: hidden;
    position: relative;
}

.product-list-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-list-card:hover .product-list-image img {
    transform: scale(1.1);
}

/* 图片悬停效果 */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-list-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-list-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
    background-color: var(--primary-blue-dark);
}

/* 产品信息区域 */
.product-list-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
	align-items: center;
}
.product-list-info h3 a{
	align-items: center;
}

.product-list-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-list-card:hover .product-list-info h3 {
    color: var(--primary-blue);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 产品特性 */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.product-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-feature i {
    font-size: 0.75rem;
}

/* 产品底部信息 */
.product-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 0.8rem;
    font-weight: 700;
	color: var(--accent-red);
}

.product-price .unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
    margin-left: 3px;
}
.product-price a{
	color: var(--accent-red);
}
.product-price a:hover{
	color: var(--accent-yellow);
}
.view-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    background-color: rgba(26, 115, 232, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-detail-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateX(3px);
}

.view-detail-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

/* 空状态提示 */
.product-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.product-empty-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.product-empty-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.product-empty-subtext {
    font-size: 1rem;
    opacity: 0.8;
}

/* 列表分页 */
.product-pagination {
    margin-top: 50px;
    text-align: center;
}

.product-pagination .pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-pagination .pagination a, 
.product-pagination .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.product-pagination .pagination a:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

.product-pagination .pagination .current {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.product-pagination .pagination .prev, 
.product-pagination .pagination .next {
    font-size: 0.9rem;
}

.product-pagination .pagination .prev i, 
.product-pagination .pagination .next i {
    font-size: 0.8rem;
}

/* 产品排序选项 */
.product-sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
    gap: 15px;
}

.product-sort-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-sort-options {
    display: flex;
    gap: 10px;
}

.product-sort-option {
    padding: 8px 18px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.product-sort-option:hover, .product-sort-option.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 响应式设计 - 产品列表页 */
@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .case-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-list-title {
        font-size: 2.2rem;
    }
    
    .product-list-header,
    .product-category-filter,
    .product-list-content {
        padding: 35px 30px;
    }
    
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-list-image {
        /* height: 200px; */
    }
}

@media (max-width: 768px) {
    .product-list-container {
        padding: 30px 0 60px;
    }
    
    .product-list-title {
        font-size: 2rem;
    }
    
    .product-list-header,
    .product-category-filter,
    .product-list-content {
        padding: 30px 20px;
    }
    
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .case-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .product-sort {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-sort-options {
        flex-wrap: wrap;
    }
    
    .product-list-image {
        /* height: 180px; */
    }
}

@media (max-width: 576px) {
    .product-list-title {
        font-size: 1.8rem;
    }
    
    .product-list-header,
    .product-category-filter,
    .product-list-content {
        padding: 25px 15px;
    }
    
    .product-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .case-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-list-image {
        /* height: 355px; */  /* height: 220px; */
    }
    
    .filter-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-category {
        width: 100%;
        text-align: center;
    }
    
    .product-pagination .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-empty-icon {
        font-size: 3rem;
    }
}

/* 产品列表页动画效果 */
@keyframes slideInProduct {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-fade-in {
    animation: slideInProduct 0.6s ease forwards;
}

.product-delay-1 { animation-delay: 0.1s; }
.product-delay-2 { animation-delay: 0.2s; }
.product-delay-3 { animation-delay: 0.3s; }
.product-delay-4 { animation-delay: 0.4s; }
.product-delay-5 { animation-delay: 0.5s; }

/* 加载更多 */
.product-load-more {
    text-align: center;
    margin-top: 40px;
}

.product-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-load-more-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.2);
}

.product-load-more-btn i {
    transition: transform 0.3s ease;
}

.product-load-more-btn:hover i {
    transform: translateY(2px);
}

/* 产品统计信息 */
.product-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: rgba(26, 115, 232, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.product-stats-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-stats-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.product-stats-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-stats-item .count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* 产品筛选器 */
.product-filter {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.product-filter-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-filter-title i {
    color: var(--primary-blue);
}

.product-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-filter-option {
    padding: 8px 20px;
    background-color: rgba(26, 115, 232, 0.08);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.product-filter-option:hover, .product-filter-option.active {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 产品比较功能 */
.product-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 100;
    display: none;
}

.product-compare-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-compare-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.compare-count {
    background-color: var(--primary-blue);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.product-compare-actions {
    display: flex;
    gap: 15px;
}

.compare-action-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compare-clear-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.compare-clear-btn:hover {
    background-color: var(--bg-light);
}

.compare-view-btn {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
}

.compare-view-btn:hover {
    background-color: var(--primary-blue-dark);
}




















































/* 非PC端隐藏友情链接模块 */
  
  /* 手机：小于768px */
  @media (max-width: 767px) {
    .show-on-mobile { display: block; }
    .sectionlink { display: none; }
  }
  
  /* 平板：768px-991px */
  @media (min-width: 768px) and (max-width: 991px) {
    .show-on-tablet { display: block; }
    .sectionlink { display: none; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
