@charset "utf-8";
@import url("/css/fonts/iconfont.css");
:root {
    --primary: #1a5d3a; /* Deep forest green */
    --secondary: #f8f9fa;
    --accent: #e63946; /* Coral red for CTA */
    --text: #2d3436;
    --light: #f1f3f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
}


li {
    list-style: none
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
}

a {
    color: #333
}

    a:hover {
        color: #fb2900
    }

img {
    max-width: 100%
}

body {
    width: 100%;
    font-size: 16px;
    color: #929292;
    margin: 0 auto;
    background-color: #fff
}


/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0;
    color: #2c3e50;
}

/* Header styles */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

    .logo span {
        color: #3498db;
    }

.nav {
    display: flex;
    align-items: center;
}

    .nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .nav li {
        margin-left: 30px;
    }

    .nav a {
        color: #2c3e50;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 5px 0;
        position: relative;
    }

        .nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #3498db;
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: #3498db;
        }

            .nav a:hover:after {
                width: 100%;
            }

/* Banner styles */
.banner {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-content a:hover {
    color: #fff
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.banner h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.banner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

    .btn.btn-primary, .btn-primary {
        background-color: #3498db;
        color: #ffffff;
    }

        .btn.btn-primary:hover, .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

.btn-secondary {
    background-color: #ffffff;
    color: #3498db;
    margin-left: 15px;
}

    .btn-secondary:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Features section */
.features {
    background-color: #ffffff;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

.feature-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Section common styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-title p {
        color: #777;
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: #3498db;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

/* Categories section */
.categories {
    background-color: #ffffff;
}

.category-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.category-image {
    height: 180px;
    overflow: hidden;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 25px;
}

.category-card h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

    .category-card li:before {
        content: '→';
        position: absolute;
        left: 0;
        color: #3498db;
    }

.category-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

    .category-card a:hover {
        color: #3498db;
    }

/* Products section */
.products {
    background-color: #f9f9f9;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .product-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.product-img {
    height: 220px;
    overflow: hidden;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    min-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

    .product-title a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
    }

        .product-title a:hover {
            color: #3498db;
        }

.product-info {
    font-size: 16px;
    color: #666;
    margin-top: auto;
    margin-bottom: 15px;
}

.btn-product {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .btn-product:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }


/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: var(--accent);
            display: block;
            margin: 15px auto 0;
        }

    .section-title p {
        max-width: 800px;
        margin: 20px auto 0;
        color: #666;
        font-size: 1.1rem;
    }

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}



/* CTA Section */
.cta {
    background: #2c3e50;
    color: white;
    text-align: center;
}

    .cta .btn:hover {
        color: #fff
    }

    .cta h2 {
        color: white;
        margin-bottom: 20px;
    }

    .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        opacity: 0.95;
    }

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

    .btn:hover {
        background: #d6303e;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    }



/* Footer */
footer, .footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-col a:hover {
        color: var(--accent);
    }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}


 .mobile-bottom{ display:none}

 
/* 响应式头部切换样式 */
/* 默认显示PC头部，隐藏手机头部 */
.header-mobile {
    display: none;
}

.header-pc {
    display: block;
}

/* 手机头部样式 */
.header-mobile {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.mobile-logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.mobile-logo span {
    color: #3498db;
}

.mobile-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 手机菜单样式 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 900;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #2c3e50;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px;
}

.mobile-menu ul {
    margin-top: 50px;
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #3498db;
}

/* 移动端遮罩层 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* JavaScript功能将通过外部脚本实现 */
/* 以下是响应式菜单的JavaScript伪代码提示：

// 移动菜单功能
const menuBtn = document.getElementById('mobile-menu-btn');
const closeBtn = document.getElementById('close-menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
const overlay = document.createElement('div');

// 添加遮罩层
overlay.className = 'mobile-menu-overlay';
document.body.appendChild(overlay);

// 打开菜单
menuBtn.addEventListener('click', () => {
    mobileMenu.classList.add('open');
    overlay.classList.add('active');
    document.body.style.overflow = 'hidden'; // 防止背景滚动
});

// 关闭菜单
function closeMenu() {
    mobileMenu.classList.remove('open');
    overlay.classList.remove('active');
    document.body.style.overflow = '';
}

closeBtn.addEventListener('click', closeMenu);
overlay.addEventListener('click', closeMenu);

// ESC键关闭菜单
document.addEventListener('keydown', (e) => {
    if (e.key === 'Escape' && mobileMenu.classList.contains('open')) {
        closeMenu();
    }
});
*/


/* Responsive styles */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 10px 0;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav li {
        margin-left: 15px;
        margin-right: 15px;
    }

    .banner {
        height: 500px;
    }

        .banner h1 {
            font-size: 32px;
        }

        .banner p {
            font-size: 18px;
        }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 400px;
    }

        .banner h1 {
            font-size: 28px;
        }

        .banner p {
            font-size: 16px;
        }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-left: 0;
    }

    .section {
        padding: 60px 0;
    }
    .header{padding:0;}
    .header-pc {
        display: none;
    }

    .header-mobile {
        display: block;
    }
 .mobile-bottom{background:#FCFCFCFB;display:flex;opacity:1;align-items:center;transition:all .3s ease-in-out;box-shadow:1px 2px 10px rgba(0,0,0,.1)}
.mobile-bottom-item{text-align:center;width:25%;/* height:.98rem; */font-size:var(--fontsize12);text-transform:capitalize;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}
.mobile-bottom-item i{display:block;font-size:20px;line-height:1}
.mobactfoot{margin-bottom:calc(.98rem + constant(safe-area-inset-bottom));margin-bottom:calc(.98rem + env(safe-area-inset-bottom))}
.mobbotact{position:fixed;left:0px;bottom:0px;width:100%;z-index: 70;padding-top: 10px;opacity:1;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}
.home-tit{margin-bottom:.5rem}
.footer  .container{display:none;}
.cta.footer1{display:none;}
footer, .footer{background:#fff;padding:0;}

 .container .filter-bar{display:none !important;}
.container .content{gap:0}
#wmkc,.wmkcdiv{display:none;}
}



#wmkc {
    position: fixed;
    right: 5px;
    top: 40%;
    transform: translateY(-50%);
    font-family: 'Lato', 'Open Sans', 'Roboto', 'Poppins', 'Oswald', sans-serif;
    z-index: 9999;
}
.wmkc-list {
    padding: 0px;
    border: 1px solid #eee;
    background-color: #FFF;
    max-width: 78px;
    border-radius: 4px;
    margin: 0;
}
.wmkc-whatsapp .wmkc-icon {
    background-position: -52px -50px;
}

.wmkc-icon {
    display: inline-block;
    background: url(/images/wmkc-ico23.png) no-repeat;
    width: 28px;
    height: 28px;
    transform: scale(.8);
}
.wmkc-whatsapp:hover .wmkc-icon {
    background-position: -52px -94px;
}

.wmkc-list > li:hover, .wmkc-list > li:hover + li {
    border-color: transparent;
}

.wmkc-list > li {
    width: 100%;
    border-top: 1px solid #eee;
    list-style: none;
    text-align: center;
    padding: 2px 0 4px;
    transition: all .2s ease-in-out;
}

    .wmkc-list > li:first-child {
        border-radius: 4px 4px 0 0;
        border: 0;
    }

.wmkc-email .wmkc-icon {
    background-position: -8px -6px;
    color:#fff
}
.wmkc-email:hover .wmkc-icon {
    background-position: -96px -6px;
}
.wmkc-whatsapp:hover {
    background-color: #25d366;
}
.wmkc-list li:hover a {
    color: #FFF;
}

.wmkc-list > li a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 0 2px;
    font-size: 12px;
}

.wmkc-email:hover {
    background-color: #f90;
    color: #FFF;
}
.wmkc-list i {
    vertical-align: middle;
}

.wmkc-wechat:hover {
    background-color: #07c160;
}
.wmkc-wechat .wmkc-icon {
    background-position: -144px -10px;
}
.wmkc-wechat:hover .wmkc-icon {
        background-position: -144px -62px;
    }