        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 背景图设置 */
        body {
            background-image: url('images/background.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            line-height: 1.6;
            /* 背景图设置 */
        }

        /* 导航栏样式 */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-right: 20px;
        }
		
        /* 修改1：为导航栏中所有普通的 li（非LOGO）设置右边距，但最后一个普通导航项不受影响 */
        /* 注意：我们不再为所有 li 设置 margin-right，因为我们要用 margin-left: auto 推 LOGO 到最右 */
        /* 原代码：nav ul li { margin-right: 20px; } （已调整用途，见下方）*/		

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #007bff;
        }
		
        /* 新增2：为LOGO所在的导航项单独设置样式，让它靠右对齐，不紧贴联系我们 */
        nav ul li.logo-nav-item {
            margin-left: auto;  /* 关键：将此项目推到最右边 */
            margin-right: 0;    /* 确保右边不留空隙 */
        }

        /* 新增3：为LOGO图片设置样式（如果你使用图片LOGO） */
        .navbar-logo {
            height: 32px;       /* 可根据你的LOGO实际大小调整，比如 30px / 40px */
            width: auto;
            display: block;
        }

        /* 新增4：为文字LOGO设置样式（如果你暂时不用图片，可使用此样式） */
        .navbar-logo-text {
            font-size: 1.4rem;
            font-weight: bold;
            color: #fd7e14; /* 👈 当前文字颜色是深灰色 #333 */
            text-decoration: none;
        }

        /* 可选：LOGO或文字的悬停效果 */
        .navbar-logo:hover,
        .navbar-logo-text:hover {
            opacity: 0.8;
            transition: opacity 0.3s;
        }		

        /* 主要内容区域 */
        .hero {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            margin-bottom: 70px;
            /* 增加底部间距50改为70 */
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #0056b3;
        }

        /* 产品展示区域 */
        .products {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 50px 0;
            margin-bottom: 50px;
            border-radius: 10px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-img {
            height: 200px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            margin-bottom: 10px;
        }

        .product-info p {
            color: #666;
            margin-bottom: 15px;
        }

        .price {
            font-weight: bold;
            color: #007bff;
            font-size: 1.2rem;
        }

        /* 页脚样式 */
        footer {
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-top: auto;
            /* 确保页脚始终在底部 */
        }

        .copyright {
            margin-bottom: 10px;
        }