@charset "utf-8";
body{margin:0px; background:#ffffff; overflow-x:hidden;}
img{border:0px;}
.clear{clear:both;}
ul,li{margin:0px; padding:0px; list-style:none;}
.round{-moz-border-radius:5px; -webkit-border-radius:5px; border-radius: 5px;}
div,a,ul,li,input,textarea{transition-duration:0.5s;font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;}
div:hover,a:hover,ul:hover,li:hover,input:hover{transition-duration:0.5s;}
img{border:0px;}

.clear{clear:both;}

body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: #ffffff;
            color: #1a1e24;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }
        /* 确保所有文本都干净利落 */
        h1, h2, h3, h4, .navbar, .btn, .section-title, .advantage-card h3, .product-card h3 {
            font-weight: 600;
            letter-spacing: -0.01em;
        }
        .hero-content h2, .slide-content h2 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        p, li, .contact-detail {
            font-weight: 400;
            line-height: 1.5;
        }


        /* 主色调：绿白黑 */
        :root {
            --green: #2b7a4b;
            --green-dark: #1f5f3a;
            --green-light: #e6f3ea;
            --black: #1a1e24;
            --white: #ffffff;
            --gray-bg: #f8faf8;
            --gray-border: #e2e8e2;
            --text-muted: #4b5563;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2%;
            width: 96%;
        }

        @media (min-width: 768px) {
            .container { padding: 0 40px; }
        }

        /* ----- 导航栏 (绿色系) ----- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid var(--green-light);
            background: var(--white);
            flex-wrap: wrap;
            gap: 16px;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            background: var(--green);
            width: 48px;
            height: 48px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
        }
        .logo-text h1 {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--black);
            line-height: 1.2;
        }
        .logo-text img{height: 60px;display: table;}
        .logo-text span {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--green);
        }

        .nav-links {
            display: none;
            gap: 80px;
            font-weight: 500;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--black);
            font-size: 1.15rem;
            transition: 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .nav-links a:hover { color: var(--green); border-bottom-color: var(--green); }
        @media (min-width: 992px) { .nav-links { display: flex; } }

        .lang-switch {
            display: flex;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .lang-switch span:first-child { color: var(--green); font-weight: 700; }
        .mobile-menu-icon {
            display: block;
            font-size: 1.6rem;
            color: var(--green);
            cursor: pointer;
        }
        @media (min-width: 992px) { .mobile-menu-icon { display: none; } }

        /* 移动端菜单 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 60%;
            max-width: 340px;
            height: 100vh;
            background: white;
            z-index: 1000;
            padding: 80px 30px;
            transition: 0.3s;
            box-shadow: -5px 0 30px rgba(0,0,0,0.08);
            border-left: 2px solid var(--green-light);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--green);
        }
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .mobile-menu-links a {
            font-size: 1.2rem;
            font-weight: 500;
            text-decoration: none;
            color: var(--black);
            border-bottom: 1px solid var(--green-light);
            padding: 8px 0;
        }
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
            backdrop-filter: blur(2px);
        }
        .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        body.menu-open { overflow: hidden; }

        /* 按钮 */
        .btn-primary {
            background: var(--green);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(43,122,75,0.2);
        }
        .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
        .btn-outline-green {
            background: transparent;
            border: 1.5px solid var(--green);
            color: var(--green);
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
        }
        .btn-outline-green:hover { background: var(--green); color: white; }

        /* ========== Banner 滚动图片 ========== */
        .banner-carousel {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
            border-radius: 0 0 48px 48px;
            margin-top: 0;
            box-shadow: 0 12px 30px -10px rgba(0,0,0,0.15);
        }
        @media (min-width: 768px) { .banner-carousel { height: 560px; } }
        .carousel-slides { display: flex; width: 300%; height: 100%; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .slide {
            flex: 1;
            background-size: cover;
            background-position: center 35%;
            position: relative;
            display: flex;
            align-items: center;
        }
        .slide-1 { background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 70%), url('../Images/banner1.jpg'); }
        .slide-2 { background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 70%), url('../Images/banner3.jpg'); }
        .slide-3 { background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 70%), url('../Images/banner1.jpg'); }
        .slide-content { max-width: 580px; margin-left: 8%; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
        .slide-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
        @media (min-width: 768px) { .slide-content h2 { font-size: 3rem; } }
        .slide-content p { font-size: 1rem; margin-bottom: 24px; opacity: 0.9; }
        .carousel-controls { position: absolute; bottom: 20px; right: 50px; display: flex; gap: 12px; }
        .control-btn { background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); width: 44px; height: 44px; border-radius: 44px; display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; }
        .control-btn:hover { background: var(--green); }
        .carousel-dots { position: absolute; bottom: 28px; left: 50px; display: flex; gap: 10px; }
        .dot { width: 10px; height: 10px; border-radius: 10px; background: rgba(255,255,255,0.6); cursor: pointer; }
        .dot.active { background: var(--green); width: 28px; }

        /* 认证条 */
        .cert-bar {
            background: var(--gray-bg);
            padding: 24px 0;
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
            margin: 20px 0 40px;
        }
        .cert-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
        .cert-item { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--black); }
        .cert-item i { color: var(--green); font-size: 1.4rem; }

        /* 公司简介区域 */
        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
            margin: 60px 0;
        }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px;font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
        .about-text h2 span {
            color: var(--green);
        }
        .about-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
        .about-image { flex: 1; background: var(--green-light); border-radius: 32px; padding: 20px; text-align: center; display: flex; align-items: center; justify-content: center; }
        .about-image img {width: 100%; border-radius: 32px;}

        /* 公司优势区域 */
        .advantages-section {
            background: var(--gray-bg);
            border-radius: 48px;
            padding: 60px 0;
            margin: 50px 0;
            text-align: center;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-top: 40px;
        }
        @media (min-width: 768px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }
        .advantage-card {
            background: white;
            border-radius: 28px;
            padding: 32px 24px;
            border: 1px solid var(--gray-border);
            transition: 0.2s;
        }
        .advantage-card:hover { border-color: var(--green); transform: translateY(-4px); }
        .advantage-icon { width: 64px; height: 64px; background: var(--green-light); border-radius: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
        .advantage-icon i { font-size: 2rem; color: var(--green); }
        .advantage-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
        .advantage-card p { color: var(--text-muted); font-size: 0.9rem; }

        /* 产品展示 (图片+文字) */
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 16px; text-align: center;font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
        .section-sub { text-align: center; color: var(--text-muted); max-width: 700px; margin: 0 auto 48px; }
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 70px;
        }
        @media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
        .product-card {
            background: white;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid var(--gray-border);
            transition: 0.25s;
            text-align: center;
        }
        .product-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08); }
        .product-img {
            width: 100%;
            height: 200px;
            background: var(--green-light);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .product-img i { font-size: 4rem; color: var(--green); }
        .product-img i:linkd{ color: var(--green);}


        .product-img img{width: 100%;}
        .product-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
        .product-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
        .product-tag { display: inline-block; background: var(--green-light); color: var(--green); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

        /* 未来产品 */
        .future-products {
            background: var(--gray-bg);
            border-radius: 48px;
            padding: 60px 0;
            margin: 50px 0;
        }

        /* 合作伙伴 */
        .partners-section {
            text-align: center;
            margin: 60px 0;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
        }
        .partner-item {
            /*background: var(--gray-bg);*/
            width: 120px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            /*color: var(--green);*/
            /*border: 1px solid var(--gray-border);*/
        }

         .partner-item img{width: 100%;}

        /* 联系 + 新闻资讯 */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin: 60px 0;
        }
        @media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
        .contact-card, .news-card {
            background: var(--gray-bg);
            border-radius: 32px;
            padding: 36px;
        }
        .contact-card h3, .news-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--black); }
        .contact-detail { margin: 16px 0; display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
        .news-list { list-style: none; }
        .news-list li { padding: 14px 0; border-bottom: 1px solid var(--gray-border); display: flex; justify-content: space-between; }
        .news-list li a {
            text-decoration: none;
            color: var(--black);
            font-size: 0.95rem;
            transition: 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .news-list li a:hover { color: var(--green);}
        .news-list li a span{float: right;}

        /* footer */
        .footer {
            padding: 40px 0 50px;
            border-top: 1px solid var(--gray-border);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-links {
            display: none;
            gap: 32px;
            font-weight: 500;
        }
        .footer-links a {
            text-decoration: none;
            color: var(--black);
            font-size: 0.95rem;
            transition: 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }
        .footer-links a:hover { color: var(--green);}
        .footer-bottom { text-align: center; padding: 24px 0 32px; color: #8c9a8f; font-size: 0.8rem; border-top: 1px solid var(--gray-border); margin-top: 0px; }
        .footer .footer-left .brand img{height: 50px;}

        @media (max-width: 640px) {
            .section-title { font-size: 1.6rem; }
            .about-section { flex-direction: column; }
        }


/* ========== 强制覆盖原有移动端菜单图标样式，防止重复显示 ========== */
.mobile-menu-icon {
    display: none !important;
}

/* ========== 移动端菜单按钮样式（唯一） ========== */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--green);
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    transition: 0.2s;
}

.mobile-menu-toggle:hover {
    color: var(--green-dark);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        display: none !important;
    }
}

/* 确保移动端菜单按钮在导航栏中正确对齐 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo-area {
    flex-shrink: 0;
}

/* 移动端菜单动画优化 */
.mobile-menu {
    transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



.gd{flex-direction: row;
    justify-content: space-between;
    display: flex;}
.progd{position: sticky;top: 0px;width: 100%;}


.leftlist{width: 25%;float: left;margin-top: 50px;margin-bottom: 50px;}
.inright{width: 70%;float: right;margin-left: 5%;margin-top: 50px;margin-bottom: 50px;}


.leftlist.on{margin-top: -180px;position: fixed;z-index: 20;}
/*.leftlist.ons{position: relative;margin-top: 0px;}*/

.leftlist ul{}
.leftlist ul li{width: 100%;text-indent: 35px;background: #F2F2F2;}
.leftlist ul li a{line-height: 50px;display: block;color: #333333;text-decoration: none;}
.leftlist .btbf{    background: #000000;border-top-left-radius: 5px;border-top-right-radius: 5px;line-height: 30px;color: #FFFFFF;font-size: 20px;text-indent: 30px;padding: 20px 0px;margin-top: 0px;}
.leftlist .btbf span{display: block;color: #FFFFFF;font-size: 13px;}
.leftlist .btbf.spec{margin-top: 50px;}
.leftlist ul li:hover{background: #74a353;}
.leftlist ul li:hover a{color: #FFFFFF;font-size: 17px;}
.leftlist ul li.on{background: #74a353;}
.leftlist ul li.on a{color: #FFFFFF;font-size: 17px;}


@media (max-width: 768px) {
    .gd{display: block;}
.leftlist{width: 100%;float: none;}
.inright{width: 100%;float: none;margin-left: 0%;margin-top: 50px;margin-bottom: 50px;}



}

.intitle{height: 60px;line-height: 60px;font-size: 36px;color: #000000;border-bottom: 1px solid #CCCCCC;}

.bannerinner{height: 40vh;width: 100%;}



        /* Hero 区域 - 公司简介专用 */
        .about-hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            margin: 60px 0 80px;
        }
        .about-hero-content {
            flex: 1;
        }
        .about-hero-content .badge {
            display: inline-block;
            background: var(--green-light);
            color: var(--green);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 28px;
        }
        .about-hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            margin-top: 10px;
            color: var(--black);
            font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
        }
        .about-hero-content h1 span {
            color: var(--green);
            border-bottom: 3px solid var(--green-light);
        }
        .about-hero-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 90%;
        }
        .about-hero-image {
            flex: 1;
            background: var(--green-light);
            border-radius: 48px;
            overflow: hidden;
            /*min-height: 400px;*/
        }
        .about-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (max-width: 992px) {
            .about-hero { flex-direction: column; }
            .about-hero-content h1 { font-size: 2.5rem; }
            .about-hero-content p { max-width: 100%; }
        }


        /* 数据统计条 */
        .stats-bar {
            background: var(--black);
            color: white;
            padding: 30px 60px;
            margin: 0px 0;
            border-radius: 48px;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: center;
            gap: 40px;
        }
        .stat-item h4 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--green);
            margin-bottom: 8px;
            margin-top: 20px;
        }
        .stat-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            letter-spacing: 0.5px;
        }
        @media (max-width: 768px) {
            .stats-grid { justify-content: center; }
            .stat-item { min-width: 160px; }
        }



        /* 联系区域 CTA */
        .contact-cta {
            background: var(--black);
            border-radius: 48px;
            padding: 60px 48px;
            margin: 80px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }
        .contact-cta h2 {
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            max-width: 500px;
        }
        .contact-cta h2 i {
            color: var(--green);
            margin-right: 10px;
        }
        .btn-white {
            background: white;
            color: var(--black);
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
            display: inline-block;
        }
        .btn-white:hover {
            background: var(--green);
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .contact-cta { flex-direction: column; text-align: center; }
        }



/* ========== 一行多图自动滚动轮播样式 ========== */
.carousel-section {
    margin: 60px 0;
}

.image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scrollRightToLeft 30s linear infinite;
}

/* 从右往左无限滚动动画 */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 鼠标悬停时暂停滚动 */
.image-carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* 一行显示多张图片 - 响应式宽度 */
.carousel-slide {
    flex: 0 0 calc(100% / 1.2);  /* 手机：约1.2张可见 */
    width: 280px;
}

@media (min-width: 640px) {
    .carousel-slide {
        flex: 0 0 260px;  /* 平板：固定宽度，一行显示约2-3张 */
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 300px;  /* 桌面：固定宽度，一行显示约4张 */
    }
}

@media (min-width: 1280px) {
    .carousel-slide {
        flex: 0 0 320px;
    }
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.2);
}





/* ========== 联系我们页面样式 ========== */

/* Hero 区域 */
.contact-hero {
    background: var(--gray-bg);
    padding: 60px 0 50px;
    margin-bottom: 60px;
}
.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.contact-hero-content .badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}
.contact-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.02em;
    color: var(--black);
}
.contact-hero-content h1 span {
    color: var(--green);
}
.contact-hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-hero { padding: 40px 0 30px; }
    .contact-hero-content h1 { font-size: 2rem; }
}

/* 联系表单双栏布局 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin: 60px 0;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }
}

.contact-form-card, .contact-info-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--gray-border);
}
.contact-form-card h3, .contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    /*font-family: 'Playfair Display', serif;*/
    color: var(--black);
}
.contact-form-card h3 i, .contact-info-card h3 i {
    color: var(--green);
    margin-right: 10px;
}

/* 表单样式 */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (min-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--black);
}
.form-group input, .form-group textarea {
    width: 94%;
    padding: 14px 3%;
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    /*font-family: 'Inter', sans-serif;*/
    font-size: 0.9rem;
    transition: 0.2s;
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-light);
}
.form-group input.inp{width: 64%;float: left;}
.form-group .yzm{width: 24%;
    float: left;
    padding-left: 5%;
}
.btn-submit {
    background: var(--green);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}
.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* 联系方式卡片 */
.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
}
.info-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 1.2rem;
    color: var(--green);
}
.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 8px;
}
.info-text p, .info-text a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
}
.info-text a:hover {
    color: var(--green);
}

/* 社交媒体 */
.social-links h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gray-bg);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: 0.2s;
}
.social-icons a:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}

/* 欧洲仓库区域 */
.warehouse-section {
    background: var(--gray-bg);
    padding: 70px 0;
    margin: 60px 0;
    border-radius: 48px;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    /*font-family: 'Playfair Display', 'Cormorant Garamond', serif;*/
    letter-spacing: 0.02em;
    color: var(--black);
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}
.warehouse-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .warehouse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.warehouse-card {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: 0.2s;
}
.warehouse-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}
.warehouse-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 20px;
}
.warehouse-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.warehouse-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.warehouse-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* FAQ 区域 */
.faq-section {
    margin: 70px 0;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--black);
    transition: 0.2s;
}
.faq-question:hover {
    background: var(--gray-bg);
}
.faq-question i {
    color: var(--green);
    transition: 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

/* CTA 区域 */
.contact-cta {
    background: var(--black);
    border-radius: 48px;
    padding: 56px 48px;
    margin: 60px 0 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.contact-cta h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    max-width: 450px;
    /*font-family: 'Playfair Display', serif;*/
}
.contact-cta h2 i {
    color: var(--green);
    margin-right: 10px;
}
.btn-white {
    background: white;
    color: var(--black);
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}
.btn-white:hover {
    background: var(--green);
    color: white;
}

@media (max-width: 768px) {
    .contact-form-card, .contact-info-card { padding: 28px; }
    .warehouse-section { padding: 50px 0; }
    .contact-cta { flex-direction: column; text-align: center; padding: 40px 28px; }
    .contact-cta h2 { font-size: 1.4rem; }
}




/* 覆盖CSS中可能存在的重复菜单按钮样式 */
        .mobile-menu-icon {
            display: none !important;
        }
        
        /* 移动端菜单按钮样式 */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 28px;
            color: var(--green);
            background: none;
            border: none;
            padding: 8px;
            margin-left: auto;
        }
        
        @media (max-width: 991px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links {
                display: none !important;
            }
        }
        
        /* 确保移动端菜单层级最高 */
        .mobile-menu-overlay,
        .mobile-menu {
            z-index: 10000;
        }
        
        /* 导航栏移动端适配 */
        .navbar {
            position: relative;
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-area {
            flex-shrink: 0;
        }



/* ========== 轮播样式 ========== */
.carousel-section {
    margin: 60px 0;
    overflow: hidden;
}

.image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    animation: scrollRightToLeft 40s linear infinite;
    will-change: transform;
}

/* 鼠标悬停时暂停滚动 - 核心功能 */
.image-carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* 从右往左无限滚动动画 */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 一行显示多张图片 - 响应式宽度 */
.carousel-slide {
    flex: 0 0 auto;
    width: 280px;  /* 桌面端固定宽度 */
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.2);
}

/* ========== 移动端适配 ========== */
@media (max-width: 768px) {
    .carousel-section {
        margin: 40px 0;
    }
    
    .carousel-slide {
        width: 220px;
    }
    
    .carousel-slide img {
        height: 160px;
    }
    
    .carousel-track {
        gap: 12px;
        animation: scrollRightToLeft 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 180px;
    }
    
    .carousel-slide img {
        height: 140px;
    }
    
    .carousel-track {
        gap: 10px;
        animation: scrollRightToLeft 25s linear infinite;
    }
}

/* 平板端适配 */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
        width: 250px;
    }
    
    .carousel-slide img {
        height: 180px;
    }
}





/* ========== 产品展示页面样式 ========== */

/* Hero 区域 */
.products-hero {
    background: var(--gray-bg);
    padding: 60px 0 50px;
    margin-bottom: 50px;
}
.products-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.products-hero-content .badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.products-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    color: var(--black);
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}
.products-hero-content h1 span {
    color: var(--green);
}
.products-hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .products-hero { padding: 40px 0 30px; }
    .products-hero-content h1 { font-size: 2rem; }
}

/* 分类筛选按钮 */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--gray-border);
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text-muted);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

/* 产品网格 */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0 60px;
}
@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 产品卡片 */
.product-card {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--gray-bg);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.product-card:hover .product-image img {
    transform: scale(1.03);
}
.product-info {
    padding: 24px;
}
.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.product-sku {
    font-size: 0.75rem;
    color: var(--green);
    margin-bottom: 12px;
}
.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.product-features {
    /*display: flex;*/
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.product-features span {
    font-size: 0.7rem;
    color: var(--text-muted);
    /*display: flex;*/
    align-items: center;
    gap: 4px;
}
.product-features i {
    color: var(--green);
    font-size: 0.7rem;
}
.btn-view {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
    text-align: center;
}
.btn-view:hover {
    background: var(--green);
    color: white;
}

/* 轮播样式（与之前保持一致） */
.carousel-section {
    margin: 60px 0;
    overflow: hidden;
}
.image-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-container {
    width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 16px;
    width: fit-content;
    animation: scrollRightToLeft 40s linear infinite;
    will-change: transform;
}
.image-carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}
@keyframes scrollRightToLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.carousel-slide {
    flex: 0 0 auto;
    width: 280px;
}
.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .carousel-slide { width: 220px; }
    .carousel-slide img { height: 160px; }
    .carousel-track { gap: 12px; animation: scrollRightToLeft 30s linear infinite; }
}
@media (max-width: 480px) {
    .carousel-slide { width: 180px; }
    .carousel-slide img { height: 140px; }
}

/* CTA 区域 */
.contact-cta {
    background: var(--black);
    border-radius: 48px;
    padding: 56px 48px;
    margin: 60px 0 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.contact-cta h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    max-width: 450px;
}
.contact-cta h2 i {
    color: var(--green);
    margin-right: 10px;
}
.btn-white {
    background: white;
    color: var(--black);
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-white:hover {
    background: var(--green);
    color: white;
}
@media (max-width: 768px) {
    .contact-cta { flex-direction: column; text-align: center; padding: 40px 28px; }
    .contact-cta h2 { font-size: 1.4rem; }
}




/* ========== 产品详细页面样式 ========== */

/* Breadcrumb */
.product-detail-hero {
    background: var(--gray-bg);
    padding: 20px 0;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--green);
}
.breadcrumb span {
    color: var(--black);
}

/* 产品详情主网格 */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin: 60px 0;
}
@media (min-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* 产品图库 */
.product-gallery {
    /*position: sticky;*/
    top: 100px;
}
.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--gray-bg);
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 20px;
}
.main-image img {
    width: 98%;
    height: 98%;
    object-fit: cover;
    border-radius: 30px;
}
.thumbnail-list {
    display: flex;
    gap: 12px;
}
.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}
.thumbnail.active {
    border-color: var(--green);
}
.thumbnail:hover {
    border-color: var(--green-light);
}

/* 产品右侧信息 */
.product-info-detail {
    padding: 0;
}
.product-info-detail .product-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
}
.product-info-detail h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-sku {
    color: var(--green);
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.product-rating {
    margin-bottom: 20px;
}
.product-rating i {
    color: #f5a623;
    margin-right: 2px;
}
.product-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 8px;
}
.product-price {
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}
.price-label {
    font-weight: 600;
}
.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 12px;
}
.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}
.product-short-desc {
    margin-bottom: 24px;
    color: var(--text-muted);
}
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.meta-item i {
    color: var(--green);
}
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--green);
    color: var(--green);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--green);
    color: white;
}
.contact-info {
    background: var(--gray-bg);
    padding: 16px 20px;
    border-radius: 20px;
    text-align: center;
}
.contact-info a {
    color: var(--green);
    text-decoration: none;
}

/* 产品描述区域 */
.product-description-section {
    background: var(--gray-bg);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 48px;
}
.description-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 32px;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.2s;
}
.tab-btn.active {
    color: var(--green);
    border-bottom: 2px solid var(--green);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.tab-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-border);
}
.specs-table td:first-child {
    font-weight: 600;
    width: 35%;
}
.advantages-list, .compatibility-list {
    list-style: none;
}
.advantages-list li, .compatibility-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    gap: 12px;
}
.advantages-list i, .compatibility-list i {
    color: var(--green);
}

/* 相关产品 */
.related-products {
    margin: 60px 0;
}
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}
@media (min-width: 640px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.related-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    transition: 0.2s;
    text-align: center;
    padding: 20px;
}
.related-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}
.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}
.related-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}
.related-card a {
    color: var(--green);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}