   /* 公共CSS部分 - 导航与底部 */
        :root {
            --primary-color: #0a1f3a;
            --secondary-color: #d4af37;
            --accent-color: #1e3a5f;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --transition: all 0.5s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 31, 58, 0.95);
            padding: 15px 0;
            z-index: 1000;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(10, 31, 58, 0.98);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-left: 10px;
        }
        
        .logo-highlight {
            color: var(--secondary-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 15px;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-phone {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 600;
        }
        
        .nav-phone i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        
        /* 底部样式 */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .qrcode {
            width: 120px;
            height: 120px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        .qrcode img {
  max-width: 100%;
  height: auto;
}
        
        .qrcode span {
            color: var(--dark-color);
            font-weight: 500;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* 友情链接样式 */
        .friend-links {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            margin-top: 20px;
        }
        
        .friend-links h4 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .friend-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .friend-link {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .friend-link:hover {
            color: var(--secondary-color);
        }
        
		
		 /* 咨询特效样式 */
        .consultation-banner {
            background: linear-gradient(135deg, var(--secondary-color), #e6c12e);
            color: var(--primary-color);
            padding: 50px 0;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .consultation-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .consultation-content h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .consultation-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .consultation-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .consultation-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .consultation-btn:hover {
            background-color: #0a1f3a;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .consultation-btn:hover:before {
            left: 100%;
        }
        
        .consultation-btn:active {
            transform: translateY(-2px);
        }
        
        .consultation-icon {
            font-size: 1.5rem;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .shape-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 10%;
            animation: float 10s ease-in-out infinite;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 8%;
            animation: float 7s ease-in-out infinite;
        }
        
        .shape-4 {
            width: 120px;
            height: 120px;
            top: 70%;
            right: 5%;
            animation: float 9s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }