
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
            background-attachment: fixed;
            position: relative;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(0, 75, 141, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(0, 75, 141, 0.02) 49%, rgba(0, 75, 141, 0.02) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(0, 102, 204, 0.02) 49%, rgba(0, 102, 204, 0.02) 51%, transparent 52%);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
            animation: techGrid 20s linear infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        /* 科技感网格动画 */
        @keyframes techGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }
        
        /* 浮动粒子效果 */
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(0, 75, 141, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        .particle:nth-child(2n) {
            background: rgba(0, 102, 204, 0.08);
            animation-duration: 20s;
        }
        .particle:nth-child(3n) {
            background: rgba(255, 215, 0, 0.06);
            animation-duration: 25s;
        }
        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }
        
        /* 科技感光效 */
        .tech-glow {
            position: relative;
        }
        .tech-glow::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #004b8d, #0066cc, #004b8d);
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .tech-glow:hover::before {
            opacity: 0.3;
        }
        
        /* 脉冲动画 */
        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* 渐变边框动画 */
        .gradient-border {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
        }
        .gradient-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #004b8d, #0066cc, #004b8d, #0066cc);
            background-size: 400% 400%;
            border-radius: inherit;
            z-index: -1;
            animation: gradientShift 3s ease infinite;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .logo-section {
            padding: 15px 0;
            background-color: #fff;
        }
        .logo-text {
            color: #004b8d;
            font-size: 16px;
            font-weight: bold;
            line-height: 1.2;
        }
        .logo-text small {
            display: block;
            font-size: 14px;
            color: #666;
        }
        .search-box {
            border-radius: 20px;
            border: 1px solid #ddd;
            background-color: #f8f9fa;
        }
        .search-btn {
            border-radius: 20px;
            background-color: #f8f9fa;
            border: none;
        }
        .navbar {
            background-color: #004b8d !important;
            padding: 0;
        }
        .nav-link {
            color: #fff !important;
            padding: 15px 20px !important;
            font-size: 16px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: #003366;
        }
        .banner-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        /* Banner区域样式 */
        .banner-section {
            margin: 40px 0;
        }
        
        .banner-carousel-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            background: #fff;
        }
        
        .banner-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .carousel-item:hover .banner-img {
            transform: scale(1.02);
        }
        
        /* 轮播控制按钮样式 */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(0, 75, 141, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }
        
        /* 轮播指示器样式 */
        .carousel-indicators {
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.8);
            margin: 0 4px;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background-color: #fff;
            transform: scale(1.2);
        }
        
        /* 信息卡片样式 */
        .banner-info-card {
            height: 100%;            
            border-radius: 16px;
            background-color: #FFF;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            border: 1px solid rgba(0, 75, 141, 0.06);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .banner-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 75, 141, 0.12);
        }
        
        .banner-info-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .banner-info-title {
            font-size: 24px;
            font-weight: 600;
            color: #004b8d;
            margin: 0 0 20px 0;
            line-height: 1.3;
            position: relative;
            padding-bottom: 12px;
        }
        
        .banner-info-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #004b8d, #0066cc);
            border-radius: 2px;
        }
        
        .banner-info-text {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            text-align: justify;
            margin: 0;
        }
        .content-section {
            padding: 30px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-weight: bold;
            color: #004b8d;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #eee;
        }
        .news-box {            
            border-radius: 12px;
            padding: 20px 22px;
            margin-bottom: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            background-color: #FFF;
            border: 1px solid #eee;
        }
        .news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }
        .news-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            position: relative;
        }

        /* 移除旧的圆点前缀 */
        .news-list li::before { content: none; display: none; }

        /* 日期方格 */
        .news-date {
            width: 46px;
            height: 46px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #fff;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            flex-shrink: 0;
        }
        .news-list li:last-child {
            border-bottom: none;
        }
        .news-list .date {
            color: #999;
            font-size: 12px;
        }
        .news-title {
            color: #004b8d;
            font-weight: 600;
            margin: 0;
            letter-spacing: 0.2px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-title i { color: #004b8d; font-size: 18px; }

        .news-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

        .news-more { color: #666; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
        .news-more::after { content: '›'; font-size: 16px; line-height: 1; }
        .news-more:hover { color: #004b8d; }

        .news-box .text-decoration-none {
            color: #333;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .news-box .text-decoration-none:hover {
            color: #111;
        }

        .news-list li:hover::before {
            background-color: #666;
        }
        .service-box {
            text-align: center;
            margin-bottom: 30px;
        }
        .service-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            border-radius: 10px;
            overflow: hidden;
        }
        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .service-title {
            font-size: 16px;
            font-weight: bold;
            color: #004b8d;
            margin-bottom: 10px;
        }
        .footer {
            background-color: #004b8d;
            color: #fff;
            padding: 30px 0;
        }
        .footer-bottom {
            background-color: #003366;
            padding: 15px 0;
            color: #ddd;
        }
        .contact-info p {
            margin-bottom: 8px;
            font-size: 14px;
        }
        .contact-info i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }
        
        /* 六边形样式 */
        .hexagon-section {
            background-color: #f8f9fa;
            padding: 50px 0;
            overflow: hidden;
        }
        
        .hexagon-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin: 0 auto;
        }
        
        .hexagon-wrapper {
            position: absolute;
            width: 150px;
            height: 150px;
            transition: all 0.3s ease;
        }
        
        .hexagon {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: #004b8d;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .hexagon:hover {
            background-color: #003366;
            transform: scale(1.05);
        }
        
        .hex-content {
            text-align: center;
            padding: 10px;
        }
        
        .hex-content i {
            font-size: 28px;
            margin-bottom: 5px;
            display: block;
        }
        
        .hex-content span {
            font-size: 14px;
            font-weight: bold;
        }
        
        /* 六边形位置 */
        #hex1 { animation: float 3s ease-in-out infinite; }
        #hex2 { animation: float 3s ease-in-out infinite 0.5s; }
        #hex3 { animation: float 3s ease-in-out infinite 1s; }
        #hex4 { animation: float 3s ease-in-out infinite 1.5s; }
        #hex5 { animation: float 3s ease-in-out infinite 2s; }
        #hex6 { animation: float 3s ease-in-out infinite 2.5s; }
        #hex-center { 
            background-color: #e74c3c;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .hexagon-wrapper:nth-child(1) { top: 50px; left: 50%; transform: translateX(-50%); }
        .hexagon-wrapper:nth-child(2) { top: 125px; right: 25%; }
        .hexagon-wrapper:nth-child(3) { bottom: 125px; right: 25%; }
        .hexagon-wrapper:nth-child(4) { bottom: 50px; left: 50%; transform: translateX(-50%); }
        .hexagon-wrapper:nth-child(5) { bottom: 125px; left: 25%; }
        .hexagon-wrapper:nth-child(6) { top: 125px; left: 25%; }
        .center-hex { top: 50%; left: 50%; transform: translate(-50%, -50%); }
        
        /* 动画效果 */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .hexagon-container {
                height: 600px;
            }
            .hexagon-wrapper {
                width: 100px;
                height: 100px;
            }
            .hex-content i {
                font-size: 20px;
            }
            .hex-content span {
                font-size: 12px;
            }
        }
        
        /* 人物卡片样式 */
        .person-card {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 32px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            border: 1px solid rgba(0, 75, 141, 0.06);
            transition: all 0.3s ease;
            margin: 20px 0;
        }
        
        .person-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 75, 141, 0.12);
        }
        
        .person-image {
            flex-shrink: 0;
        }
        
        .person-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .person-description {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.6;
            max-height: calc(1.6em * 2);
        }
        
        .person-card:hover .person-photo {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .person-info {
            flex: 1;
        }
        
        .person-name {
            font-size: 24px;
            font-weight: 600;
            color: #004b8d;
            margin: 0 0 8px 0;
            line-height: 1.2;
        }
        
        .person-title {
            font-size: 16px;
            color: #666;
            font-weight: 500;
            margin: 0 0 16px 0;
            line-height: 1.4;
        }
        
        .person-description {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }
        
        /* 移动端响应式 */
        @media (max-width: 768px) {
            .person-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 24px;
                gap: 20px;
            }
            
            .person-photo {
                width: 100px;
                height: 100px;
                object-position: top center;
            }
            
            .person-name {
                font-size: 20px;
            }
            
            .person-title {
                font-size: 14px;
            }
            
            .person-description {
                font-size: 14px;
                text-align: left;
            }
        }
        
        /* 服务卡片样式 */
        .services-section {
            margin: 40px 0;
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-title {
            font-size: 28px;
            font-weight: 600;
            color: #004b8d;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }
        
        .services-subtitle {
            font-size: 16px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
        .service-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            border: 1px solid rgba(0, 75, 141, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 75, 141, 0.15);
        }
        
        .service-card-header {
            background: linear-gradient(135deg, #004b8d 0%, #0066cc 100%);
            padding: 24px;
            text-align: center;
            position: relative;
        }
        
        .service-card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
        }
        
        .service-card .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }
        
        .service-card .service-icon i {
            font-size: 28px;
            color: #ffffff;
        }
        
        .service-card-title {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }
        
        .service-card-body {
            padding: 24px;
        }
        
        .service-item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            padding: 12px 0;
            transition: all 0.3s ease;
        }
        
        .service-item:last-child {
            margin-bottom: 0;
        }
        
        .service-item:hover {
            transform: translateX(8px);
        }
        
        .service-item-icon {
            color: #004b8d;
            font-size: 16px;
            font-weight: bold;
            margin-right: 12px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }
        
        .service-item-text {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            font-weight: 500;
        }
        
        /* 服务卡片移动端样式 */
        @media (max-width: 768px) {
            .services-section {
                margin: 20px 0;
                padding: 20px 0;
            }
            
            .services-title {
                font-size: 24px;
            }
            
            .services-subtitle {
                font-size: 14px;
            }
            
            .service-card {
                border-radius: 12px;
                margin-bottom: 16px;
            }
            
            .service-card-header {
                padding: 20px;
            }
            
            .service-card .service-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 12px;
            }
            
            .service-card .service-icon i {
                font-size: 24px;
            }
            
            .service-card-title {
                font-size: 18px;
            }
            
            .service-card-body {
                padding: 20px;
            }
            
            .service-item {
                margin-bottom: 12px;
                padding: 10px 0;
            }
            
            .service-item-text {
                font-size: 13px;
            }
        }
        
        /* 联系表单样式 */
        .contact-form-section {
            margin: 40px 0;
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .contact-form-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            border: 1px solid rgba(0, 75, 141, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .contact-form-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 75, 141, 0.12);
        }
        
        .contact-form-header {
            background: linear-gradient(135deg, #004b8d 0%, #0066cc 100%);
            padding: 32px 40px;
            text-align: center;
            position: relative;
        }
        
        .contact-form-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
        }
        
        .contact-form-title {
            font-size: 28px;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }
        
        .contact-form-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.5;
        }
        
        .contact-form-body {
            padding: 40px;
        }
        
        .contact-form {
            margin: 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }
        
        .contact-input,
        .contact-textarea {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #ffffff;
        }
        
        .contact-input:focus,
        .contact-textarea:focus {
            border-color: #004b8d;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 75, 141, 0.1);
            outline: none;
        }
        
        .contact-textarea {
            resize: vertical;
            min-height: 80px;
        }
        
        .contact-submit-btn {
            background: linear-gradient(135deg, #004b8d 0%, #0066cc 100%);
            border: none;
            border-radius: 12px;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            transition: all 0.3s ease;
            width: 100%;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .contact-submit-btn:hover::before {
            left: 100%;
        }
        
        .contact-submit-btn:hover {
            background: linear-gradient(135deg, #003366 0%, #004b8d 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 75, 141, 0.3);
            color: #ffffff;
        }
        
        .contact-submit-btn:active {
            transform: translateY(0);
        }
        
        .contact-submit-btn i {
            font-size: 18px;
        }
        
        /* 联系表单移动端样式 */
        @media (max-width: 768px) {
            .contact-form-section {
                margin: 20px 0;
                padding: 20px 0;
            }
            
            .contact-form-header {
                padding: 24px 20px;
            }
            
            .contact-form-title {
                font-size: 24px;
            }
            
            .contact-form-subtitle {
                font-size: 14px;
            }
            
            .contact-form-body {
                padding: 24px 20px;
            }
            
            .contact-form-card {
                border-radius: 16px;
            }
            
            .contact-input,
            .contact-textarea {
                border-radius: 10px;
                padding: 10px 14px;
                font-size: 13px;
            }
            
            .contact-submit-btn {
                border-radius: 10px;
                padding: 12px 20px;
                font-size: 15px;
                height: 46px;
            }
            
            .contact-submit-btn i {
                font-size: 16px;
            }
            
            /* Banner移动端样式 */
            .banner-section {
                margin: 20px 0;
            }
            
            .banner-carousel-wrapper {
                border-radius: 12px;
                margin-bottom: 20px;
            }
            
            .banner-img {
                height: 250px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 20px;
                height: 20px;
            }
            
            .banner-info-card {
                padding: 24px;
                border-radius: 12px;
            }
            
            .banner-info-title {
                font-size: 20px;
                margin-bottom: 16px;
            }
            
            .banner-info-text {
                font-size: 14px;
                line-height: 1.6;
            }
        }
        
        /* 平台卡片样式 */
        .platform-section {
            margin: 40px 0;
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .platform-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .platform-title {
            font-size: 28px;
            font-weight: 600;
            color: #004b8d;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }
        
        .platform-subtitle {
            font-size: 16px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
        .platform-simple-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 75, 141, 0.08);
            border: 1px solid rgba(0, 75, 141, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .platform-simple-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 75, 141, 0.12);
        }
        
        .platform-simple-header {
            padding: 24px 24px 16px 24px;
            border-bottom: 1px solid rgba(0, 75, 141, 0.08);
        }
        
        .platform-simple-title {
            font-size: 20px;
            font-weight: 600;
            color: #004b8d;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }
        
        .platform-simple-line {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #004b8d, #0066cc);
            border-radius: 2px;
        }
        
        .platform-simple-body {
            padding: 20px 24px 24px 24px;
        }
        
        .platform-simple-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            padding: 16px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 75, 141, 0.04);
        }
        
        .platform-simple-item:last-child {
            margin-bottom: 0;
        }
        
        .platform-simple-item:hover {
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            border-color: rgba(0, 75, 141, 0.1);
            transform: translateX(6px);
            box-shadow: 0 4px 16px rgba(0, 75, 141, 0.08);
        }
        
        .platform-simple-icon {
            font-size: 24px;
            margin-right: 16px;
            flex-shrink: 0;
            width: 32px;
            text-align: center;
            background: rgba(0, 75, 141, 0.1);
            border-radius: 8px;
            padding: 8px 0;
        }
        
        .platform-simple-text {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            font-weight: 500;
        }
        
        /* 平台卡片移动端样式 */
        @media (max-width: 768px) {
            .platform-section {
                margin: 20px 0;
                padding: 20px 0;
            }
            
            .platform-title {
                font-size: 24px;
            }
            
            .platform-subtitle {
                font-size: 14px;
            }
            
            .platform-simple-card {
                border-radius: 12px;
                margin-bottom: 16px;
            }
            
            .platform-simple-header {
                padding: 20px 20px 12px 20px;
            }
            
            .platform-simple-title {
                font-size: 18px;
            }
            
            .platform-simple-body {
                padding: 16px 20px 20px 20px;
            }
            
            .platform-simple-item {
                margin-bottom: 12px;
                padding: 12px;
            }
            
            .platform-simple-icon {
                font-size: 20px;
                width: 28px;
                margin-right: 12px;
            }
            
            .platform-simple-text {
                font-size: 13px;
            }
        }


        /*1111*/

        .services-workflow-container {
                padding: 30px 0;
            }
            
            
            .workflow-row {
                display: flex;
                justify-content: space-between;
                gap: 15px;
                margin-bottom: 20px;
                flex-wrap: wrap;
            }
            
            .workflow-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
                border: 2px solid #e9ecef;
                border-radius: 16px;
                padding: 18px 12px;
                width: 180px;
                height: 130px;
                transition: all 0.3s ease;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(0,0,0,0.08);
                position: relative;
                overflow: hidden;
                flex: 1;
                max-width: 180px;
            }
            
            .workflow-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #004b8d 0%, #0066cc 100%);
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            
            .workflow-item:hover {
                transform: translateY(-5px);
                border-color: #004b8d;
                box-shadow: 0 8px 25px rgba(0, 75, 141, 0.15);
            }
            
            .workflow-item:hover::before {
                opacity: 1;
            }
            
            .workflow-number {
                position: absolute;
                top: 8px;
                right: 8px;
                background: linear-gradient(135deg, #004b8d 0%, #0066cc 100%);
                color: white;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 600;
            }
            
            .workflow-icon {
                margin-top: 12px;
                margin-bottom: 10px;
                color: #004b8d;
                font-size: 28px;
                transition: all 0.3s ease;
            }
            
            .workflow-item:hover .workflow-icon {
                color: #0066cc;
                transform: scale(1.1);
            }
            
            .workflow-text {
                color: #333;
                font-size: 13px;
                font-weight: 500;
                text-align: center;
                line-height: 1.3;
                transition: color 0.3s ease;
            }
            
            .workflow-item:hover .workflow-text {
                color: #004b8d;
            }
            
            @media (max-width: 768px) {
                .workflow-row {
                    gap: 12px;
                    margin-bottom: 15px;
                }
                
                .workflow-item {
                    width: 120px;
                    height: 110px;
                    padding: 12px 8px;
                }
                
                .workflow-icon {
                    font-size: 24px;
                    margin-top: 8px;
                    margin-bottom: 6px;
                }
                
                .workflow-text {
                    font-size: 12px;
                }
            }
            
            @media (max-width: 600px) {
                .workflow-row {
                    gap: 8px;
                }
                
                .workflow-item {
                    width: 100px;
                    height: 95px;
                    padding: 10px 6px;
                }
                
                .workflow-icon {
                    font-size: 20px;
                    margin-top: 6px;
                    margin-bottom: 4px;
                }
                
                .workflow-text {
                    font-size: 11px;
                }
            }

       /*222*/
.people-carousel-container {
                position: relative;
                padding: 20px 0;
            }
            
            .people-carousel {
                display: flex;
                gap: 20px;
                overflow-x: auto;
                scroll-behavior: smooth;
                padding: 10px 0 20px 0;
                scrollbar-width: none; /* 隐藏Firefox滚动条 */
                -ms-overflow-style: none; /* 隐藏IE滚动条 */
            }
            
            .people-carousel::-webkit-scrollbar {
                display: none; /* 隐藏Webkit浏览器滚动条 */
            }
            
            .people-carousel .person-card {
                flex: 0 0 450px;
                min-width: 450px;
                transition: transform 0.3s ease;
            }
            
            .people-carousel .person-card:hover {
                transform: translateY(-5px);
            }
            
            .carousel-controls {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 100%;
                display: flex;
                justify-content: space-between;
                pointer-events: none;
                z-index: 10;
            }
            
            .carousel-btn {
                background: rgba(0, 123, 255, 0.9);
                color: white;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                pointer-events: all;
                box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            }
            
            .carousel-btn:hover {
                background: rgba(0, 86, 179, 0.9);
                transform: scale(1.1);
            }
            
            .prev-btn {
                margin-left: -20px;
            }
            
            .next-btn {
                margin-right: -20px;
            }
            
            @media (max-width: 768px) {
                .people-carousel .person-card {
                    flex: 0 0 350px;
                    min-width: 350px;
                }
                
                .carousel-btn {
                    width: 35px;
                    height: 35px;
                }
                
                .prev-btn {
                    margin-left: -10px;
                }
                
                .next-btn {
                    margin-right: -10px;
                }
            }
            
            @media (max-width: 480px) {
                .people-carousel .person-card {
                    flex: 0 0 280px;
                    min-width: 280px;
                }
            }