@charset "utf-8";
/* CSS Document */



		
  /* 轮播图样式 */
        .hero-slider {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .slider-container {
            width: 100%;
            height: 600px;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            padding: 30px;
            color: white;
        }
        
        .slide-content h3 {
            margin-bottom: 5px;
            font-size: 32px;
            font-weight: 600;
        }
        
        .slide-content p {
            font-size: 20px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: #2dce89;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }
        
        .slider-nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 24px;
        }
        
        .slider-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        /* 行业解决方案部分 */
        .solutions {
           /* padding: 80px 0;*/
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .section-header p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .solution-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .solution-img {
            height: 180px;
            background-color: #e6f2ff;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .solution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .solution-card:hover .solution-img img {
            transform: scale(1.05);
        }
        
        .solution-content {
            padding: 25px;
        }
        
        .solution-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 600;
        }
        
        .solution-content p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
			overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:4;  -webkit-box-orient: vertical;
        }
        
        .solution-link {
            color: #3a86ff;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            font-size: 15px;
        }
        
        .solution-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .solution-link:hover i {
            transform: translateX(5px);
        }
        
        /* 服务与支持区域 */
        .services-support {
            /*background-color: #f8fafc;*/
            padding: 70px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: #e6f2ff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            color: #3a86ff;
            font-size: 32px;
        }
        
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 0;
            flex-grow: 1;
            line-height: 1.6;
        }
		
 
        
        /* 产品展示区域 */
        .products-section {
           /* padding: 20px 0;*/
           /* background-color: #f8fafc;*/
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: #3a86ff;
            position: relative;
            font-weight: 600; /* 优化标题粗细 */
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #3a86ff, #2dce89);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-info {
            padding: 25px 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-name {
            font-size: 1.1rem; /* 优化产品名称大小 */
            font-weight: 600;
            color: #1e293b; /* 优化产品名称颜色，提高对比度 */
            margin: 0;
            line-height: 1.4;
        }
        
        /* 分页样式 */
        .pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
        }
        
        .pagination a {
            color: #3a86ff;
            padding: 8px 16px;
            text-decoration: none;
            border: 1px solid #ddd;
            margin: 0 4px;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-weight: 500; 
			    margin-bottom: 5px;
        }
		
		
        .pagination span {
            color: #3a86ff;
            padding: 8px 16px;
            text-decoration: none;
            border: 1px solid #ddd;
            margin: 0 4px;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-weight: 500; 
			    margin-bottom: 5px;
        }
        
        .pagination a.page-num-current {
            background-color: #3a86ff;
            color: white;
            border: 1px solid #3a86ff;
        }
        
        .pagination a:hover:not(.active) {
            background-color: #ddd;
            color: #3a86ff;
        }
		
		        .pagination span:hover {
            background-color: #ddd;
            color: #3a86ff;
        }
		
		



		
		
  /* 响应式设计 */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 32px; /* 响应式调整标题大小 */
            }
        }
		
    /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-menu {
                margin-left: 20px;
            }
            
            .nav-item {
                margin-right: 20px;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .section-header p {
                font-size: 17px;
            }
        }
		
		
 @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                margin-left: 0;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s;
            }
            
            .nav-item.has-dropdown:hover .dropdown-menu {
                max-height: 300px;
            }
            
 
        }
		
  @media (max-width: 768px) {
         
            
            .image-container {
                height: 300px;
            }
            
            .image-content h3 {
                font-size: 26px;
            }
            
            .image-content p {
                font-size: 18px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-name {
                font-size: 1rem; /* 响应式调整产品名称大小 */
            }
            
            .section-title {
                font-size: 28px; /* 响应式调整标题大小 */
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 24px; /* 响应式调整标题大小 */
            }
            
            .product-name {
                font-size: 0.95rem; /* 响应式调整产品名称大小 */
            }
            
            .footer-bottom {
                font-size: 13px; /* 响应式调整页脚文字大小 */
            }
        }
		
		
 @media (max-width: 768px) {
         
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .slider-container {
                height: 400px;
            }
            
            .slide-content h3 {
                font-size: 26px;
            }
            
            .slide-content p {
                font-size: 18px;
            }
            
            .slider-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .solution-content h3 {
                font-size: 18px;
            }
            
            .service-card h3 {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 24px;
            }
            
            .section-header p {
                font-size: 16px;
            }
            
            .slide-content h3 {
                font-size: 22px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .solution-content h3 {
                font-size: 17px;
            }
            
            .solution-content p {
                font-size: 14px;
            }
            
            .service-card h3 {
                font-size: 17px;
            }
            
            .service-card p {
                font-size: 14px;
            }
            
            .footer-bottom {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 22px;
            }
            
            .slide-content h3 {
                font-size: 20px;
            }
            
            .slide-content p {
                font-size: 15px;
            }
        }
		
		
