        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        /* 全局品牌色彩（与全站完全一致） */
        :root {
            --primary: #2E7D32; /* 益禾堂品牌绿 */
            --primary-light: #81C784;
            --primary-dark: #1B5E20;
            --secondary: #FFC107; /* 暖黄色点缀 */
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --gray: #666666;
            --dark: #333333;
        }
        body {
            background-color: var(--light-gray);
            color: var(--dark);
            line-height: 1.6;
        }
        /* 通用样式（与全站完全一致） */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: #e7770a;
            color: var(--white);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            text-decoration: none;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        .section {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title h3 {
            font-size: 32px;
            font-weight: bold;
            color: #e7770a;
            margin-bottom: 10px;
        }
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        /* 顶部信息栏（与全站完全一致） */
        .top-bar {
	background-color: #F4F4F4;
	color: #333;
	padding: 8px 0;
	font-size: 14px;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar .social a {
	color: #333;
	margin-left: 15px;
	transition: 0.3;
        }
        .top-bar .social a:hover {
            color: var(--secondary);
        }
		        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
			width:200px;
        }
        .logo-text {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            letter-spacing: 2px;
        }
        .logo-desc {
            font-size: 12px;
            color: var(--gray);
        }
		        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 999;
            transition: padding 0.3s ease;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        /* 桌面导航（与全站完全一致） */
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--dark);
            font-size: 16px;
            font-weight: 500;
            position: relative;
        }
        .nav-desktop a.active {
            color: #e7770a;
        }
        .nav-desktop a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e7770a;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        /* 移动端菜单（与全站完全一致） */
        .menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background-color: var(--white);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .nav-mobile a {
            display: block;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            color: var(--dark);
            text-decoration: none;
        }
        .nav-mobile a.active {
            color: var(--primary);
        }

        /* 页面标题与面包屑（与全站完全一致） */
        .page-header {
            background-color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .page-title {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .breadcrumb {
            font-size: 16px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
		        /* 底部footer（与全站完全一致） */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 25px;
            color: #e7770a;
        }
        .footer-col p {
            color: #999;
            line-height: 1.8;
            margin-bottom: 20px;
			font-size: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 15px;
			font-size: 16px;
			color: #999;
        }
        .footer-col ul li a {
            color: #999;
            text-decoration: none;
            transition: 0.3;
        }
        .footer-col ul li a:hover {
            color: #e7770a;
        }
        .footer-social {
            display: flex;
            gap: 15px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: rgba(46, 125, 50, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: 0.3;
        }
        .footer-social a:hover {
            background-color: var(--primary);
        }
        .qrcode {
            width: 120px;
            height: 120px;
            background-color: var(--white);
            padding: 5px;
            border-radius: 4px;
        }
        .qrcode img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            color: #777;
            font-size: 14px;
        }
        @media (max-width: 768px) {
        .logo img {
			width:150px;
        }			
        }			