    .NyBigBox {
        padding-top: 0;
    }

    section {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        section {
            padding: 40px 0;
        }
    }

    @media (max-width: 700px) {
        .tabList a {
            width: 33.333%;
        }
    }

    .jcc {
        display: flex;
        justify-content: center;
    }

    /* 工业流体部分样式 */
    .section1 {
        background: #f8f9fa;
        /* 添加背景色 */
        width: 100%;
        border-top: 1px solid #E5E5E5;
    }

    .fluid-content {
        display: flex;
        margin-bottom: 60px;
        align-items: center;
        gap: 60px;
        position: relative;
        /* 添加相对定位 */
    }

    .fluid-left {
        flex: 1;
        padding-right: 40px;
    }

    .fluid-left .fluid-left-title {
        display: flex;
    }

    .fluid-left .fluid-left-title img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .fluid-left .fluid-left-title .fluid-left-title1 {
        margin-left: 5px;
    }

    .fluid-left .fluid-left-title h6 {
        color: #333;
        text-align: justify;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .fluid-left .fluid-left-title h2 {
        font-size: 32px;
        color: #000;
        margin-bottom: 20px;
        font-weight: 600;
        margin-top: 0;
    }

    .fluid-right {
        flex: 1;
        position: relative;
        height: 400px;
        /* 设置固定高度 */
    }

    .fluid-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fluid-logo {
        height: 45px;
        margin-bottom: 25px;
    }

    .fluid-left h2 {
        font-size: 32px;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .building-img {
        width: 100%;
        border-radius: 12px;
        /* 增加圆角 */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        /* 添加阴影 */
        transition: transform 0.3s ease;
        /* 添加悬停动画 */
    }

    .building-img:hover {
        transform: translateY(-5px);
        /* 悬停时上移效果 */
    }

    .subtitle {
        color: #000;
        font-family: "Microsoft YaHei";
        font-size: 20px;
        font-weight: 400;
    }

    .description {
        line-height: 1.8;
        color: #555;
        font-size: 16px;
        margin-top: 20px;
    }

    /* 服务卡片样式 */
    .service-cards {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        /* 增加卡片间距 */
        margin-top: 60px;
    }

    .service-cards .raw-html-embed {
        flex: 1;
        padding: 40px 30px;
        background: #fff;
        border-radius: 16px;
        /* 增加圆角 */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s ease;
        /* 添加过渡效果 */
        border: 1px solid #eee;
        /* 添加边框 */
        position: relative;
    }

    .service-cards .raw-html-embed:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .icon-circle {
        width: 80px;
        /* 增大图标尺寸 */
        height: 80px;
        background: url('../../img/solution/card2.png');
        background-size: cover;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
        position: absolute;
        /* 绝对定位 */
        left: 50%;
        /* 水平居中 */
        transform: translate(-50%, -50%);
        /* 居中并向上偏移自身高度的一半 */
        top: 0;
        /* 对齐到顶部 */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .service-cards .raw-html-embed:hover .icon-circle {
        /* background: #e6f0ff; */
        /* 悬停时改变背景色 */
    }

    .icon-circle img {
        width: 40px;
        height: 40px;
    }

    .service-cards .raw-html-embed h3 {
        margin-bottom: 20px;
        color: #333;
        font-size: 20px;
        font-weight: 600;
        margin-top: 55px;
    }

    .service-cards .raw-html-embed p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
    }

    /* 相关产品部分样式 */
    .related-products {
        padding: 80px 0;
        /* background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); */
        background: url('https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/298/20250227141154_00vmlkO3.png');
        background-size: cover;
        position: relative;
        overflow: hidden;
    }

    .products-header {
        margin-bottom: 60px;
        text-align: center;
    }

    .products-header h6 {
        color: #333;
        font-size: 14px;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .products-header h2 {

        margin-bottom: 20px;
        font-weight: 700;


        color: #000;
        font-size: 32px;
    }

    .products-header p {
        color: #555;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .products-slider {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        color: #666;
        cursor: pointer;
        z-index: 2;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .prev-btn {
        left: 140px;
        /* 定位在左侧边距中间 */
    }

    .next-btn {
        right: 140px;
        /* 定位在右侧边距中间 */
    }

    .slider-btn:hover {
        background: #f5f5f5;
        color: #333;
    }

    .products-wrapper {
        width: 80%;
    }

    .products-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .products-track .raw-html-embed {
        flex: 0 0 auto;
        /* 使产品项宽度自适应 */
        height: 447px;
        display: flex;
        gap: 60px;
        align-items: center;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 105px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: calc(100% - 240px);
        /* 计算宽度以适应容器 */
        overflow: hidden;
    }

    .products-track .raw-html-embed:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }


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

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

    .product-info {
        flex: 1;
        padding-right: 40px;
    }

    .product-info h4 {
        font-size: 24px;
        color: #000;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .product-spec {
        margin-bottom: 20px;
        border-left: 3px solid #003686;
        padding-left: 10px;
    }

    .spec-label {
        color: #003686;
        font-size: 14px;
        border-radius: 4px;
        margin-right: 10px;
    }

    .spec-value {
        color: #003686;
        font-weight: 500;
    }

    .product-info p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        /* 限制为最多五行 */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .learn-more {
        color: #fff;

        border-radius: 4px;
        border: 1px solid #9C381E;
        background: #9C381E;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 4px;
        display: inline-block;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .learn-more:hover {
        background: #a85b4f;
        color: #fff;
        text-decoration: none;

    }

    /* 响应式调整 */
    @media (max-width: 992px) {
        .products-track .raw-html-embed {
            flex-direction: column;
            gap: 30px;
            padding: 30px;
            height: auto;
        }

        .product-image {
            max-height: 300px;
            width: 100%;
        }

        .products-track .raw-html-embed .product-image img {
            width: 100%;
        }

        .product-info {
            padding-right: 0;
        }
    }

    @media (max-width: 768px) {
        .products-header h2 {
            font-size: 28px;
        }

        .products-slider {
            margin: 0;
        }

        .products-wrapper {
            padding: 0;
        }

        .products-track .raw-html-embed {
            padding: 20px;
        }

        .slider-btn {
            width: 32px;
            height: 32px;
        }
    }

    .industrial-fluid-header {
        text-align: center;
        padding: 40px 0 20px;
    }

    .industrial-fluid-title {
        font-size: 32px;
        color: #333;
        margin: 0;
        font-weight: 700;
    }

    .industrial-fluid-subtitle1 {
        color: #2f2f2f;
        margin: 10px 0;
        font-size: 14px;
    }

    .industrial-fluid-subtitle {
        color: #666;
        margin: 10px 0;
        font-style: 16px;
    }

    .industrial-tab-container {
        width: 100%;
        position: relative;
        margin: 20px 0;
        margin-bottom: 100px;
    }

    .industrial-tab-list {
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .industrial-tab-item {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        cursor: pointer;
        position: relative;
        transition: color 0.3s;
        color: #000;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        /* 211.111% */
    }

    .industrial-tab-active {
        color: #0056b3;
    }

    .industrial-tab-slider {
        position: absolute;
        bottom: 0;
        height: 2px;
        background: #0056b3;
        transition: all 0.3s ease;
    }



    .industrial-product-info {
        flex: 1;
        padding-right: 60px;
    }

    .industrial-product-title {
        color: #000;
        font-family: "Microsoft YaHei";
        font-size: 28px;
        font-weight: 700;
        margin-top: 40px;
        margin-bottom: 70px;
    }

    .industrial-info-item {
        margin: 10px 0;
        color: #2F2F2F;
        font-size: 16px;
    }

    .industrial-location {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        color: #2F2F2F;
    }

    .industrial-location-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        color: #0056b3;
    }

    .industrial-product-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .industrial-product-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    .industrial-slider-buttons {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .industrial-slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .industrial-slider-btn img {
        width: 100%;
    }

    .industrial-slider-btn:hover {
        background: #f5f5f5;
    }

    /* 添加新的样式 */
    .industrial-content-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .industrial-content-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .industrial-content {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-between;
        margin: 40px auto;
        padding: 0 20px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }


    .industrial-content.active {
        opacity: 1;
    }

    /* 添加内容切换动画 */
    .industrial-content {
        display: none;
        animation-duration: 0.5s;
        animation-fill-mode: both;
        max-width: 1200px;
    }

    .industrial-content.active {
        display: flex;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideOutRight {
        from {
            transform: translateX(0);
            opacity: 1;
        }

        to {
            transform: translateX(100%);
            opacity: 0;
        }
    }

    @keyframes slideOutLeft {
        from {
            transform: translateX(0);
            opacity: 1;
        }

        to {
            transform: translateX(-100%);
            opacity: 0;
        }
    }

    .slideInRight {
        animation-name: slideInRight;
    }

    .slideInLeft {
        animation-name: slideInLeft;
    }

    .slideOutRight {
        animation-name: slideOutRight;
    }

    .slideOutLeft {
        animation-name: slideOutLeft;
    }

    /*  */

    .partner-container {
        padding-top: 100px;
    }

    .partner-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .partner-header h2 {
        font-size: 32px;
        color: #333;
        margin: 0;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .partner-header p {
        color: #666;
        font-size: 14px;
    }

    .partner-row {
        display: flex;
        margin-bottom: 20px;
        animation: slideLeft 20s linear infinite;
    }

    .partner-row:hover {
        animation-play-state: paused;
    }

    .partner-item {
        flex: 0 0 240px;
        height: 80px;
        margin-right: 20px;
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

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

    .partner-item img {
        max-width: 100%;
        max-height: 100%;
        /* filter: grayscale(100%); */
        transition: filter 0.3s ease;
    }

    .partner-item:hover img {
        filter: grayscale(0%);
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* 第二行反向滚动 */
    .partner-row.reverse {
        animation: slideRight 20s linear infinite;
    }

    @keyframes slideRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* 响应式媒体查询 */
    @media (max-width: 1200px) {
        .fluid-content {
            gap: 30px;
        }

        .service-cards {
            gap: 20px;
        }

        .products-track .raw-html-embed {
            margin: 0 60px;
            width: calc(100% - 120px);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .industrial-tab-container {
            margin-bottom: 30px;
        }
    }

    @media (max-width: 992px) {
        .fluid-content {
            flex-direction: column;
            gap: 40px;
        }

        .fluid-left {
            padding-right: 0;
        }

        .fluid-right {
            height: 300px;
        }

        .service-cards {
            flex-direction: column;
            gap: 60px;
        }

        .service-cards .raw-html-embed {
            max-width: 100%;
        }

        .industrial-content {
            flex-direction: column;
            gap: 30px;
        }

        .industrial-product-info {
            padding-right: 0;
        }

        .industrial-product-title {
            margin-top: 20px;
            margin-bottom: 30px;
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .tab-title {
            font-size: 13px;
            margin-left: 5px;
        }

        .fluid-left .fluid-left-title h2 {
            font-size: 24px;
        }

        .subtitle {
            font-size: 18px;
        }

        .description {
            font-size: 14px;
        }

        .industrial-fluid-title {
            font-size: 24px;
        }

        .industrial-tab-item {
            font-size: 14px;
            padding: 10px 0;
        }

        .partner-item {
            flex: 0 0 180px;
            height: 60px;
            padding: 15px;
        }

        .products-header h2 {
            font-size: 24px;
        }

        .products-wrapper {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .tab-item {
            padding: 0 5px;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
        }

        .icon-circle img {
            width: 30px;
            height: 30px;
        }

        .service-cards .raw-html-embed h3 {
            font-size: 18px;
        }

        .service-cards .raw-html-embed {
            padding: 30px 20px;
        }

        .industrial-info-item {
            font-size: 14px;
        }

        .partner-container {
            padding-top: 50px;
        }

        .partner-header h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .partner-item {
            flex: 0 0 150px;
            height: 50px;
            margin-right: 15px;
        }
    }

    /* 优化产品滑块在移动端的显示 */
    @media (max-width: 768px) {
        .products-track .raw-html-embed {
            margin: 0 15px;
            width: calc(100% - 30px);
            padding: 20px;
        }

        .product-info h4 {
            font-size: 20px;
        }

        .product-info p {
            font-size: 14px;
            -webkit-line-clamp: 4;
        }

        .learn-more {
            padding: 8px 16px;
            font-size: 13px;
        }
    }

    /* 优化合作伙伴滚动效果 */
    @media (max-width: 576px) {
        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(0);
            }
        }
    }