
        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: #333;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 90px;
            margin-right: 10px;
        }
        
        .logo-text h1 {
            font-size: 22px;
            color: #3a6d4a;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 12px;
            color: #666;
        }
        
        nav ul {
            display: flex;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-size: 16px;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #3a6d4a;
        }
        
        /* 横幅区域 */
		
       .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner.png');
            background-size: cover;
            background-position: bottom;
            height: 500px;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 80px;
        }
		.bannernews{ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bannernews.png');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 100px;}
        .banner{margin-top: 100px;}
        .banner-content {
            max-width: 600px;
        }
        
        .banner h2,.bannernews h2 ,.product-banner h2,.rd-banner h2{
            font-size: 39px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .banner p,.bannernews p,.product-banner p,.rd-banner p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #3a6d4a;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .news-content-tit {
            overflow: hidden;text-align: center;matop 15px
            margin-bottom: 30px;
            color: #00366c;
           font-size: 15px;
        }
        .btn:hover {
            background-color: #a52a2a;
        }
        
        /* 产品特色 */
        .features {
            padding: 80px 0;
            background-color: #fff;
        }
        .nature-badge span{font-size: 15px;}
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #3a6d4a;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 16px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #f9f9f9;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 50px;
            color: #3a6d4a;
            margin-bottom: 20px;
        }
        
        .feature-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* 产品展示 */
        .products {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .product-slider {
            display: flex;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            gap: 30px;
        }
        
        .product-card {
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            scroll-snap-align: start;
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #3a6d4a;
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: #666;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #3a6d4a;
        }
        
        /* 关于我们 */
        .about {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text h2 {
            font-size: 36px;
            color: #3a6d4a;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 15px;
        }
		.news-container {
		    display: grid
		;
		    grid-template-columns: repeat(3, 1fr);
		    gap: 30px;
		}
		.origin{margin-bottom: 30px;}
		.origin-gallery{display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;}
        .origin-item{
			background-color: #fff;
			    border-radius: 10px;
			    overflow: hidden;
			    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			    transition: transform 0.3s, box-shadow 0.3s;
				
		}
		.origin-item img{width: 100%;height: 324px;}
		.origin-overlay{
			font-size: 14px;
			    color: #3a6d4a;
			    margin-bottom: 10px;padding: 20px;
		}
		.origin-overlay h3{font-size: 20px;margin-bottom: 15px;color: #2F6641;}
		.origin-overlay {
		    font-size: 14px;
		    color: #666;
		    margin-bottom: 15px;
		    display: -webkit-box;
		    -webkit-line-clamp: 3;
		    -webkit-box-orient: vertical;
		    overflow: hidden;}
        /* 底部 */
        footer {
            background: #2F6641 url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') fixed;
            background-size: cover;
            background-blend-mode: multiply;
			padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #e0a96d;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bbb;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bbb;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
        }
        
        .footer-column .contact-info p {
            margin-bottom: 10px;
            color: #bbb;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        /* 新闻中心 */
                .news {
                    padding: 80px 0;
                    background-color: #f5f5f5;
                }
                
                .news-container {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 30px;
                }
                
                .news-card {
                    background-color: #fff;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s, box-shadow 0.3s;
                }
                
                .news-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }
                
                .news-img {
                    height: 200px;
                    overflow: hidden;
                }
                
                .news-img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s;
                }
                
                .news-card:hover .news-img img {
                    transform: scale(1.05);
                }
                
                .news-content {
                    padding: 20px;
                }
                
                .news-date {
                    font-size: 14px;
                    color: #3a6d4a;
                    margin-bottom: 10px;
                }
                
                .news-title {
                    font-size: 18px;
                    font-weight: bold;
                    margin-bottom: 10px;
                    color: #3a6d4a;
                }
                
                .news-excerpt {
                    font-size: 14px;
                    color: #666;
                    margin-bottom: 15px;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }
                
                .read-more {
                    color: #3a6d4a;
                    font-size: 14px;
                    font-weight: bold;
                    display: inline-block;
                    transition: color 0.3s;
                }
                
                .read-more:hover {
                    color: #a52a2a;
                }
                
                .news-more {
                    text-align: center;
                    margin-top: 40px;
                }
                /* 页面标题横幅 */
                .aboutpage-banner {
                    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about1.jpg');
                    background-size: cover;
                    background-position: center;
                    height: 300px;
                    display: flex;
                    align-items: center;
                    color: white;
                    margin-top: 80px;
                    text-align: center;
                }
                
                .page-banner h1 {
                    font-size: 48px;
                    margin-bottom: 20px;
                }
                
                .page-banner p {
                    font-size: 18px;
                    max-width: 800px;
                    margin: 0 auto;
                }
                
                /* 面包屑导航 */
                .breadcrumb {
                    padding: 15px 0;
                    background-color: #f5f5f5;
                    margin-bottom: 50px;
                }
                
                .breadcrumb ul {
                    display: flex;
                }
                
                .breadcrumb ul li {
                    margin-right: 10px;
                    font-size: 14px;
                }
                
                .breadcrumb ul li:after {
                    content: ">";
                    margin-left: 10px;
                    color: #999;
                }
                
                .breadcrumb ul li:last-child:after {
                    content: "";
                }
                
                .breadcrumb ul li a {
                    color: #3a6d4a;
                }
                
                /* 关于我们内容 */
                .about-section {
                    padding: 60px 0;
                    background-color: #fff;
                }
                
                .section-title {
                    text-align: center;
                    margin-bottom: 50px;
                }
                
                .section-title h2 {
                    font-size: 36px;
                    color: #3a6d4a;
                    margin-bottom: 15px;
                }
                
                .section-title p {
                    font-size: 16px;
                    color: #666;
                    max-width: 700px;
                    margin: 0 auto;
                }
                
                .about-content {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 50px;
                    align-items: center;
                    margin-bottom: 80px;
                }
                
                .about-img {
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                }
                
                .about-img img {
                    width: 100%;
                    height: auto;
                    display: block;
                }
                
                .about-text h2 {
                    font-size: 36px;
                    color: #3a6d4a;
                    margin-bottom: 20px;
                }
                
                .about-text p {
                    margin-bottom: 15px;
                }
                
                /* 发展历程 */
                .history-section {
                    padding: 60px 0;
                    background-color: #f5f5f5;
                }
                
                .timeline {
                    position: relative;
                    max-width: 800px;
                    margin: 0 auto;
                }
                
                .timeline:before {
                    content: '';
                    position: absolute;
                    width: 2px;
                    background-color: #3a6d4a;
                    top: 0;
                    bottom: 0;
                    left: 50%;
                    margin-left: -1px;
                }
                
                .timeline-item {
                    padding: 20px 40px;
                    position: relative;
                    width: 50%;
                    box-sizing: border-box;
                }
                
                .timeline-item:nth-child(odd) {
                    left: 0;
                }
                
                .timeline-item:nth-child(even) {
                    left: 50%;
                }
                
                .timeline-item:after {
                    content: '';
                    position: absolute;
                    width: 20px;
                    height: 20px;
                    background-color: #fff;
                    border: 4px solid #3a6d4a;
                    border-radius: 50%;
                    top: 30px;
                    z-index: 1;
                }
                
                .timeline-item:nth-child(odd):after {
                    right: -10px;
                }
                
                .timeline-item:nth-child(even):after {
                    left: -10px;
                }
                
                .timeline-content {
                    padding: 20px;
                    background-color: #fff;
                    border-radius: 10px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                }
                
                .timeline-year {
                    font-size: 24px;
                    font-weight: bold;
                    color: #3a6d4a;
                    margin-bottom: 10px;
                }
                
                .timeline-title {
                    font-size: 20px;
                    margin-bottom: 10px;
                }
                
                /* 企业文化 */
                .culture-section {
                    padding: 60px 0;
                    background-color: #fff;
                }
                
                .culture-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 30px;
                }
                
                .culture-item {
                    text-align: center;
                    padding: 30px;
                    border-radius: 10px;
                    background-color: #f9f9f9;
                    transition: transform 0.3s;
                }
                
                .culture-item:hover {
                    transform: translateY(-10px);
                }
                
                .culture-icon {
                    font-size: 50px;
                    color: #3a6d4a;
                    margin-bottom: 20px;
                }
                
                .culture-item h3 {
                    font-size: 22px;
                    margin-bottom: 15px;
                }
                
                /* 荣誉资质 */
                .honor-section {
                    padding: 60px 0;
                    background-color: #f5f5f5;
                }
                
                .honor-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 20px;
                }
                
                .honor-item {
                    background-color: #fff;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    text-align: center;
                    padding: 20px;
                }
                
                .honor-img {
                    height: 150px;
                    margin-bottom: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                
                .honor-img img {
                    max-width: 100%;
                    max-height: 100%;
                }
                
                .honor-title {
                    font-size: 16px;
                    font-weight: bold;
                }
              
                
                .copyright {
                    text-align: center;
                    padding-top: 20px;
                    border-top: 1px solid #444;
                    color: #bbb;
                    font-size: 14px;
                }
                
                /* 按钮样式 */
                .btn {
                    display: inline-block;
                    background-color: #3a6d4a;
                    color: white;
                    padding: 12px 30px;
                    border-radius: 30px;
                    font-weight: bold;
                    transition: background-color 0.3s;
                    margin-top: 20px;
                }
                
                .btn:hover {
                    background-color: #a52a2a;
                }
                /* 全局样式 */
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
                }
                
                body {
                    color: #333;
                    line-height: 1.6;
                    background-color: #f8f8f8;
                }
                
                a {
                    text-decoration: none;
                    color: #333;
                }
                
                ul {
                    list-style: none;
                }
                
                .container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 15px;
                }
                
                /* 头部样式 */
                header {
                    background-color: rgba(255, 255, 255, 0.95);
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    position: fixed;
                    width: 100%;
                    top: 0;
                    z-index: 1000;
                    backdrop-filter: blur(5px);
                }
                
                .header-container {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 0;
                }
                
                .logo-text h1 {
                    font-size: 22px;
                    color: #2a7f62; /* 自然绿色 */
                    margin-bottom: 5px;
                }
                
                .logo-text p {
                    font-size: 12px;
                    color: #666;
                }
                
                nav ul {
                    display: flex;
                }
                
                nav ul li {
                    margin-left: 30px;
                }
                
                nav ul li a {
                    font-size: 16px;
                    font-weight: bold;
                    transition: color 0.3s;
                    color: #555;
                }
                
                nav ul li a:hover {
                    color: #2a7f62;
                }
                
                nav ul li a.active {
                    color: #2a7f62;
                    border-bottom: 2px solid #2a7f62;
                }
                
                /* 页面标题横幅 */
                .contactpage-banner {
                    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/202506101835.jpg');
                    background-size: cover;
                    background-position: center;
                    height: 400px;
                    display: flex;
                    align-items: center;
                    color: white;
                    margin-top: 80px;
                    text-align: center;
                }
                
                /* 面包屑导航 */
                .breadcrumb {
                    padding: 15px 0;
                    background-color: #f0f7f4;
                    margin-bottom: 50px;
                }
                
                .breadcrumb ul {
                    display: flex;
                }
                
                .breadcrumb ul li {
                    margin-right: 10px;
                    font-size: 14px;
                }
                
                .breadcrumb ul li:after {
                    content: ">";
                    margin-left: 10px;
                    color: #7a9a8b;
                }
                
                .breadcrumb ul li:last-child:after {
                    content: "";
                }
                
                .breadcrumb ul li a {
                    color: #2a7f62;
                }
                
                /* 关于我们内容 */
                .about-section {
                    padding: 60px 0;
                    background-color: #fff;
                }
                
                .section-title {
                    text-align: center;
                    margin-bottom: 50px;
                }
                
                .section-title h2 {
                    font-size: 36px;
                    color: #2a7f62;
                    margin-bottom: 15px;
                    position: relative;
                    display: inline-block;
                }
                
                .section-title h2:after {
                    content: '';
                    position: absolute;
                    width: 50px;
                    height: 3px;
                    background-color: #e0a96d; /* 自然棕色 */
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                }
                
                .section-title p {
                    font-size: 16px;
                    color: #666;
                    max-width: 700px;
                    margin: 0 auto;
                }
                
                .about-content {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 50px;
                    align-items: center;
                    margin-bottom: 80px;
                }
                
                .about-img {
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                    border: 5px solid #f0f7f4;
                }
                
                .about-img img {
                    width: 100%;
                    height: auto;
                    display: block;
                    transition: transform 0.5s;
                }
                
                .about-img:hover img {
                    transform: scale(1.05);
                }
                
                .about-text h2 {
                    font-size: 36px;
                    color: #2a7f62;
                    margin-bottom: 20px;
                }
                
                .about-text p {
                    margin-bottom: 15px;
                    color: #555;
                }
                
                /* 发展历程 */
                .history-section {
                    padding: 60px 0;
                    background-color: #f0f7f4;
                }
                
                .timeline {
                    position: relative;
                    max-width: 800px;
                    margin: 0 auto;
                }
                
                .timeline:before {
                    content: '';
                    position: absolute;
                    width: 2px;
                    background-color: #2a7f62;
                    top: 0;
                    bottom: 0;
                    left: 50%;
                    margin-left: -1px;
                }
                
                .timeline-item {
                    padding: 20px 40px;
                    position: relative;
                    width: 50%;
                    box-sizing: border-box;
                }
                
                .timeline-item:nth-child(odd) {
                    left: 0;
                }
                
                .timeline-item:nth-child(even) {
                    left: 50%;
                }
                
                .timeline-item:after {
                    content: '';
                    position: absolute;
                    width: 20px;
                    height: 20px;
                    background-color: #fff;
                    border: 4px solid #e0a96d;
                    border-radius: 50%;
                    top: 30px;
                    z-index: 1;
                }
                
                .timeline-item:nth-child(odd):after {
                    right: -10px;
                }
                
                .timeline-item:nth-child(even):after {
                    left: -10px;
                }
                
                .timeline-content {
                    padding: 20px;
                    background-color: #fff;
                    border-radius: 10px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    border: 1px solid #e0e0e0;
                }
                
                .timeline-year {
                    font-size: 24px;
                    font-weight: bold;
                    color: #e0a96d;
                    margin-bottom: 10px;
                }
                
                .timeline-title {
                    font-size: 20px;
                    margin-bottom: 10px;
                    color: #2a7f62;
                }
                
                /* 企业文化 */
                .culture-section {
                    padding: 60px 0;
                    background-color: #fff;
                }
                
                .culture-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 30px;
                }
                
                .culture-item {
                    text-align: center;
                    padding: 30px;
                    border-radius: 10px;
                    background-color: #f0f7f4;
                    transition: all 0.3s;
                    border: 1px solid #e0e0e0;
                }
                
                .culture-item:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                    border-color: #2a7f62;
                }
                
                .culture-icon {
                    font-size: 50px;
                    color: #e0a96d;
                    margin-bottom: 20px;
                }
                
                .culture-item h3 {
                    font-size: 22px;
                    margin-bottom: 15px;
                    color: #2a7f62;
                }
                
                .culture-item p {
                    color: #666;
                }
                
                /* 荣誉资质 */
                .honor-section {
                    padding: 60px 0;
                    background-color: #f0f7f4;
                }
                
                .honor-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 20px;
                }
                
                .honor-item {
                    background-color: #fff;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    text-align: center;
                    padding: 20px;
                    transition: all 0.3s;
                    border: 1px solid #e0e0e0;
                }
                
                .honor-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                    border-color: #2a7f62;
                }
                
                .honor-img {
                    height: 150px;
                    margin-bottom: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                
                .honor-img img {
                    max-width: 100%;
                    max-height: 100%;
                }
                
                .honor-title {
                    font-size: 16px;
                    font-weight: bold;
                    color: #2a7f62;
                }
                .breadcrumbs{background:#2a7f6224;line-height:45px;font-size:14px;padding-top:70px}
                .breadcrumbs #crumbs span{color:#555}
				.path {
				    color: #444;
				    margin-top: 20px !important;
				}
               .theme-background{ overflow:hidden}
			   .container-theme{width:1380px;margin:0 auto;overflow:hidden}
                .theme-framework {
                    background: #fff;
                    overflow: hidden;
                }
				.theme-nevin-tit{margin-top:40px; float:right; width:73%; margin-bottom:30px;}
				.theme-nevin-tit h1{font-size:26px;margin-bottom:30px;font-family:"Roboto Condensed",sans-serif;color:#3a6d4a; font-weight:bold}
				.theme-nevin-tit p{ margin-bottom:15px; color:#444}
				.theme-nevin-tit span{ color:#F90}
				.theme-nevin-tit h2{ color:#3a6d4a; font-size:22px; margin-bottom:15px; margin-top:10px;font-weight: 900;}
				.theme-nevin-tit a{ color:#F00}
				.theme-nevin-tit h2{ color:#3a6d4a; font-size:20px;margin-bottom:10px; margin-top:10px;}
				.theme-nevin-tit h3{ color:#3a6d4a; font-size:20px; margin-bottom:10px; margin-top:10px;}
				.theme-nevin-tit p strong{ color:#3a6d4a}
				.theme-nevin-tit span{ color:#F90}
				.theme-nevin-abstract{ width:100%; overflow:hidden;}
				.theme-nevin-abstract-left{float:right;width:45%}
				.theme-nevin-abstract-left img{width:100%!important;height:auto!important}
				.theme-nevin-abstract-right{float:left;width:50%}
				.theme-nevin-abstract-right p{margin-bottom:10px;line-height:25px;color:#333}
				.theme-nevin-abstract-right p span {color: #194ab0;font-size: 17px;}
				.theme-nevin-abstract-right p i {font-style: normal;font-weight: 700;}
				.theme-nevin-nevin{ overflow:hidden; margin-bottom:20px; margin-top:20px;}
				.theme-nevin-nevin p{ color:#444}
				.sidebar-fr{float:left;width:23%}
				.pro-sidebar{overflow:hidden;padding:10px; margin-top:40px; margin-left:10px;}
				.pro-sidebar ul{overflow:hidden}
				.pro-sidebar li{background:#fff;overflow:hidden;margin-bottom:10px;border-bottom:1px  solid #d8dee4; line-height:45px; font-size:16px;}
				.pro-sidebar li a{ color:#162730}
				.pro-sidebar .hometwodtpic-fl{width:30%;float:left;margin-top:10px}
				.pro-sidebar .hometwodtpic-fl img{width:100%!important;height:auto!important}
				.pro-sidebar .v-space-default-fr{width:60%;float:right}
				.pro-sidebar .v-space-default-fr h2{font-size:18px;margin:0;line-height:28px}
				.pro-sidebar .v-space-default-fr p{font-size:14px;line-height:23px}
				.pro-sidebar .media-cta{font-size:12px;background-size:20px;padding-right:30px}
				.pro-sidebar-title {
				    background: #2a7f62;
				    padding-left: 20px;
				    line-height: 45px;
				    color: #fff;
				}
				.pro-sidebar-title {
				    overflow: hidden;
				    font-size: 20px !important;
				    font-weight: bold !important;
				    color: #fff;}
                /* 按钮样式 */
                .btn {
                    display: inline-block;
                    background-color: #2a7f62;
                    color: white;
                    padding: 12px 30px;
                    border-radius: 30px;
                    font-weight: bold;
                    transition: all 0.3s;
                    margin-top: 20px;
                    border: none;
                    cursor: pointer;
                }
                
                .btn:hover {
                    background-color: #1e6b50;
                    transform: translateY(-2px);
                    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                }
                /* 产品中心页面特有样式 */
                .product-banner {
                    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bannerpro.png');
                    background-size: cover;
                    color: #fff;
                    text-align: center;
					height: 400px;
					    background-position: bottom;
					    display: flex;
					    align-items: center;
					    color: white;
					    margin-top: 100px;
                }
                
               
                .product-showcase {
                    padding: 60px 0;
                }
                
                .product-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                    gap: 30px;
                    margin: 40px 0;
                }
                
                .product-item {
                    background: #fff;
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    position: relative;
                }
                
                .product-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }
                
                .product-badge {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background-color: #8e7037;
                    color: #fff;
                    padding: 3px 10px;
                    border-radius: 3px;
                    font-size: 12px;
                    z-index: 2;
                }
                
                .product-image {
                    position: relative;
                    height: 250px;
                    overflow: hidden;
                }
                
                .product-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }
                
                .product-item:hover .product-image img {
                    transform: scale(1.05);
                }
                
                .product-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(142, 112, 55, 0.7);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                }
                
                .product-item:hover .product-overlay {
                    opacity: 1;
                }
                
                .product-info {
                    padding: 20px;
                }
                
                .product-rating {
                    color: #ffc107;
                    margin: 5px 0;
                    font-size: 14px;
                }
                
                .product-rating span {
                    color: #777;
                    font-size: 12px;
                    margin-left: 5px;
                }
                
                .product-desc {
                    color: #666;
                    font-size: 14px;
                    margin: 10px 0;
                    line-height: 1.5;
                }
                
                .product-price {
                    margin: 15px 0;
                    font-weight: bold;
                    font-size: 18px;
                    color: #8e7037;
                }
                
                .current-price {
                    font-size: 22px;
                }
                
                .original-price {
                    text-decoration: line-through;
                    color: #999;
                    font-size: 16px;
                    margin-left: 8px;
                    font-weight: normal;
                }
                
                .add-to-cart {
                    display: block;
                    width: 100%;
                    text-align: center;
                    background-color: #8e7037;
                    color: #fff;
                    padding: 10px;
                    border-radius: 4px;
                    transition: background-color 0.3s ease;
                }
                
                .add-to-cart:hover {
                    background-color: #6d5629;
                }
                
                .pagination {
                    display: flex;
                    justify-content: center;
                    margin-top: 40px;
                    gap: 10px;
                }
                
                .page-number, .next-page {
                    padding: 8px 15px;
                    border: 1px solid #ddd;
                    color: #555;
                    text-decoration: none;
                    border-radius: 4px;
                    transition: all 0.3s ease;
                }
                
                .page-number.active, 
                .page-number:hover, 
                .next-page:hover {
                    background-color: #8e7037;
                    color: #fff;
                    border-color: #8e7037;
                }
                
                .product-features {
                    background-color: #f9f9f9;
                    padding: 60px 0;
                }
                
                .feature-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 30px;
                    margin-top: 40px;
                }
                
                .feature-item {
                    background: #fff;
                    padding: 30px;
                    border-radius: 8px;
                    text-align: center;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s ease;
                }
                
                .feature-item:hover {
                    transform: translateY(-5px);
                }
                
                .feature-icon {
                    font-size: 40px;
                    margin-bottom: 15px;
                }
                
                .customer-reviews {
                    padding: 60px 0;
                    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/nature-bg.jpg') no-repeat center center;
                    background-size: cover;
                    background-attachment: fixed;
                }
                
                .review-slider {
                    display: flex;
                    gap: 30px;
                    overflow-x: auto;
                    padding: 20px 0;
                    scroll-snap-type: x mandatory;
                }
                
                .review-item {
                    min-width: 350px;
                    scroll-snap-align: start;
                }
                
                .review-content {
                    background: #fff;
                    padding: 30px;
                    border-radius: 8px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                    height: 100%;
                }
                
                .review-rating {
                    color: #ffc107;
                    font-size: 18px;
                    margin-bottom: 15px;
                }
                
                .review-text {
                    color: #555;
                    font-style: italic;
                    line-height: 1.6;
                    margin-bottom: 20px;
                }
                
                .review-author {
                    display: flex;
                    align-items: center;
                }
                
                .review-author img {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    object-fit: cover;
                    margin-right: 15px;
                }
                
                .author-info h4 {
                    margin: 0;
                    color: #333;
                }
                
                .author-info p {
                    margin: 5px 0 0;
                    color: #777;
                    font-size: 14px;
                }
				
				/* 面包屑导航 */
				.breadcrumb {
				    padding: 15px 0;
				    background-color: #f0f7f4;
				    margin-bottom: 50px;
				}
				
				.breadcrumb ul {
				    display: flex;
				}
				
				.breadcrumb ul li {
				    margin-right: 10px;
				    font-size: 14px;
				}
				
				.breadcrumb ul li:after {
				    content: ">";
				    margin-left: 10px;
				    color: #7a9a8b;
				}
				
				.breadcrumb ul li:last-child:after {
				    content: "";
				}
				
				.breadcrumb ul li a {
				    color: #2a7f62;
				}
				
				/* 联系我们内容 */
				.contact-section {
				    padding: 60px 0;
				    background-color: #fff;
				}
				
				.section-title {
				    text-align: center;
				    margin-bottom: 50px;
				}
				
				.section-title h2 {
				    font-size: 36px;
				    color: #2a7f62;
				    margin-bottom: 15px;
				    position: relative;
				    display: inline-block;
				}
				
				.section-title h2:after {
				    content: '';
				    position: absolute;
				    width: 50px;
				    height: 3px;
				    background-color: #e0a96d;
				    bottom: -10px;
				    left: 50%;
				    transform: translateX(-50%);
				}
				
				.section-title p {
				    font-size: 16px;
				    color: #666;
				    max-width: 700px;
				    margin: 0 auto;
				}
				
				.contact-container {
				    display: grid;
				    grid-template-columns: 1fr 1fr;
				    gap: 50px;
				}
				
				.contact-infor {
				    background-color: #f0f7f4;
				    padding: 40px;
				    border-radius: 10px;
				    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
				}
				
				.contact-infor h3 {
				    font-size: 24px;
				    color: #2a7f62;
				    margin-bottom: 20px;
				    padding-bottom: 10px;
				    border-bottom: 1px solid #e0a96d;
				}
				
				.info-item {
				    display: flex;
				    margin-bottom: 20px;
				}
				
				.info-icon {
				    font-size: 24px;
				    color: #e0a96d;
				    margin-right: 15px;
				    width: 40px;
				    text-align: center;
				}
				
				.info-content h4 {
				    font-size: 18px;
				    color: #2a7f62;
				    margin-bottom: 5px;
				}
				
				.info-content p {
				    color: #555;
				}
				
				.contact-form {
				    background-color: #fff;
				    padding: 40px;
				    border-radius: 10px;
				    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
				    border: 1px solid #e0e0e0;
				}
				
				.contact-form h3 {
				    font-size: 24px;
				    color: #2a7f62;
				    margin-bottom: 20px;
				    padding-bottom: 10px;
				    border-bottom: 1px solid #e0a96d;
				}
				
				.form-group {
				    margin-bottom: 20px;
				}
				
				.form-group label {
				    display: block;
				    margin-bottom: 8px;
				    color: #555;
				    font-weight: bold;
				}
				
				.form-control {
				    width: 100%;
				    padding: 12px 15px;
				    border: 1px solid #ddd;
				    border-radius: 5px;
				    font-size: 16px;
				    transition: border-color 0.3s;
				    background-color: #f9f9f9;
				}
				
				.form-control:focus {
				    outline: none;
				    border-color: #2a7f62;
				    background-color: #fff;
				}
				
				textarea.form-control {
				    min-height: 150px;
				    resize: vertical;
				}
				
				/* 地图区域 */
				.map-section {
				    padding: 60px 0;
				    background-color: #f0f7f4;
				}
				
				.map-container {
				    border-radius: 10px;
				    overflow: hidden;
				    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
				}
				
				.map-container iframe {
				    width: 100%;
				    height: 100%;
				    border: none;
				}
				
				/* 底部 */
				
				
				.copyright {
				    text-align: center;
				    padding-top: 20px;
				    border-top: 1px solid #3a4a45;
				    color: #bbb;
				    font-size: 14px;
				}
				
				/* 按钮样式 */
				.btn {
				    display: inline-block;
				    background-color: #2a7f62;
				    color: white;
				    padding: 12px 30px;
				    border-radius: 30px;
				    font-weight: bold;
				    transition: all 0.3s;
				    border: none;
				    cursor: pointer;
				    font-size: 16px;
				}
				
				.btn:hover {
				    background-color: #1e6b50;
				    transform: translateY(-2px);
				    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
				}
				
				.btn-block {
				    display: block;
				    width: 100%;
				}
				
				/* 响应式设计 */
				@media (max-width: 992px) {
				    .contact-container {
				        grid-template-columns: 1fr;
				    }
				    
				    .footer-content {
				        grid-template-columns: repeat(2, 1fr);
				    }
				}
				
				@media (max-width: 768px) {
				    .header-container {
				        flex-direction: column;
				        text-align: center;
				    }
				    
				    nav ul {
				        margin-top: 20px;
				    }
				    
				    nav ul li {
				        margin: 0 10px;
				    }
				    
				    .page-banner {
				        height: 300px;
				    }
				    
				    .page-banner h1 {
				        font-size: 36px;
				    }
				    
				    .footer-content {
				        grid-template-columns: 1fr;
				    }
				}
                /* 响应式设计 */
                @media (max-width: 992px) {
                    .about-content {
                        grid-template-columns: 1fr;
                    }
                    
                    .culture-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .honor-grid {
                        grid-template-columns: repeat(3, 1fr);
                    }
                    
                    .footer-content {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .timeline:before {
                        left: 30px;
                    }
                    
                    .timeline-item {
                        width: 100%;
                        padding-left: 70px;
                        padding-right: 20px;
                    }
                    
                    .timeline-item:nth-child(even) {
                        left: 0;
                    }
                    
                    .timeline-item:after {
                        left: 20px;
                    }
                }
                
                @media (max-width: 768px) {
                    .header-container {
                        flex-direction: column;
                        text-align: center;
                    }
                    
                    nav ul {
                        margin-top: 20px;
                    }
                    
                    nav ul li {
                        margin: 0 10px;
                    }
                    
                    .page-banner {
                        height: 300px;
                    }
                    
                    .page-banner h1 {
                        font-size: 36px;
                    }
                    
                    .culture-grid {
                        grid-template-columns: 1fr;
                    }
                    
                    .honor-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .footer-content {
                        grid-template-columns: 1fr;
                    }
                }
                
                /* 响应式设计 */
                @media (max-width: 992px) {
                    .about-content {
                        grid-template-columns: 1fr;
                    }
                    
                    .culture-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .honor-grid {
                        grid-template-columns: repeat(3, 1fr);
                    }
                    
                    .footer-content {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .timeline:before {
                        left: 30px;
                    }
                    
                    .timeline-item {
                        width: 100%;
                        padding-left: 70px;
                        padding-right: 20px;
                    }
                    
                    .timeline-item:nth-child(even) {
                        left: 0;
                    }
                    
                    .timeline-item:after {
                        left: 20px;
                    }
                }
                
                @media (max-width: 768px) {
                    .header-container {
                        flex-direction: column;
                        text-align: center;
                    }
                    
                    nav ul {
                        margin-top: 20px;
                    }
                    
                    nav ul li {
                        margin: 0 10px;
                    }
                    
                    .page-banner {
                        height: 250px;
                    }
                    
                    .page-banner h1 {
                        font-size: 36px;
                    }
                    
                    .culture-grid {
                        grid-template-columns: 1fr;
                    }
                    
                    .honor-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    
                    .footer-content {
                        grid-template-columns: 1fr;
                    }
                }
				.culture-list {
				    display: grid;
				    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
				    gap: 20px;
				}
                .culture-item {
                    background-color: #f5f9f6;
                    padding: 20px;
                    border-radius: 6px;
                    border-left: 4px solid #3a6d4a;
                }
                
                .culture-item h3 {
                    color: #3a6d4a;
                    margin-bottom: 10px;
                }
                
                .team {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    justify-content: center;
                }
                
                .team-member {
                    width: 200px;
                    text-align: center;
                }
                
                .team-member img {
                    width: 150px;
                    height: 150px;
                    border-radius: 50%;
                    object-fit: cover;
                    margin-bottom: 10px;
                    border: 3px solid #3a6d4a;
                }
                @media (max-width: 480px) {
                    .honor-grid {
                        grid-template-columns: 1fr;
                    }
                }
                /* 响应式调整 */
             
        /* 响应式设计 */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
			.news-container {
			    grid-template-columns: repeat(2, 1fr);
			}
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .banner {
                height: 400px;
                text-align: center;
            }
            
            .banner-content {
                margin: 0 auto;
                text-align: center;
            }
            .news-container {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		/* 页脚优化 */
		    footer {
		        background: #2F6641 url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') fixed;
		        background-size: cover;
		        background-blend-mode: multiply;
		    }
		/* 研发实力页面特有样式 */
		.rd-banner {
		    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bannersolution.png') no-repeat center center;
		    background-size: cover;
		    color: #fff;
		    text-align: center;
			    height: 400px;
			    background-position: center;
			    display: flex;
			    align-items: center;
			    margin-top: 100px;
		}
		
		.rd-philosophy {
		    padding: 60px 0;
		    background-color: #f9f9f9;
		}
		
		.philosophy-content {
		    display: flex;
		    align-items: center;
		    gap: 40px;
		    margin-top: 40px;
		}
		
		.philosophy-img {
		    flex: 1;
		    border-radius: 8px;
		    overflow: hidden;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		}
		
		.philosophy-img img {
		    width: 100%;
		    height: auto;
		    transition: transform 0.5s ease;
		}
		
		.philosophy-img:hover img {
		    transform: scale(1.05);
		}
		
		.philosophy-text {
		    flex: 1;
		}
		
		.philosophy-text h3 {
		    color: #8e7037;
		    font-size: 24px;
		    margin-bottom: 20px;
		}
		
		.philosophy-text p {
		    color: #555;
		    line-height: 1.8;
		    margin-bottom: 15px;
		}
		
		.philosophy-features {
		    display: flex;
		    gap: 20px;
		    margin-top: 30px;
		}
		
		.feature-item {
		    text-align: center;
		}
		
		.feature-icon {
		    font-size: 30px;
		    margin-bottom: 10px;
		}
		
		.feature-item p {
		    font-size: 14px;
		    color: #666;
		}
		
		.rd-team {
		    padding: 60px 0;
		}
		
		.team-grid {
		    display: grid;
		    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		    gap: 30px;
		    margin-top: 40px;
		}
		
		.team-member {
		    background: #fff;
		    border-radius: 8px;
		    overflow: hidden;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		    transition: transform 0.3s ease;
		}
		
		.team-member:hover {
		    transform: translateY(-10px);
		}
		
		.member-img {
		    position: relative;
		    height: 250px;
		    overflow: hidden;
		}
		
		.member-img img {
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
		    transition: transform 0.5s ease;
		}
		
		.team-member:hover .member-img img {
		    transform: scale(1.1);
		}
		
		.member-overlay {
		    position: absolute;
		    bottom: 0;
		    left: 0;
		    width: 100%;
		    padding: 15px;
		    background: rgba(142, 112, 55, 0.8);
		    color: #fff;
		    transform: translateY(100%);
		    transition: transform 0.3s ease;
		}
		
		.team-member:hover .member-overlay {
		    transform: translateY(0);
		}
		
		.member-info {
		    padding: 20px;
		}
		
		.member-info h3 {
		    margin: 0;
		    color: #333;
		}
		
		.member-title {
		    color: #8e7037;
		    font-size: 14px;
		    margin: 5px 0;
		}
		
		.member-desc {
		    color: #666;
		    font-size: 14px;
		    line-height: 1.6;
		}
		
		.rd-facilities {
		    padding: 60px 0;
		    background-color: #f9f9f9;
		}
		
		.facilities-tabs {
		    display: flex;
		    justify-content: center;
		    gap: 15px;
		    margin: 30px 0;
		}
		
		.facilities-tabs .tab {
		    padding: 10px 25px;
		    background: #fff;
		    border-radius: 30px;
		    cursor: pointer;
		    transition: all 0.3s ease;
		    border: 1px solid #ddd;
		}
		
		.facilities-tabs .tab.active, 
		.facilities-tabs .tab:hover {
		    background-color: #8e7037;
		    color: #fff;
		    border-color: #8e7037;
		}
		
		.facilities-content {
		    display: none;
		}
		
		.facilities-content.active {
		    display: flex;
		    align-items: center;
		    gap: 40px;
		    background: #fff;
		    padding: 30px;
		    border-radius: 8px;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		}
		
		.facility-img {
		    flex: 1;
		    border-radius: 8px;
		    overflow: hidden;
		}
		
		.facility-img img {
		    width: 100%;
		    height: auto;
		}
		
		.facility-info {
		    flex: 1;
		}
		
		.facility-info h3 {
		    color: #8e7037;font-size: 24px;margin-bottom: 15px;
		    margin-top: 0;
		}
		
		.facility-info ul {
		    padding-left: 20px;
		    color: #555;
		}
		
		.facility-info ul li {
		    margin-bottom: 10px;
		}
		
		.rd-achievements {
		    padding: 60px 0;
		}
		
		.achievements-grid {
		    display: grid;
		    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		    gap: 30px;
		    margin: 40px 0;
		}
		
		.achievement-item {
		    background: #fff;
		    border-radius: 8px;
		    padding: 30px 20px;
		    text-align: center;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		    transition: transform 0.3s ease;
		}
		
		.achievement-item:hover {
		    transform: translateY(-5px);
		}
		
		.achievement-icon {
		    font-size: 40px;
		    margin-bottom: 15px;
		}
		
		.achievement-content h3 {
		    font-size: 36px;
		    color: #8e7037;
		    margin: 10px 0;
		}
		
		.achievement-content p {
		    color: #666;
		    margin: 0;
		}
		
		.achievements-details {
		    display: grid;
		    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		    gap: 30px;
		    margin-top: 40px;
		}
		
		.detail-item {
		    background: #fff;
		    padding: 25px;
		    border-radius: 8px;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		}
		
		.detail-item h3 {
		    color: #8e7037;
		    margin-top: 0;
		}
		
		.detail-item p {
		    color: #555;
		    line-height: 1.8;
		}
		
		.rd-process {
		    padding: 60px 0;
		    background-color: #f9f9f9;
		}
		
		.process-steps {
		    display: flex;
		    flex-direction: column;
		    gap: 20px;
		    margin-top: 40px;
		}
		
		.process-item {
		    display: flex;
		    align-items: center;
		    gap: 20px;
		    background: #fff;
		    padding: 25px;
		    border-radius: 8px;
		    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
		    transition: transform 0.3s ease;
		}
		
		.process-item:hover {
		    transform: translateX(10px);
		}
		
		.step-number {
		    width: 50px;
		    height: 50px;
		    background-color: #8e7037;
		    color: #fff;
		    border-radius: 50%;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    font-size: 24px;
		    font-weight: bold;
		    flex-shrink: 0;
		}
		
		.step-content h3 {
		    margin: 0 0 10px;
		    color: #333;
		}
		
		.step-content p {
		    margin: 0;
		    color: #666;
		}