p.description {
            font-size: 1rem;
            color: #555;
            margin-bottom: 25px;
        }

        /* --- Industry Selector Dropdown --- */
        .industry-selector {
            margin-bottom: 30px;
        }

        .industry-selector label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .industry-selector select {
            width: 100%;
            padding: 12px 15px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            background-color: #fcfcfc;
            appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22%23555%22%3E%3Cpath%20d%3D%22M5.293%207.293a1%201%200%20011.414%200L10%2010.586l3.293-3.293a1%201%200%20111.414%201.414l-4%204a1%201%200%2001-1.414%200l-4-4a1%201%200%20010-1.414z%22%20%2F%3E%3C%2Fsvg%3E');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
        }

        /* --- Accordion List Styles --- */
        .application-list {
            border-top: 1px solid #eee;
        }

        .app-item {
            border-bottom: 1px solid #eee;
        }

        .app-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 10px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .app-header:hover {
            background-color: #f9f9f9;
        }

        .app-header h2 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 500;
            color: #222;
        }

        .toggle-icon {
            font-size: 2rem;
            font-weight: 300;
            color: var(--theme-color1);
            line-height: 1;
            transition: transform 0.2s ease;
        }

        /* --- NEW: Product Gallery Styles --- */
        .app-content {
            display: none; /* Hidden by default */
            padding: 20px 15px;
            background-color: #fafafa;
            border-top: 1px dashed #e0e0e0;
        }

        .product-gallery {
            display: grid;
            /* Creates a responsive grid: 
               - Tries to fit as many 150px columns as possible.
               - Stretches them to fill the space evenly.
            */
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .product-item {
            display: block;
            border: 1px solid #ddd;
            border-radius: 6px;
            background-color: #fff;
            text-decoration: none;
            color: #333;
            overflow: hidden; /* Ensures image corners are rounded */
            transition: box-shadow 0.2s ease;
        }
        
        .product-item:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .product-item img {
            width: 100%;
            height: 120px; /* Fixed height for uniform look */
            object-fit: cover; /* Ensures image covers the area, cropping if needed */
            display: block;
            border-bottom: 1px solid #eee;
        }

        .product-item span {
            display: block;
            padding: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
        }
        
        /* --- JS-Controlled Active State --- */
        .app-item.active .app-content {
            display: block;
        }
        
        .app-item.active .toggle-icon {
            /* content: '−'; */
            /* We will use JS to change text content */
        }
/* --- 新增：下拉菜单吸顶效果 --- */
.sticky-filters {
    position: -webkit-sticky; /* 兼容 Safari */
    position: sticky;         /* 标准吸顶属性 */
    top: 0;                   /* 距离顶部 0px 时开始吸附 */
    z-index: 100;            /* 确保它浮在其他内容上面 */
    background-color: #fff;   /* 必须设置背景色，否则文字会重叠 */
    padding-top: 15px;        /* 增加一点内部间距，美观 */
    padding-bottom: 5px;
    margin-left: 0;           
    margin-right: 0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); /* 添加一个小阴影，更有层次感 */
}

/* --- 修复：跳转后的位置偏移 --- */
/* 因为菜单栏现在吸顶了（占用了大约100px的高度），
   我们需要让跳转的目标位置向下偏移，否则标题会被菜单栏挡住 */
.app-item {
    scroll-margin-top: 140px; /* 这个数值通常等于吸顶菜单的高度 + 一点空隙 */
}
/* --- 修复吸顶失效 --- */
.page-wrapper{
    overflow: visible !important;
}
/**应用详情页**/
/* =========================================
   Manufacturing Solution Page Styles (Revamped)
   ========================================= */

/* --- 1. Hero Section (Industrial Look) --- */
.mfg-hero-section {
    padding: 60px 0;
    background: #f9f9f9; /* 浅灰色工业背景 */
    border-bottom: 1px solid #e0e0e0;
}

.mfg-hero-text {
    padding-right: 30px;
}

.mfg-hero-text .sub-title {
    display: inline-block;
    background: #e6f0fa;
    color: var(--theme-color1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-secondary-sycp {
    border: 2px solid transparent;
    line-height: 16px;
    color: var(--theme-color1);
    background-color: transparent;
    border-color: var(--theme-color1);
}
.mfg-hero-text h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-btn-group {
    display: flex;
    gap: 15px;
}

/* --- Carousel / Slider Styles --- */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #000;
}

.carousel-slide {
    display: none; /* Hidden by default */
    width: 100%;
    position: relative;
}

.carousel-slide.active {
    display: block; /* Show active slide */
    animation: fadeEffect 0.8s;
}

.carousel-slide img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Caption on Image */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 1rem;
}

/* Carousel Buttons */
.carousel-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.3);
    border: none;
    z-index: 2;
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Dots */
.carousel-dots {
    text-align: center;
    position: absolute;
    bottom: 40px; /* Above caption */
    width: 100%;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

@keyframes fadeEffect {
    from {opacity: .4} 
    to {opacity: 1}
}

/* --- 2. Process Section --- */
.process-overview-section {
    padding: 80px 0;
    background: #fff;
}

.process-block {
    text-align: center;
    margin-bottom: 30px;
}

.process-block .inner-box {
    padding: 30px 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s;
}

.process-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-block .icon-box {
    font-size: 2rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 10px;
}

.process-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- 3. Machines Grid (Wide Layout) --- */
.machines-grid-section {
    padding: 80px 0;
    background: #f4f5f8;
}

.prod-category-row {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px; /* 类目之间的间距 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cat-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.cat-header h3 {
    font-size: 1.5rem;
    color: #222;
    display: flex;
    align-items: center;
}

.cat-header .icon {
    margin-right: 10px;
}

/* Machine Item Styling */
.machine-wide-item {
    margin-bottom: 20px;
}

.machine-wide-item .inner-flex {
    display: flex;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    height: 100%; /* Equal height */
}

.machine-wide-item .img-col {
    flex: 0 0 40%;
    background: #f9f9f9;
}

.machine-wide-item .img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.machine-wide-item .text-col {
    flex: 0 0 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.machine-wide-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.machine-wide-item ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
    font-size: 0.9rem;
    color: #555;
}

.machine-wide-item ul li {
    margin-bottom: 4px;
}

.details-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--theme-color1);
    font-size: 0.9rem;
    text-decoration: none;
}

.details-link:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .machine-wide-item .inner-flex {
        flex-direction: column;
    }
    
    .carousel-slide img {
        height: 250px; /* Mobile height */
    }
}
/**产品集合页**/
.cph2-bt h2{
	color: #000;
    font-weight: bold;
    margin: 1rem 0 1rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px dotted #293133;
}
figure{margin: 0;}
.cpkjjg{padding: 10px 10px 10px;}
.cpjhy-dakj{border-radius: 10px;transition: transform 0.3s ease;overflow: hidden;box-shadow: hsl(0, 0%, 80%) 0 0 15px;}
.cpjhy-dakj:hover {
    transform: scale(1.03);
}
.cr-products-info .card-cp {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
	padding: 0;
	font-size: 12px;
	color: hsl(0,0%,60%);
	border-radius: 4px;
	box-shadow: hsl(0,0%,80%) 0 0 16px;
	background-color: rgba(0, 0, 0, .03);
}
.cr-products-info .card-cp img {
	border-style: none
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
}
.faqydbk{color: #fff;}
.jhy-title{
	color: #5b5657;
    font-size: 32px;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px dotted #5b5657;
}
.jhy-title:before {
    width: 5px;
    height: 2rem;
    display: inline-block;
    content: "";
    background: #0d6fb8;
    margin-right: 10px;
}
.cr-products-info .card-cp .card-footer-cp {
    padding: 10px;
	font-size: 0.9rem;
}
.cr-products-info .card-cp .card-footer-cp .cp-texing {
    font-size: 14px;
    color: hsl(0, 0%, 20%);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.cp-texing ul {
    margin-left: 0.25rem;
    list-style-type: disc !important;
    padding-left: 0.5rem;
	margin-bottom: 1rem;
}
.cp-texing ul li{line-height: 28px;}
.cp-texing ul li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 5px solid #0d6fb8;
    border-radius: 50%;
    margin-right: 10px;
    background-color: white;
}
.fa-star:before {
    content: "\f005";
}
.cp-xjms{padding-top: 20px;}
.cp-xjms .cpxj{padding-bottom: 30px;}
.cp-xjms li{list-style: none !important;padding-left: 0;}
.cp-xjms .cpxj-txt {margin-top: 30px;border-top: 2px solid #0d6fb8;width: 97.7%;}
.cp-xjms .cpxj-msg {
    margin-top: 20px;
    color: #0d6fb8;
    font-weight: 500;
	font-size: 18px;
}
.cr-products-info .card-cp .card-footer-cp .hendrio-button {
    margin-left: 0.25rem;
    padding: 15px 45px;
    font-size: 15px;
    background: #005090;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px 30px 30px 30px;
    position: relative;
    z-index: 1;
    transition: .5s;
}
.cr-products-info .card-cp .card-footer-cp .hendrio-button:hover{background: #0d6fb8;}
.cr-products-info .card-cp .pr-actions .pr-rating .star-ratings i {
    vertical-align: middle;
    color: #fec42d;
    margin: 0 0 3px;
    line-height: 20px;
}
.chanpin-biaoge-1 .star-ratings{margin-top: 30px;}
.chanpin-biaoge-1 .star-ratings i{color: #ffd200;font-size: 14px;}
.chanpin-biaoge-1 button{border: none;outline: none;background: none;}
.chanpin-biaoge-1 h1{font-size: 26px;line-height: 30px;}
.chanpin-biaoge-1 h2{font-size: 22px;line-height: 30px;}
.chanpin-biaoge-1 h3{font-size: 18px;}
.thumbnail-images{flex-wrap: wrap;text-align: center;}
.thumbnail-images img {
            max-width: 100px;
            margin: 5px;
            cursor: pointer;
            border: 1px solid transparent;
			border-color: #5b5657;
}
.thumbnail-images img.active {border-color: #0d6fb8;}
.nav-tabs {
            display: flex;
			flex-wrap: wrap;
			margin-bottom: 10px;
            border-bottom: 1px solid #eee;
}
.nav-tabs .nav-link {padding: 10px 20px;border-radius: 5px 5px 0 0;}
.nav-tabs .nav-link.active {background-color: #0d6fb8;color:#fff}
.tab-pane {display: none;padding: 20px;}
.tab-pane.active {display: block;}
.service-bg-cp{padding: 25px;}
.chanpin-biaoge-1 table {
	width: 100% !important;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
}
.chanpin-biaoge-1 table tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.03);
}
.chanpin-biaoge-1 table tbody tr:hover {
	background-color: #d9d9d9
}
.chanpin-biaoge-1 table thead tr:hover {
	background-color: #d9d9d9
}
.chanpin-biaoge-1 table th, .chanpin-biaoge-1 table td {
	padding: 10px;
	vertical-align: middle;
	font-size: 14px;
	color: #5b5657;
	border: 1px solid #dee2e6;
	text-align: center;
}
.chanpin-biaoge-1 ul {
    margin-left: 1.25rem;
    list-style-type: disc !important;
    padding-left: 0.5rem;
}
.chanpin-biaoge-1 ul li {
    list-style: disc;
	margin-bottom: 15px;
}
.xgzsbk ul{margin-left:0rem;padding-left:0rem;}
.xgzsbk ul li{
	list-style: none;
	border-bottom: 1px solid #eee;
	position: relative;
    padding-left: 15px;
    line-height: 28px;
    margin-left: 15px;}
.xgzsbk ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background-color: #0d6fb8;
    border-radius: 50%;
}
.product-priority{padding: 15px 0;border-top: 1px solid #eee;margin-top: 15px;}
.sample-links .cp-mfyp{color: #5b5657;font-weight: 700;}
.sample-links ul li{display: inline-block;margin: 0 10px 25px;}
.sample-links ul li a{display: inline-block;width: 100px;height: 100px;border-radius: 15px;box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);}
.cr-products-info .card-cp .pr-actions .pr-buttons a.btn-cart {
    color: #0d6fb8;
    border-color: hsl(87, 58%, 45%);
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    line-height: 1.5;
    padding: 5.5px 10px;
    margin-top: 5px;
    text-align: center;
    border: 1px solid hsl(0, 0%, 80%);
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
}
.fa-youtube:before {
    content: "\f167";
}
.cr-products-info .card-cp .pr-actions .pr-buttons a.btn-cart:hover{color: #4f8fbd;transition: all .3s ease-in-out;}
.cr-products-info .card-cp .card-footer-cp .cp-title{margin-top: 0px;font-size: 16px;}
.cr-products-info .card-cp .card-footer-cp .cpjhy-tx p{font-size: 14px;line-height: 23px;}
.cr-products-info .card-cp .cp-title a{font-size: 20px;}
.cr-products-info .card-cp .card-footer-cp .cp-price{padding: 5px 0;}
.cr-products-info .card-cp .card-footer-cp .lbpkj{padding-top: 15px;}
.cplbt {
            position: relative;
            width: 90%;
            height: auto;
			aspect-ratio: 1/1;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
			margin: auto;
        }
.cplbt img {
            position: absolute;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
.cplbt img.active {
            opacity: 1;
        }
.cr-products-info .card-cp .pr-actions .cp-ship{margin-left: 30px;}
.cr-products-info .card-cp .pr-actions .pr-buttons {
    color: #0d6fb8;
    font-size: 26px;
}
@media (min-width: 1400px) {.container-jhy{max-width: 1520px;}}
/**产品集合页 End**/