/* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #F3F4F6;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .fl { float: left; }
        .fr { float: right; }
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        /* 顶部悬浮栏 */
        .top-bar {
            background-color: var(--gccolor);
            color: white;
            font-size: 14px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1100;
        }

        .top-container {
            max-width: 1650px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }

        .top-links {
            display: flex;
        }

        .top-links a {
            color: white;
            text-decoration: none;
            padding: 0 15px;
            display: flex;
            align-items: center;
            transition: opacity 0.3s;
        }

        .top-links a:hover {
            opacity: 0.8;
        }

        .top-links i {
            margin-right: 5px;
            font-size: 14px;
        }
        /* 响应式导航栏 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 38px;
            z-index: 1000;
            margin-top:38px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo{display: flex;}
        .logo img {
            height: 50px;
            padding-right:10px;
        }

        .search-box {
            display: flex;
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }

        .search-box input {
            flex: 1;
            height: 40px;
            border: 2px solid var(--gccolor);
            padding: 0 15px;
            outline: none;
        }

        .search-box button {
            background-color: var(--gccolor);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-box button:hover {
            background-color: var(--gccolor);
        }

        .contact-info {
            display: flex;
            align-items: center;
            color: #444;
        }

        .contact-info i {
            color: var(--gccolor);
            font-size: 24px;
            margin-right: 10px;
        }

        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* 主导航 */
        .main-nav {
            background-color: #fff;
            margin-top: 15px;
            margin-bottom:15px;
        }

        .nav-list {
            display: flex;
            justify-content: space-around;
        }

        .nav-list li {
            flex: 1;
            text-align: center;
        }

        .nav-list a {
            display: block;
            padding: 20px 0;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.6);
            transition: all 0.3s;
        }

        .nav-list a.active, .nav-list a:hover {
            color: rgba(0, 0, 0, 0.87);
            font-weight: 600;
            transform: scale(1.05);
        }

        /* 内容区域 */
        .content-area {
            background-color: white;
            padding: 30px;
            margin-bottom: 20px;
            min-height: 500px;
        }

        .content-section {
            display: none;
        }

        .content-section.active {
            display: block;
        }

        /* 首页内容 */
        .home-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 20px;
        }

        /* 公司简介卡片 */
        .company-profile {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                        url('https://img.alicdn.com/imgextra/i4/O1CN012Xnw4E1gFo5Gx5XaB_!!6000000004113-2-tps-1760-1692.png');
            background-size: cover;
            background-position: center;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .company-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .company-tags {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .tag-primary {
            background: rgb(255, 28, 42);
            color: white;
            padding: 5px 10px;
            font-size: 14px;
            margin-right: 0;
        }

        .tag-secondary {
            background: rgb(255, 225, 225);
            color: rgb(213, 0, 7);
            padding: 5px 10px;
            font-size: 14px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .company-id {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgb(213, 0, 7);
            font-size: 14px;
        }

        .company-id img {
            height: 17px;
            margin-right: 5px;
        }

        .info-card {
            background: white;
            padding: 20px;
            margin-top: 15px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.6);
        }

        .action-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .btn {
            flex: 1;
            padding: 10px;
            text-align: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: var(--gccolor);
            color: #fff;
            border:none;
            padding:15px 60px;
        }
        .btn-primary:hover{background-color:#FF6600;}
        .btn-secondary {
            background: white;
            border: 1.5px solid #ccc;
            color: rgba(0, 0, 0, 0.87);
        }

        .mobile-access {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .mobile-info h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .mobile-info p {
            font-size: 14px;
            color: rgba(0, 0, 0, 0.6);
        }

        .qrcode img {
            width: 60px;
            height: 60px;
        }

        .address {
            display: flex;
            align-items: center;
            border-top: 1px dashed #B3B3B3;
            padding-top: 15px;
            color: rgba(0, 0, 0, 0.4);
            font-size: 14px;
        }

        .address i {
            margin-right: 5px;
        }

        /* 产品展示区域 */
        .product-showcase {
            background: white;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .section-title h3 {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 500;
        }

        .section-title img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .view-more {
            color: #999;
            font-size: 14px;
        }

        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .product-item {
            display: flex;
            background: #f9f9f9;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-image {
            width: 120px;
            height: 120px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .product-details {
            flex: 1;
            padding: 10px;
        }

        .product-name {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-tag {
            display: inline-block;
            background: rgba(255, 211, 204, 0.4);
            color: rgb(255, 0, 0);
            padding: 2px 8px;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .product-price {
            color: rgb(255, 64, 0);
            font-weight: bold;
            font-size: 20px;
        }

        /* 轮播图 */
        .banner-container {
            position: relative;
            overflow: hidden;
            margin-top: 15px;
        }

        .banner-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .banner-slide {
            min-width: 100%;
        }

        .banner-slide img {
            width: 100%;
            display: block;
        }

        .banner-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
        }

        .banner-btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .banner-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }

        .banner-dot.active {
            background: white;
        }

        /* 公司优势 */
        .advantages {
            margin-top: 15px;
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

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

        /* 公司简介 */
        .about-company {
            display: flex;
            flex-wrap: wrap;
            background: white;
            padding: 30px;
            margin-top: 15px;
            gap: 30px;
        }

        .company-description {
            flex: 1;
            min-width: 300px;
        }

        .company-description h2 {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .company-description p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.8;
        }

        .btn-more {
            display: inline-block;
            background: #FF1C2A;
            color: white;
            padding: 10px 20px;
            margin-top: 10px;
            transition: background 0.3s;
        }

        .btn-more:hover {
            background: #EB4E00;
        }

        .company-image {
            flex: 1;
            min-width: 300px;
        }

        .company-image img {
            width: 100%;
        }

        /* 产品列表 */
        .products-section {
            background: white;
            margin-top: 15px;
            padding: 30px;
        }

        .products-section h3 {
            font-size: 28px;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .product-card {
            border: 1px solid #dedede;
            overflow: hidden;
            transition: all 0.4s;
        }

        .product-card:hover {
            box-shadow: 0 0 5px 2px #dedede;
        }

        .product-card img {
            width: 100%;
            transition: all 0.4s;
        }

        .product-card:hover img {
        }

        .product-info {
            padding: 10px;
        }

        .product-title {
            font-size: 14px;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 10px;
        }

        .product-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price-small {
            color: rgb(255, 64, 0);
            font-weight: bold;
            font-size: 20px;
        }

        .sales-count {
            color: #999;
            font-size: 12px;
        }

        /* 工厂档案 */
        .about.container {
            background: white;
            padding: 30px;
            margin-top: 15px;
        }

        .jianjie {
            width: 60%;
            padding-right: 30px;
        }

        .jianjie h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .jianjie p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: #555;
        }

        .tc {
            width: 35%;
            text-align: center;
        }

        .tc img {
            max-width: 100%;
            margin-bottom: 15px;
        }

        .ad-slot {
            height: 100px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .gsinfo {
            background: white;
            padding: 30px;
            margin-top: 15px;
        }

        .gsinfo h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .gsinfo h3 span {
            font-size: 14px;
            color: #999;
            margin-left: 10px;
            font-weight: normal;
        }

        .dataintable {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .dataintable td {
            padding: 12px 15px;
            border: 1px solid #eee;
            font-size: 14px;
        }

        .dataintable td:first-child {
            width: 15%;
            background: #f9f9f9;
            font-weight: 500;
        }

        .qw {
            text-align: center;
            padding: 20px 0;
        }

        .qw img {
            margin-bottom: 10px;
        }

        .qw a {
            color: var(--gccolor);
            font-size: 14px;
        }

        /* 页脚 */
        footer {
            background: white;
            margin-top: 25px;
            padding: 20px 0;
            text-align: center;
        }

        footer p {
            font-size: 12px;
            color: #555;
            line-height: 1.8;
        }

        footer a:hover {
            color: #EB4E00;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .home-content {
                grid-template-columns: 1fr;
            }

            .jianjie {
                width: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }

            .tc {
                width: 100%;
            }

            .product-list {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .search-box {
                max-width: 300px;
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list li {
                text-align: left;
                border-bottom: 1px solid #eee;
            }

            .nav-list a {
                padding: 15px 20px;
            }

            .search-box {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }

            .header-container {
                flex-wrap: wrap;
            }

            .contact-info {
                order: 2;
                margin-left: auto;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 10px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .content-area {
                padding: 20px;
            }

            .product-item {
                flex-direction: column;
            }

            .product-image {
                width: 100%;
                height: auto;
            }
        }


        /* 公司简介版块 */
        .about-section {
            background-color: white;
            padding: 40px;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-content {
            flex: 1;
            min-width: 300px;
        }

        .about-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--gccolor);
        }

        .about-content p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 产品推荐版块 */
        .products-section {
            background-color: white;
            padding: 40px;
            margin-top: 20px;
        }

        .section-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            border: 1px solid #eee;
            overflow: hidden;
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 44px;
        }

        .product-price {
            color: var(--gccolor);
            font-weight: bold;
            font-size: 20px;
        }

        /* 联系我们版块 */
        /* 联系信息样式优化 */
.contact-info {
    /* background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%); */
    padding: 30px;
    width:100%;
}


.info-item {
    display: flex;
    width:25%;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.7);
}

.info-item:hover {
    background-color: white;
    box-shadow: 0 3px 10px rgba(255,91,0,0.1);
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(153,153,153,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--gccolor);
    font-size: 20px;
    padding-left: 10px;
    width: 50px;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-content p, .info-content a {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.info-content a {
    color: var(--gccolor);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #EB4E00;
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-info {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        padding: 15px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


        @media (min-width: 992px) {
            .contact-section {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-form {
            background-color: #f9f9f9;
            padding: 30px;
        }

        .contact-form h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            font-family: inherit;
        }

        .submit-btn {
            background-color: var(--gccolor);
            color: white;
            border: none;
            padding: 12px 25px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #EB4E00;
        }

        .contact-info {
            background-color: #f9f9f9;
            padding: 30px;
        }

        .contact-info h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            margin-bottom: 20px;
        }

        .info-icon {
            color: var(--gccolor);
            font-size: 24px;
            margin-right: 15px;
            width: 50px;
        }

        .info-content h4 {
            margin-bottom: 5px;
            font-size: 16px;
        }

        .info-content p {
            color: #666;
        }

        /* 热门工厂推荐版块 */
        .factories-section {
            background-color: white;
            padding: 40px;
            margin-top: 20px;
        }

        .factories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .factories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .factories-grid {
                grid-template-columns: repeat(5, 2fr);
            }
        }

        .factory-card {
            border: 1px solid #eee;
            overflow: hidden;
            transition: all 0.3s;
        }

        .factory-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .factory-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .factory-content {
            padding: 20px;
        }

        .factory-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .factory-rating {
            color: #FFC107;
            margin-bottom: 10px;
        }

        .factory-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 15px;
        }

        .factory-tag {
            background-color: #f1f1f1;
            color: #666;
            font-size: 12px;
            padding: 3px 8px;
        }

        .factory-button {
            display: block;
            width: 100%;
            padding: 10px;
            background-color: var(--gccolor);
            color: white;
            text-align: center;
            transition: background-color 0.3s;
        }

        .factory-button:hover {
            background-color: #EB4E00;
        }

    /* 工商信息版块样式 */
    .gsinfo-section {
        background-color: white;
        padding: 30px;
        margin-top: 20px;
        background: url(https://www.msn.wang/skin/statics/image/abj.jpg);
        width: 100%;
        min-height: 240px;
        background-size: cover;
    }

    .license-info, .general-info {
        margin-bottom: 25px;
    }

    .license-info h3, .general-info h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .license-content p, .general-content p {
        font-size: 14px;
        line-height: 1.8;
        color: #555;
    }

    /* 工商保障标题 */
    .business-title {
        display: flex;
        align-items: center;
        margin: 30px 0 20px;
    }

    .title-text {
        font-size: 18px;
        color: #333;
        font-weight: 600;
        margin-right: 15px;
    }

    .title-line {
        flex: 1;
        height: 1px;
        background-color: #eee;
    }

    /* 资质验证 */
    .certification {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
    }

    .cert-item {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .cert-item i {
        margin-right: 8px;
        color: var(--gccolor);
    }

    .cert-item a {
        color: var(--gccolor);
        text-decoration: none;
        transition: color 0.3s;
    }

    .cert-item a:hover {
        color: var(--gccolor);
    }

    /* 工商信息表格 */
    .info-table {
        width: 100%;
        border-collapse: collapse;
    }

    .info-table tr {
        border-bottom: 1px solid #eee;
    }

    .info-table tr:last-child {
        border-bottom: none;
    }

    .info-table td {
        padding: 15px 10px;
    }

    .info-label {
        width: 25%;
        color: #666;
        font-weight: 500;
    }

    .info-value {
        color: #333;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .certification {
            flex-direction: column;
            gap: 10px;
        }

        .info-table td {
            padding: 10px 5px;
            font-size: 14px;
        }
    }

    /* 公司简介版块样式 */
    .about-section {
        background-color: white;
        padding: 40px 0;
        margin: 30px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .about-section .container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .about-content {
        flex: 1;
        min-width: 300px;
    }

    .about-content h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .about-description p {
        margin-bottom: 15px;
        line-height: 1.8;
        color: #555;
    }

    .about-btn {
        display: inline-block;
        background-color: var(--gccolor);
        color: white;
        padding: 12px 25px;
        margin-top: 20px;
        transition: background-color 0.3s;
    }

    .about-btn:hover {
        background-color: #EB4E00;
    }

    .about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .ad-banner {
        margin-top: 20px;
        position: relative;
    }

    .ad-banner img {
        width: 100%;
    }

    .ad-label {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: rgba(0,0,0,0.5);
        color: white;
        padding: 3px 8px;
        font-size: 12px;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .about-section .container {
            flex-direction: column;
        }

        .about-content, .about-image {
            width: 100%;
        }
    }

    /* 加工专区特有样式 */
    .processing-hero {
        position: relative;
        height: 400px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .processing-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gccolor);
        opacity:0.5;
        z-index: 1;0
    }

    .processing-hero img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
        padding: 0 60px;
        max-width: 1000px;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid white;
        color: white;
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* 表单区域 */
    .form-section {
        background-color: white;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        text-align: center;
    }

    .section-description {
        // text-align: center;
        color: #666;
        // max-width: 700px;
        margin: 0 auto 30px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    @media (min-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .required {
        color: var(--gccolor);
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        font-family: inherit;
        transition: border-color 0.3s;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--gccolor);
    }

    textarea.form-control {
        min-height: 120px;
    }

    .checkbox-group {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        padding: 10px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: all 0.3s;
        text-align:center;
    }

    .checkbox-item:hover {
        border-color: var(--gccolor);
    }

    .checkbox-item input {
        margin-right: 8px;

    }

    .agreement {
        display: flex;
        align-items: center;
        margin: 20px 0;
    }

    .agreement input {
        margin-right: 10px;
    }

    .form-submit {
        // text-align: center;
    }

    /* 流程说明 */
    .process-section {
        background-color: white;
        padding: 30px;
        margin-bottom: 30px;
    }

    .process-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 768px) {
        .process-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 992px) {
        .process-list {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .process-card {
        background-color: #f9f9f9;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
    }

    .process-card:hover {
        transform: translateY(-5px);
    }

    .process-number {
        width: 40px;
        height: 40px;
        background-color: var(--gccolor);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-weight: 600;
    }

    .process-title {
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* 工厂推荐 */
    .factory-section {
        background-color: white;
        padding: 30px;
    }

    .factory-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 768px) {
        .factory-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 992px) {
        .factory-grid {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    .factory-card {
        border: 1px solid #eee;
        overflow: hidden;
        transition: all 0.3s;
    }

    .factory-card:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .factory-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .factory-content {
        padding: 20px;
    }

    .factory-name {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
        overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    }

    .factory-rating {
        color: #FFC107;
        margin-bottom: 10px;
    }

    .rating-text {
        color: #666;
        font-size: 0.9rem;
        margin-left: 5px;
    }

    .factory-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 15px;
    }

    .factory-tag {
        background-color: #f1f1f1;
        color: #666;
        font-size: 0.8rem;
        padding: 3px 8px;
    }

    .factory-button {
        display: block;
        width: 100%;
        padding: 10px;
        background-color: var(--gccolor);
        color: white;
        text-align: center;
        transition: background-color 0.3s;
    }

    .factory-button:hover {
        background-color: #EB4E00;
    }

    .load-more {
        text-align: center;
        margin-top: 30px;
    }
    /* 联系方式 */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .contact-form {
            background: #f9f9f9;
            padding: 30px;
        }

        .contact-form h3 {
            margin-bottom: 20px;
            font-size: 20px;
            color: #333;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;

        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            font-family: inherit;
            outline:none;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--gccolor);
            color: white;
            border: none;
            padding: 12px 25px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #EB4E00;
        }

        .contact-info-section {
            background: #f9f9f9;
            padding: 30px;
        }

        .contact-info-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
            color: #333;
        }

        .info-item {
            display: flex;
            margin-bottom: 20px;
        }

        .info-icon {
            color: var(--gccolor);
            font-size: 24px;
            margin-right: 15px;
            width: 50px;
        }

        .info-content h4 {
            margin-bottom: 5px;
            font-size: 16px;
        }

        .info-content p {
            color: #666;
        }
        .dianhua{font-size:18px;}
        .dianhua i{color:var(--gccolor);padding-right:6px;}
        @media (min-width: 768px){.mb{display:none;}}
        @media (max-width: 768px){
            .search-box,.gsinfo-section,.pc{display:none;}
            .logo h2{font-size:1rem;}
            .contact-info{display:block;}
            .info-item{width:100%;}
        }



        .containers {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-containers {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            position: relative;
        }



        .menu-toggles {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        .nav-lists {
            display: flex;
            list-style: none;
        }

        .nav-lists li {
            margin-left: 20px;
        }

        .nav-lists a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-lists a:hover {
            color: var(--gccolor);
        }

        /* 移动端导航样式 */
        @media (max-width: 768px) {
            .menu-toggles {
                display: block;
            }

            .nav-lists {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                z-index: 1001;
                padding: 15px 0;
            }

            .nav-lists.active {
                display: flex;
                animation: slideDown 0.3s ease;
            }

            .nav-lists li {
                margin: 0;
                width: 100%;
            }

            .nav-lists a {
                display: block;
                padding: 12px 20px;
                width: 100%;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

/* 分页样式 - 重新设计 */
    .pagination-container {
      margin: 20px 0;
      text-align: center;
    }
    .pagination {
      display: inline-flex;
      align-items: center;
      padding: 0;
      margin: 0;
      list-style: none;
      border: 1px solid #e2e8f0;
    }
    .pagination li {
      border-right: 1px solid #e2e8f0;
    }
    .pagination li:last-child {
      border-right: none;
    }
    .pagination a, .pagination span {
      display: block;
      padding: 8px 15px;
      text-decoration: none;
      color: #333;
      background-color: #fff;
      transition: all 0.2s ease;
    }
    .pagination a:hover {
      background-color: #f1f5f9;
      color: var(--gccolor);
    }
    .pagination .active span {
      background-color: var(--gccolor);
      color: #fff;
      font-weight: bold;
      border-right: 1px solid var(--gccolor);
    }
    .pagination .disabled span {
      color: #999;
      background-color: #f8fafc;
      cursor: not-allowed;
    }

 /* 悬浮客服系统样式 */
        .float-service {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service-item {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gccolor) 0%, var(--gccolor) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
            position: relative;
        }

        .service-item:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(74, 108, 247, 0.5);
        }

        .service-item i {
            font-size: 24px;
        }

        /* 信息弹窗样式 */
        .info-popup {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: none;
            width: 230px;
            text-align: center;
            z-index: 1001;
            animation: fadeIn 0.3s ease;
        }

        .info-popup:after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 10px 0 10px 10px;
            border-style: solid;
            border-color: transparent transparent transparent white;
        }

        .info-popup img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }

        .info-popup p {
            // margin-top: 8px;
            font-style: normal;
            font-size: 10px;
            color:#fac583;
        }
        .info-popup i{font-style: normal;font-size:10px;color:#fac583;padding-right:5px;}
        .phone-popup {
            width: 160px;
        }

        .phone-popup p {
            font-size: 16px;
            font-weight: bold;
            color: var(--gccolor);
        }

        .service-item:hover .info-popup {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-50%) translateX(10px); }
            to { opacity: 1; transform: translateY(-50%) translateX(0); }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .float-service {
                right: 10px;
            }

            .service-item {
                width: 50px;
                height: 50px;
            }

            .service-item i {
                font-size: 20px;
            }

            .info-popup {
                width: 150px;
                right: 60px;
            }

            .phone-popup {
                width: 140px;
            }
        }

        /* 页面内容样式 */
        .section {
            margin: 40px 0;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .section h2 {
            color: var(--gccolor);
            margin-bottom: 15px;
            border-left: 4px solid var(--gccolor);
            padding-left: 10px;
        }

        /* 底部样式 */
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #666;
            font-size: 14px;
        }