 /* 全局样式 */
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        /* 按钮样式 */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background: #0066cc;
            color: white;
        }
        
        .btn-primary:hover {
            background: transparent;
            border-color: #0066cc;
            color: #0066cc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }
        
        /* 页面标题样式 */
        .page-header {
            background: url('https://file.weibeicc.com/weibei/link_us_bg.png') center/cover no-repeat;
            padding: 150px 0 100px;
            position: relative;
            text-align: center;
            color: #0066cc;
        }
        
        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .page-header .container {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
			color:#0066cc;
            animation: fadeInUp 1s ease;
        }
        
        .page-header p {
            font-size: 20px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        /* 联系我们样式 */
        .contact-section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-content {
            display: flex;
            gap: 60px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            background: #0088ff;
        }
        
        .contact-details h4 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .contact-details p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 联系CTA样式 */
        .contact-cta {
            flex: 1;
            background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
            border-radius: 15px;
            padding: 50px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
            transition: all 0.5s ease;
        }
        
        .contact-cta:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 102, 204, 0.4);
        }
        
        .contact-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 6s linear infinite;
        }
        
        @keyframes shimmer {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .contact-cta h3 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .contact-cta p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .cta-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .stat-item {
            text-align: center;
            /* padding: 20px; */
			min-width: 120px;
			min-height: 100px;
			padding:20px 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 10px;
            color: white;
			position: relative;
        }
		.stat-number::after {
		    content: '+';
		    font-size: 32px;
		    position: absolute;
		    top: 0;
		    right: 8px;
		    opacity: 1;
		}
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-color: white;
        }
        
        .btn-secondary:hover {
            background: white;
            color: #0066cc;
        }
        
        .cta-visual {
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            z-index: 0;
        }
        
        .visual-bg {
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }
        
        .visual-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            opacity: 0.2;
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(-50%, -50%) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateY(-20px);
            }
        }
        
        /* 地图样式 */
        .map-section {
            padding: 100px 0;
            background: #f9f9f9;
        }
        
        .map-container {
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* 常见问题样式 */
        .faq-section {
            padding: 100px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f5f5f5;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 200px;
        }
        
        .faq-answer p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }
        
        /* 响应式样式 */
        @media (max-width: 751px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .contact-section,
            .map-section,
            .faq-section {
                padding: 60px 0;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info,
            .contact-cta {
                width: 100%;
            }
            
            .contact-info {
                margin-bottom: 50px;
            }
            
            .contact-details {
                text-align: left;
            }
            
            .contact-cta {
                padding: 30px;
            }
            
            .contact-cta h3 {
                font-size: 24px;
            }
            
            .contact-cta p {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .cta-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                padding: 15px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .btn {
                width: 100%;
                text-align: center;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #0066cc;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #0088ff;
        }