
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

        body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
            line-height: 1.6;
            color: #000;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

	 
	 
        @media (max-width: 480px) {
            .contact-info {
                font-size: 11px;
            }
            
            .logo img {
                height: 35px;
            }
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 头部样式 - 改进版 */
        .header {
            background: #f8f8f8;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            position: relative;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

      

        .contact-info {
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .phone-icon {
            margin-right: 5px;
            font-size: 16px;
        }

        .vertical-line {
            margin: 0 10px;
            color: #ccc;
        }

        .hotline-text {
            color: #666;
        }

        .phone-number {
            color: #e74c3c;
            font-weight: bold;
            margin-left: 5px;
        }

        /* 汉堡菜单按钮样式 */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001; /* 确保在导航上方 */
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* 汉堡菜单动画 */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* 导航菜单样式 */
        .navigation {
            position: relative;
        }

        .navigation > ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navigation > ul > li {
            position: relative;
            margin: 0 15px;
        }

        .navigation > ul > li > a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s;
        }

        .navigation > ul > li > a:hover,
        .navigation > ul > li > a.on {
            color: #e74c3c;
        }

        /* 二级菜单样式 */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 180px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            border-radius: 5px;
            padding: 5px 0;
        }

        .navigation > ul > li:hover .sub-menu {
            opacity: 1;
            visibility: visible;
        }

        .sub-menu li {
            display: block;
            width: 100%;
            margin: 0;
        }

        .sub-menu a {
            display: block;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }

        .sub-menu a:hover {
            color: #fff !important;
            background-color: #e74c3c !important;
        }

        /* 移动端样式 */
        @media (max-width: 768px) {
		 .contact-info{
			display:none}
            .hamburger {
                display: flex;
            }

            .navigation {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(248, 248, 248, 0.98);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 1000;
                padding-top: 80px;
                overflow-y: auto;
            }

            .navigation.active {
                transform: translateX(0);
            }

            .navigation > ul {
                flex-direction: column;
                padding: 0;
            }

            .navigation > ul > li {
                margin: 0;
                width: 100%;
            }

            .navigation > ul > li > a {
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
            }

            .sub-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
                background: rgba(240, 240, 240, 0.5);
            }

            .navigation > ul > li.active .sub-menu {
                max-height: 500px;
            }

            .sub-menu a {
                padding-left: 30px;
            }
        }


        /* 底部样式 */
        .footer {
		background:url(../skin/foot.jpg);
           
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .footer-column {
            flex: 1;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-contact h3 {
            margin-bottom: 10px;
            color: #fff;
        }

        .footer-contact p {
            margin: 5px 0;
            color: #999;
        }

        .footer-links {
            margin-top: 10px;
            display: flex;
            align-items: center;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #e74c3c;
        }

        .footer-links .link-divider {
            margin: 0 10px;
            color: #555;
        }

        .footer-qrcode {
            text-align: right;
        }

        .footer-qrcode img {
            width: 80px;
            height: 80px;
            margin-bottom: 5px;
            border: 2px solid #fff;
        }

        .footer-qrcode p {
            font-size: 12px;
            color: #999;
        }

        .footer-divider {
            height: 1px;
            background: #555;
            margin: 20px 0;
        }

        .footer-copyright {
            text-align: left;
            color: #999;
            font-size: 14px;
        }
		
		
		
		

        /* 响应式设计 */
        @media (max-width: 768px) {
          
         
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-column {
                margin-bottom: 20px;
            }
            
            .footer-qrcode {
                text-align: center;
            }
        }