     color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1500px;
            margin: 0 auto;
        }
        
        .page-header {
            text-align: center;
            padding: 30px 0;
            margin-bottom: 30px;
        }
        
        
        
   
        
        
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
			margin-bottom: 50px;
        }
        
        .company-info {
            flex: 0.65;
        }
        
        .company-info h2 {
            font-size: 1.8rem;
            color: #2d3748;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #edf2f7;
        }
        
        .info-section {
            margin-bottom: 30px;
        }
        
        .info-section h3 {
            color: #3182ce;
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-section h3 i {
            font-size: 1.2rem;
        }
        
        .info-section p {
            color: #4a5568;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        
        .carousel-wrapper {
            flex: 1;
     
            position: relative;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 54, 93, 0.8);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .carousel-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        
        .carousel-caption p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-btn {
            background-color: rgba(255, 255, 255, 0.85);
            color: #2d3748;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .indicator.active {
            background-color: #fff;
        }
        
        .stats-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }
        
        .stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #3182ce;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #4a5568;
        }
        
   
        
     
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }
        
        .contact-item i {
            color: #3182ce;
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .carousel {
                height: 400px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .company-info h2 {
                font-size: 1.6rem;
            }
        }
        
        /* 添加一些动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .company-info, .carousel-wrapper {
            animation: fadeInUp 0.8s ease-out;
        }



