/* 全局样式重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 响应式断点 */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}

/* 头部导航样式 */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* 新增：为移动端导航定位做准备 */
}

.logo img {
    height: 50px;
}

/* 主导航样式 - 桌面端 */
.nav > ul {
    display: flex;
    gap: 35px;
}

.nav > ul > li {
    position: relative;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    transition: color 0.3s;
}

.nav > ul > li > a:hover, 
.nav > ul > li > a.active,
.nav .submenu li a:hover {
    color: #e63946;
}

/* 桌面端子菜单样式 */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    z-index: 99;
}

.nav > ul > li:hover .submenu {
    display: block;
}

.submenu li {
    padding: 0 15px;
}

.submenu li a {
    padding: 8px 0;
    font-size: 14px;
    display: block;
}

/* 移动端导航按钮 */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1000; /* 确保按钮在最上层 */
}

/* 移动端导航核心样式（768px以下） */
@media (max-width: 768px) {
    /* 隐藏默认导航，显示汉堡按钮 */
    .nav-toggle {
        display: block;
    }

    /* 移动端导航列表样式 */
    .nav > ul {
        position: fixed; /* 固定定位，覆盖全屏 */
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(100%); /* 初始隐藏在右侧 */
        transition: transform 0.3s ease;
        z-index: 999;
    }

    /* 导航展开状态 */
    .nav > ul.show {
        transform: translateX(0);
    }

    /* 移动端子菜单样式 */
    .nav > ul > li {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .submenu {
        position: static; /* 取消绝对定位，改为流式布局 */
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none;
        margin-top: 10px;
        border-left: 2px solid #e63946;
    }

    /* 移动端子菜单展开状态 */
    .submenu.show {
        display: block;
    }

    /* 子菜单箭头样式 */
    .fa-chevron-down {
        font-size: 12px;
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .fa-chevron-down.rotate {
        transform: rotate(180deg);
    }

    /* 移动端轮播图适配 */
    .banner-carousel {
        height: 300px !important;
    }

    .carousel-slide .banner-content {
        padding: 20px !important;
        max-width: 100% !important;
    }

    .carousel-slide h1 {
        font-size: 22px !important;
    }

    .carousel-slide p {
        font-size: 14px !important;
    }

    .carousel-btn {
        width: 35px !important;
        height: 35px !important;
    }

    .indicator {
        width: 8px !important;
        height: 8px !important;
    }
}

/* 面包屑导航样式 */
.breadcrumb {
    padding: 15px 0;
    background: #fff;
    font-size: 14px;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #e63946;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #e63946;
    font-weight: 500;
}

/* 首页轮播图样式 */
.banner-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}
.carousel-slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.carousel-slide a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    background: rgba(0,0,0,0.6);
    padding: 40px 50px;
    border-radius: 8px;
    max-width: 600px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.carousel-slide p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.carousel-slide .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.carousel-slide .btn:hover {
    background: #d62839;
}

/* 轮播图导航按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* 轮播图指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #e63946;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

/* 首页公司简介模块 */
.home-about {
    padding: 100px 0 50px 0;
    background: #f9f9f9;
}

.about-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-img {
    flex: 1;
    max-height: 500px;
}

.about-img img {
    width: 100%;
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
}

.about-img video {
    width: 100%;
    max-height: 500px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.about-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content .btn {
    padding: 10px 25px;
    display: inline-block;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
    margin-top: 16px;
}

.about-content .btn:hover {
    background: #e63946;
}

.about-content ul li,.about-content ul li .num{
    display: flex;
    justify-content: left;
    align-items: center;
}
.about-content ul li .num{
    align-items: baseline;
    margin-right: 10px;
    color: #e63946;
}
.about-content ul li .num .counter{
    font-size: 48px;
    font-weight: bold;
}
.about-content ul li .num .unit{
    font-size: 14px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .home-about{
        padding: 60px 0;
    }
    .about-img video{
        max-height:300px;   
    }
}

@media (max-width: 500px) {
    .about-img video{
        max-height:260px;   
    }
}

/* 首页核心产品模块 */
.home-products {
    padding: 60px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 10px;
}

.section-title .line {
    width: 70px;
    height: 3px;
    background: #e63946;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.product-img .img-main {
    opacity: 1;
}

.product-img .img-hover {
    opacity: 0;
}

.product-card:hover .product-img .img-main {
    opacity: 0;
}

.product-card:hover .product-img .img-hover {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

/* 核心产品规格参数样式 */
.home-products .product-info > div {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: left;
}

.home-products .product-info > div span {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px dashed #e0e0e0;
}

.home-products .product-info > div span:last-child {
    border-bottom: none;
}

.home-products .product-info > div span::before {
    content: '• ';
    color: #e63946;
    margin-right: 4px;
}

.home-products .product-info p {
    line-height: 1.7;
    min-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.product-info .btn,
.home-series-products .title a {
    display: inline-block;
    padding: 8px 18px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.product-info .btn:hover,
.home-series-products .title a:hover {
    background: #e63946;
}

/* 首页最新产品模块 */
.home-new-products{
    padding: 60px 0;
    background: #f9f9f9;
}
.home-series-products{
    padding: 60px 0;
    background: #ffffff;
}
.products-two{
    padding: 60px 0;
    background: #f9f9f9;
}
.home-series-products .title{
    padding: 50px 0 0 70px;
}
.home-series-products .title h3{
    font-size: 28px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    color: #222;
}
.home-series-products .title h3::before{
    content: "";
    position: absolute;
    width: 46px;
    height: 1px;
    background: #e63946;
    top: 14px;
    left: -70px;
}
.home-series-products .title p{
    font-size: 14px;
    margin-bottom: 36px;
}
.home-series-products .img img{
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}
.home-series-products .img{
    position: relative;
}
.home-series-products .img .product-mask{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    opacity: 0;
    transition: all 0.5s;
}
.home-series-products .img .product-mask p{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -13px;
}
.home-series-products .img .product-mask p span{
    display: inline-block;
    font-family: Tahoma;
    font-size: 12px;
    color: #fff;
    line-height: 24px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}
.home-series-products .img:hover .product-mask{
    opacity: 1;
}

/* 公司简介页样式 */
.about-page {
    padding: 40px 0;
    background: #fff;
}

.about-content-full {
    line-height: 1.8;
    color: #555;
}

.about-content-full h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #222;
}

.about-content-full p {
    margin-bottom: 20px;
}

.about-content-full ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
}

.about-content-full ul li {
    margin-bottom: 10px;
}

.about-team {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.team-item img {
    width: 85%;
    /* height: 120px; */
    object-fit: cover;
    margin-bottom: 15px;
}

/* 联系我们页样式 */
.contact-page {
    padding: 40px 0;
    background: #fff;
}

.contact-wrap {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 24px;
    color: #e63946;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #666;
    line-height: 1.7;
}

.contact-form {
    flex: 1.5;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-btn {
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-btn:hover {
    background: #d62839;
}

/* 页低关于我们 */
.home-footer-about{
    padding: 50px 0;
    background: #fff;
}

/* 电脑端：显示全部5个 */
.about-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-carousel-container {
    flex: 1;
    overflow: visible;
}

.about-carousel-track {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
}

.about-carousel-track li {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.about-carousel-track li a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.about-carousel-track li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: all 0.5s;
}

.about-carousel-track li .icon img {
    max-width: 100%;
    height: 60px;
    width: auto;
    object-fit: contain;
}

.about-carousel-track li .title {
    font-size: 14px;
    transition: all 0.5s;
}

.about-carousel-track li a:hover .icon {
    transform: translateY(-5px);
}

.about-carousel-track li a:hover .title {
    color: #e63946;
}

/* 电脑端隐藏导航按钮和指示器 */
.about-carousel-btn,
.about-carousel-indicators {
    display: none;
}

/* 移动端：可左右拖拽 */
@media (max-width: 768px) {
    .about-carousel-wrapper {
        position: relative;
    }

    .about-carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .about-carousel-container::-webkit-scrollbar {
        display: none;
    }

    .about-carousel-track {
        display: flex;
        gap: 15px;
        padding: 10px 0;
        overflow: visible;
    }

    .about-carousel-track li {
        flex: 0 0 auto;
        width: 120px;
    }

    /* 移动端显示导航按钮 */
    .about-carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #e63946;
        border: none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s;
        flex-shrink: 0;
    }

    .about-carousel-btn:hover {
        background: #e63946;
    }

    .about-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .about-carousel-indicators span {
        width: 8px;
        height: 8px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .about-carousel-indicators span.active {
        background: #e63946;
    }
}


/* 页脚样式 */
footer {
    background: #1a1a2e;
    color: #e0e0e0;
    position: relative;
}

/* 顶部波浪分隔 */
.footer-wave {
    position: relative;
    top: -2px;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 0 30px;
}

/* 公司介绍列 */
.footer-about .footer-logo {
    margin-bottom: 15px;
}

.footer-about .footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #e63946;
    color: #fff;
    transform: translateY(-3px);
}

/* 通用列 */
.footer-col h4 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #e63946;
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a i {
    font-size: 10px;
    color: #888;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #e63946;
    padding-left: 4px;
}

.footer-col ul li a:hover i {
    color: #e63946;
}

/* 联系我们列 */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-contact-list li i {
    color: #e63946;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* 二维码行 */
.footer-qr-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-img {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-item span {
    display: block;
    font-size: 13px;
    color: #b0b0b0;
}

/* 版权信息 */
.copyright {
    background: #111122;
    padding: 18px 0;
    text-align: center;
}

.copyright p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* 页脚响应式 */
@media (max-width: 992px) {
    .footer-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-wave svg {
        height: 30px;
    }

    .footer-about .footer-logo img {
        height: 38px;
    }
}

/* 产品列表页样式 */
.products-page {
    padding: 40px 0;
}

.products-filter {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.products-filter h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    padding: 6px 15px;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag.active, .filter-tag:hover {
    background: #e63946;
    color: #fff;
}

/* 产品详情页样式 */
.product-detail-page {
    padding: 40px 0;
}

.detail-wrap {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-img {
    flex: 1.1;
    min-width: 0;
}

.detail-img img {
    width: 100%;
    border-radius: 6px;
}

.detail-info {
    flex: 1;
}

.detail-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.detail-price {
    font-size: 24px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-desc h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #333;
}

.detail-desc p {
    color: #666;
    line-height: 1.8;
}

.detail-specs {
    margin: 20px 0;
}

.detail-specs table {
    width: 100%;
    border-collapse: collapse;
}

.detail-specs td {
    padding: 10px;
    border: 1px solid #eee;
}

.detail-specs td:first-child {
    background: #f9f9f9;
    font-weight: 500;
    width: 45%;
}

.detail-action {
    margin-top: 30px;
}

.detail-action .btn {
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.detail-action .btn:hover {
    background: #d62839;
}

/* 产品详情优化样式 */
.detail-img-main {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 400px;
}

.detail-img-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-img-thumbs {
    display: flex;
    gap: 10px;
}

.detail-img-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.detail-img-thumbs img:hover,
.detail-img-thumbs img.active {
    border-color: #2d8a3e;
}

.detail-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 14px;
    font-size: 13px;
    border-radius: 20px;
    background: #e8f5e9;
    color: #2d8a3e;
    font-weight: 500;
}

.meta-tag:last-child {
    background: #e3f2fd;
    color: #1565c0;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-section h3 {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.detail-section h3 i {
    color: #2d8a3e;
    font-size: 16px;
}

.detail-section p {
    color: #666;
    line-height: 1.9;
    font-size: 14px;
}

.detail-bullets {
    list-style: none;
    padding: 0;
}

.detail-bullets li {
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    position: relative;
}

.detail-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: #2d8a3e;
    border-radius: 50%;
}

.detail-btn-primary {
    background: #e63946 !important;
}

.detail-btn-primary:hover {
    background: #d62839 !important;
}

.detail-btn-secondary {
    background: #555 !important;
}

.detail-btn-secondary:hover {
    background: #333 !important;
}

/* 产品详情移动端适配 */
@media (max-width: 768px) {
    .detail-img-main {
        height: 280px;
        padding: 20px;
    }
    .detail-info h1 { font-size: 22px; }
}

/* 产品分类筛选 - 隐藏未选中区域 */
.home-products.hidden {
    display: none;
}

/* 核心产品拖拽样式 */
.product-drag-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    scroll-behavior: smooth;
}

.product-drag-wrapper::-webkit-scrollbar {
    display: none;
}

.product-drag-wrapper.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.product-grid.drag-enabled {
    display: flex;
    gap: 25px;
    padding: 10px 0;
}

.product-grid.drag-enabled .product-card {
    flex: 0 0 calc((100% - 50px) / 3);
    min-width: 0;
}

.drag-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.drag-btn {
    width: 44px;
    height: 44px;
    background: #e63946;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drag-btn:hover {
    background: #d62839;
    transform: scale(1.1);
}

.drag-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* 核心产品移动端适配 */
@media (max-width: 768px) {
    .home-products .product-info > div span {
        font-size: 12px;
    }

    .product-grid.drag-enabled .product-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

/* 手机端：显示1张 */
@media (max-width: 480px) {
    .product-grid.drag-enabled .product-card {
        flex: 0 0 100%;
    }
}

/* 768px以下产品详情布局适配 */
@media (max-width: 768px) {
    .about-wrap {
        flex-direction: column;
    }
    .about-img, .about-content {
        flex: none;
        width: 100%;
    }

    .home-series-products .product-grid{
        display: flex;
        flex-wrap: wrap;
    }

    .contact-wrap {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        flex: none;
        width: 100%;
    }

    .detail-wrap {
        flex-direction: column;
        padding: 20px;
    }
    .detail-img, .detail-info {
        flex: none;
        width: 100%;
    }
    .detail-info h1 {
        font-size: 24px;
    }

    .footer-wrap .footer-center h4::after{
        text-align: left;
    }
    .footer-center h4::after{
        left: 0;
        transform: translateX(0);
    }
    .footer-right{
        text-align: left;
    }
    .footer-right h4::before {
        left: 0;
    }
}

/* ==================== 招募代理页面样式 ==================== */
/* 页面横幅 */
.page-banner {
    background: linear-gradient(135deg, #1a5e2a 0%, #2d8a3e 50%, #3a9e4a 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
}

/* 加盟优势 */
.recruit-advantages {
    padding: 60px 0;
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.advantage-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.card-primary .advantage-icon { background: #e8f5e9; color: #2d8a3e; }
.card-primary { border: 1px solid #c8e6c9; }
.card-accent .advantage-icon { background: #fff3e0; color: #e65100; }
.card-accent { border: 1px solid #ffe0b2; }
.card-light .advantage-icon { background: #e3f2fd; color: #1565c0; }
.card-light { border: 1px solid #bbdefb; }

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 加盟流程 */
.recruit-process {
    padding: 60px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding: 30px 0;
}

/* 连接线 */
.process-steps::before {
    content: '';
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(to right, #2d8a3e, #a5d6a7, #2d8a3e);
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background: #2d8a3e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #222;
}

.step-content p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* 加盟CTA */
.recruit-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a5e2a, #2d8a3e);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-item i {
    font-size: 22px;
    color: #81c784;
}

.cta-content .btn {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #2d8a3e;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-content .btn:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 招募代理 - 移动端适配 */
@media (max-width: 768px) {
    .page-banner { padding: 40px 0; }
    .page-banner h1 { font-size: 26px; }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .advantage-card { padding: 25px 15px; }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .process-steps::before { display: none; }
    .step-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    .step-item:last-child { border-bottom: none; }
    .step-num {
        margin: 0;
        flex-shrink: 0;
    }

    .cta-content h2 { font-size: 24px; }
    .cta-info { flex-direction: column; gap: 15px; }
}

/* ==================== 招聘信息页面样式 ==================== */
/* 招聘筛选 */
.job-filter-section {
    padding: 35px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.job-filter-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.job-filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 160px;
}

.job-filter-item label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.job-filter-item select,
.job-filter-item input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.3s;
    outline: none;
}

.job-filter-item select:focus,
.job-filter-item input:focus {
    border-color: #2d8a3e;
    background: #fff;
}

.job-search-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    flex: 1.5;
    min-width: 200px;
}

.job-search-item input {
    border-radius: 4px 0 0 4px;
    border-right: none;
    flex: 1;
}

.job-search-item button {
    padding: 10px 18px;
    background: #2d8a3e;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    line-height: 1;
}

.job-search-item button:hover {
    background: #1a5e2a;
}

/* 招聘列表 */
.job-list-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.job-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* 展开状态 */
.job-item.active .job-header {
    background: #e63946;
    color: #fff;
}

.job-item.active .job-company,
.job-item.active .job-date {
    color: rgba(255,255,255,0.85);
}

.job-item.active .job-toggle {
    color: #fff;
}

.job-item.active .job-toggle i {
    transform: rotate(180deg);
}

/* 职位头部 */
.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.job-header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.job-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-title-wrap h3 {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
}

.job-count {
    display: inline-block;
    padding: 2px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: #e63946;
    color: #fff;
    font-weight: 500;
}

.job-item.active .job-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta i {
    font-size: 13px;
}

.job-toggle {
    font-size: 18px;
    color: #999;
    transition: color 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.job-toggle i {
    transition: transform 0.3s ease;
}

/* 职位详情体（默认隐藏） */
.job-body {
    display: none;
    padding: 25px 30px;
    border-top: 1px solid #eee;
}

.job-item.active .job-body {
    display: block;
}

.job-detail-section {
    margin-bottom: 20px;
}

.job-detail-section:last-of-type {
    margin-bottom: 25px;
}

.job-detail-section h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-detail-section ul {
    list-style: none;
    padding: 0;
}

.job-detail-section ul li {
    padding: 6px 0 6px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    position: relative;
}

.job-detail-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #e63946;
    border-radius: 50%;
}

.job-apply-btn {
    display: inline-block;
    padding: 10px 32px;
    background: #e63946;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.job-apply-btn:hover {
    background: #d62839;
}

/* 招聘信息 - 移动端适配 */
@media (max-width: 768px) {
    .job-filter-wrap {
        flex-direction: column;
        gap: 12px;
    }

    .job-filter-item {
        min-width: 100%;
    }

    .job-search-item {
        min-width: 100%;
    }

    .job-header {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .job-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .job-title-wrap h3 {
        font-size: 16px;
    }

    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .job-body {
        padding: 18px 16px;
    }

    .job-detail-section h4 {
        font-size: 14px;
    }
}

.photo-collection h3{
    font-size: 16px;
    text-align: center;
}

/* ==================== 企业文化卡片样式 ==================== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.culture-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 35px 25px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d8a3e, #66bb6a);
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    border-color: #c8e6c9;
}

.culture-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #2d8a3e;
    transition: all 0.3s;
}

.culture-card:hover .culture-icon {
    background: #2d8a3e;
    color: #fff;
    transform: scale(1.1);
}

.culture-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
}

.culture-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 企业文化 - 移动端适配 */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .culture-card {
        padding: 25px 18px 22px;
    }
}

/* ==================== 公司简介优化样式 ==================== */
/* 公司概况介绍 */
.about-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

/* 数据亮点 */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.stat-item {
    background: linear-gradient(135deg, #f0f9f0, #e8f5e9);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #c8e6c9;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45,138,62,0.15);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #2d8a3e;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-unit {
    font-size: 16px;
    font-weight: 400;
    color: #66bb6a;
    margin-left: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 分节内容 */
.about-section {
    position: relative;
    padding: 25px 30px 25px 80px;
    margin-bottom: 25px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #2d8a3e;
    transition: all 0.3s;
}

.about-section:hover {
    background: #f0f9f0;
}

.about-section-icon {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d8a3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-section h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

/* 恒农标语 */
.about-tagline {
    text-align: center;
    padding: 40px 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tagline-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2d8a3e, transparent);
}

.about-tagline h3 {
    font-size: 28px;
    color: #2d8a3e;
    font-weight: 700;
    letter-spacing: 6px;
}

.tagline-text {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

/* 资质证书区域 */
.about-certs {
    margin-top: 10px;
}

.about-certs h3 {
    text-align: center;
    font-size: 22px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-certs .about-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-certs .team-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s;
}

.about-certs .team-item:hover {
    border-color: #c8e6c9;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.about-certs .team-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 12px;
}

.about-certs .team-item h4 {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* 公司简介 - 移动端适配 */
@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro p { font-size: 14px; }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-item { padding: 20px 12px; }
    .stat-num { font-size: 26px; }

    .about-section {
        padding: 20px 18px 20px 65px;
    }
    .about-section-icon {
        left: 15px;
        top: 18px;
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    .about-section h3 { font-size: 17px; }

    .about-tagline h3 { font-size: 22px; letter-spacing: 4px; }
    .tagline-text { font-size: 15px; }

    .about-certs .about-team {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== 企业资质页面样式 ==================== */
.qualification-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.qualification-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.qual-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.qual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    border-color: #c8e6c9;
}

.qual-ribbon {
    position: absolute;
    top: 14px;
    right: -28px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 32px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.qual-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qual-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    position: absolute;
}

.qual-img-wrap .img-main {
    opacity: 1;
}

.qual-img-wrap .img-hover {
    opacity: 0;
}

.qual-card:hover .qual-img-wrap .img-main {
    opacity: 0;
}

.qual-card:hover .qual-img-wrap .img-hover {
    opacity: 1;
}

.qual-card:hover .qual-img-wrap img {
    transform: scale(1.05);
}

.qual-info {
    padding: 18px 20px 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qual-info h3 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.qual-badge {
    display: inline-block;
    padding: 2px 14px;
    font-size: 12px;
    color: #2d8a3e;
    background: #e8f5e9;
    border-radius: 20px;
    font-weight: 500;
}

/* 企业资质 - 移动端适配 */
@media (max-width: 992px) {
    .qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .qualification-grid {
        grid-template-columns: 1fr;
    }
    .qual-img-wrap {
        height: 180px;
    }
}

/* ==================== 生产工艺页面样式 ==================== */
/* 工艺简介 */
.process-intro {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f0f9f0, #e8f5e9);
    border-radius: 10px;
    margin-bottom: 45px;
    border-left: 4px solid #2d8a3e;
}

.process-intro-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2d8a3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 2px;
}

.process-intro p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.process-intro strong {
    color: #2d8a3e;
    font-weight: 700;
}

/* 流程步骤 */
.process-flow {
    position: relative;
    padding-left: 40px;
}

/* 中间连接线 */
.process-flow::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2d8a3e, #a5d6a7, #2d8a3e, #a5d6a7, #2d8a3e);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin-bottom: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-connector {
    display: none;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #2d8a3e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 0 4px #e8f5e9;
}

.step-body {
    display: flex;
    gap: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.step-body:hover {
    border-color: #c8e6c9;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.step-image {
    flex-shrink: 0;
    width: 180px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.step-body:hover .step-image img {
    transform: scale(1.06);
}

.step-images-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.step-image.mini {
    width: 80px;
    height: 80px;
    margin-top: 20px;
}

.step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-info h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 生产工艺 - 移动端适配 */
@media (max-width: 768px) {
    .process-intro {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .step-body {
        flex-direction: column;
        gap: 15px;
    }

    .step-image {
        width: 100%;
        height: 180px;
    }

    .step-images-group {
        width: 100%;
        justify-content: center;
    }

    .step-image.mini {
        width: 90px;
        height: 70px;
        margin-top: 0;
    }

    .process-flow {
        padding-left: 32px;
    }

    .step-number {
        left: -32px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 12px;
    }
}

/* ==================== 农化服务页面样式 ==================== */
.agro-service-page {
    padding: 50px 0 60px;
    background: #fff;
}

/* 内容区块 */
.agro-block {
    margin-bottom: 45px;
}

.agro-block:last-child {
    margin-bottom: 0;
}

.agro-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.agro-block-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #2d8a3e;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
}

.agro-block-header h2 {
    font-size: 22px;
    color: #222;
    font-weight: 600;
}

.agro-block-body {
    padding-left: 52px;
}

.agro-block-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

/* 服务内容卡片网格 */
.agro-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 52px;
}

.agro-service-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.agro-service-card:hover {
    border-color: #c8e6c9;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.agro-service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2d8a3e;
}

.agro-service-info {
    flex: 1;
}

.agro-service-info h3 {
    font-size: 17px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 600;
}

.agro-service-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 服务承诺 */
.agro-commit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-left: 52px;
}

.agro-commit-card {
    text-align: center;
    padding: 35px 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.agro-commit-card:hover {
    border-color: #c8e6c9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.agro-commit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #2d8a3e;
    transition: all 0.3s;
}

.agro-commit-card:hover .agro-commit-icon {
    background: #2d8a3e;
    color: #fff;
    transform: scale(1.1);
}

.agro-commit-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.agro-commit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 农化服务 - 移动端适配 */
@media (max-width: 992px) {
    .agro-services-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
    .agro-commit-grid {
        padding-left: 0;
    }
    .agro-block-body {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .agro-service-page {
        padding: 30px 0 40px;
    }

    .agro-block {
        margin-bottom: 30px;
    }

    .agro-block-header h2 {
        font-size: 19px;
    }

    .agro-block-num {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 13px;
    }

    .agro-commit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .agro-service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
}

/* ==================== 客户案例页面样式 ==================== */
.case-page {
    padding: 50px 0 60px;
    background: #f8f9fa;
}

.case-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.case-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    border-color: #c8e6c9;
}

.case-img {
    height: 220px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-img img {
    transform: scale(1.08);
}

.case-info {
    padding: 18px 20px 20px;
    text-align: center;
}

.case-info h3 {
    font-size: 17px;
    color: #222;
    margin-bottom: 6px;
    font-weight: 600;
}

.case-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* 客户案例 - 移动端适配 */
@media (max-width: 992px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    .case-img {
        height: 200px;
    }
}

/* ==================== 联系方式页面样式 ==================== */
.contact-page-content {
    padding: 50px 0;
    background: #fff;
}

/* 4个联系方式卡片 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 22px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card-item:hover {
    border-color: #c8e6c9;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2d8a3e;
}

.contact-card-info h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-card-info p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

/* 地图 */
.contact-map-section {
    margin-top: 10px;
}

.contact-map-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 400px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
}

.contact-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-map-overlay > i {
    font-size: 24px;
    color: #66bb6a;
    flex-shrink: 0;
}

.contact-map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.contact-map-overlay span {
    font-size: 13px;
    opacity: 0.85;
    margin-left: auto;
}

.contact-map-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(230,57,70,0.9);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 1;
}

.contact-map-btn:hover {
    background: #d62839;
}

/* 联系方式 - 移动端适配 */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card-item {
        padding: 18px 16px;
    }

    .contact-map-wrap {
        height: 300px;
    }

    .contact-map-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 14px 16px;
    }
}