/* 智能洗选内容区域样式 */
#znxx {
    padding: 60px 0;
    background: #fff;
}

.znxx-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.znxx-containers {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.znxx-content {
    flex: 0 0 61%;
    max-width: 61%;
    min-width: 0;
}

.znxx-image {
    flex: 0 0 560px;
    max-width: 560px;
    margin-top: -30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.znxx-image img {
    width: 500px;
    height: 500px;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    transform-origin: top center;
}

.znxx-image img:hover {
    transform: scale(1.05);
}

/* 标题区域 */
.znxx-title-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.znxx-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.znxx-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 80px;
    font-weight: 700;
    color: #0052D9;
    z-index: 1;
    white-space: nowrap;
    transform: translate(5px, -64px);
    opacity: 0.05;
    font-family: Arial, sans-serif;
}

/* 导航标签 */
.znxx-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    font-size: 24px;
    font-weight: 400;
}

.znxx-nav-item {
    color: #000;
}

.znxx-nav-divider {
    color: #ddd;
    font-weight: 300;
}

/* 文本内容 */
.znxx-text {
    font-size: 18px;
    line-height: 36px;
    font-weight: 400;
    color: rgb(0, 0, 0, 0.6);
    margin-bottom: 106px;
    text-align: justify;
}

/* 功能图标区域 */
.znxx-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.znxx-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 0 0 auto;
    min-width: 196px;
}

.znxx-feature-icon {
    position: relative;
    width: 196px;
    height: 62px;
    display: flex;
    align-items: center;

}

.znxx-feature-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.znxx-feature-label {
    position: relative;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-left: 16px;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .znxx-container {
        flex-direction: column;
        gap: 40px;
    }

    .znxx-content {
        flex: 1;
        max-width: 100%;
    }

    .znxx-image {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .znxx-title {
        font-size: 40px;
    }

    .znxx-title-bg {
        font-size: 60px;
    }

    .znxx-features {
        justify-content: center;
    }

    .znxx-feature-item {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .znxx-container {
        padding: 0 20px;
        gap: 40px;
    }

    .znxx-title {
        font-size: 32px;
    }

    .znxx-title-bg {
        font-size: 48px;
        transform: translate(30px, -5px);
    }

    .znxx-nav {
        font-size: 16px;
        gap: 12px;
    }

    .znxx-text {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .znxx-features {
        gap: 20px;
    }

    .znxx-feature-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 100px;
    }

    .znxx-feature-icon {
        max-width: 100px;
    }

    .znxx-feature-label {
        font-size: 12px;
    }
}

/* 解决方案切换 */
.trusted-space-section {
    position: relative;
    display: flex;
}

.trusted-space-section .trusted-space-inner {
    display: none;
    flex-direction: column;
}

.trusted-space-section .trusted-space-inner.active {
    display: flex;
}

/* 智能装备按钮滑动 */
.equipment-switch {
    overflow: hidden;
    position: relative;
    gap: 0;
}

.equipment-switch .szzf-product-switch-track {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform 0.35s ease;
    will-change: transform;
}

.equipment-switch .szzf-product-switch-track button {
    flex: 0 0 var(--equipment-button-width, 200px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 智能装备 trusted-space-section 样式 */
.equipment-trusted-section {
    padding-top: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1440px;
    position: relative;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* 智能装备产品展示布局 - 所有布局都使用绝对定位重叠，active时也保持绝对定位避免布局跳动 */
.equipment-product-layout {
    display: flex;
    flex: 1;
    position: absolute;
    top: 0;
    left: 220px;
    right: 0;
    top: 50px;
    width: auto;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.equipment-product-layout.active {
    position: absolute;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.equipment-product-content-wrapper {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    width: 100%;
}

/* 缩略图导航 */
.equipment-thumbnail-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 120px;
    position: relative;
    margin-right: 40px;
}

.equipment-thumbnail-container {
    width: 100%;
    height: 470px;
    overflow: hidden;
    position: relative;
    padding: 8px 10px;
    box-sizing: border-box;
}

.equipment-thumbnail-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.equipment-thumbnail-item {
    width: 100%;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transform: scale(1);
}

.equipment-thumbnail-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.equipment-thumbnail-item.active {
    border-color: #095add;
    box-shadow: 0 0 0 1px rgba(0, 82, 217, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    background: #f8f9ff;
}

.equipment-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.equipment-thumbnail-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: rgb(46, 101, 253);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    flex-shrink: 0;
    font-weight: 600;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
}

.equipment-thumbnail-arrow:hover {
    background: rgba(46, 101, 253, 0.95);
      box-shadow: 0 4px 12px rgba(71, 142, 248, 0.15);
      transform: scale(1.1);
}

.equipment-thumbnail-arrow:active {
    transform: scale(0.95);
}

.equipment-thumbnail-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.equipment-thumbnail-arrow svg {
    width: 20px;
    height: 20px;
}

.equipment-product-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    width: 930px;
    height: 582px;
    display: flex;
    align-items: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.equipment-product-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.equipment-product-right {
    flex: 0 0 620px;
    max-width: 620px;
    position: relative;
    z-index: 1;
    display: block;
    order: 2;
}

.equipment-product-left {
    flex: 0 0 500px;
    max-width: 500px;
    position: relative;
    height: 500px;
    order: 1;
    opacity: 0;
    transform: translateX(0px);
    transition: opacity 0.2s ease 0.1s;
}

.equipment-product-layout.active .equipment-product-left {
    opacity: 1;
    transform: translateX(0);
}

/* 幻灯片编号 */
.equipment-slide-number {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
}

.equipment-slide-number .slide-current {
    color: #0052D9;
    font-weight: 600;
    font-size: 60px;
}

.equipment-slide-number .slide-total {
    color: #999;
    font-weight: 400;
    margin-left: 2px;
}

/* 产品标题 */
.equipment-product-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

/* 产品描述 */
.equipment-product-desc {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin: 0 0 36px 0;
    text-align: justify !important;
}

/* 规格列表 */
.equipment-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-spec-item {
    font-size: 16px;
    line-height: 29px;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.equipment-spec-item .spec-label {
    font-weight: 600;
    min-width: 100px;
    padding-left: 10px;
    flex-shrink: 0;
    color: #1754c5;
}

.equipment-spec-item .spec-value {
    color: #666;
    flex: 1;
}

.spec-sub-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-sub-list li {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.spec-label::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0052D9;
    font-weight: bold;
}

.accuracy-spec {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #333;
}

.accuracy-header {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.accuracy-col-label {
    min-width: 110px;
    color: #666;
    font-weight: 400;
}

.accuracy-header-value {
    display: flex;
    align-items: center;
    gap: 30px;
}

.accuracy-rows {
    margin-left: 62px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 265px;
}

.accuracy-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #333;
}

.accuracy-value {
    text-align: right;
}

/* 产品图片区域 */
.equipment-product-image-wrapper {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 500px;
    background: url('/igalaxy/images/znxx/znzb_bg1.png') center/cover no-repeat;
    background-size: 100% 100%;
}


.equipment-product-image {
    position: relative;
    z-index: 2;
    width: auto;
    height: 300px;
    object-fit: contain;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .equipment-trusted-section {
        flex-direction: column;
        gap: 30px;
    }

    .equipment-thumbnail-nav {
        width: 100%;
        margin-right: 0;
        flex-direction: row;
        justify-content: center;
        order: 2;
    }

    .equipment-thumbnail-container {
        height: 120px;
        width: auto;
    }

    .equipment-thumbnail-track {
        flex-direction: row;
    }

    .equipment-thumbnail-arrow-up,
    .equipment-thumbnail-arrow-down {
        transform: rotate(-90deg);
    }

    .equipment-product-layout {
        order: 1;
        width: 100%;
    }

    .equipment-product-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .equipment-product-right,
    .equipment-product-left {
        flex: 1;
        max-width: 100%;
    }

    .equipment-image-bg-circle {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .equipment-product-layout {
        padding: 0 15px;
        gap: 30px;
    }

    .equipment-slide-number {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .equipment-product-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .equipment-product-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .equipment-spec-item {
        font-size: 14px;
        line-height: 28px;
        flex-direction: column;
    }

    .equipment-spec-item .spec-label {
        min-width: auto;
        margin-bottom: 4px;
    }

    .spec-sub-list {
        margin-left: 0;
        margin-top: 8px;
    }

    .equipment-image-bg-circle {
        width: 400px;
        height: 400px;
    }
}

/* 典型案例轮播样式 */
#dxal .carousel-wrapper-outer {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#dxal .carousel-container {
    position: relative;
    overflow: hidden;
    width: 1440px;
    padding: 0;
    height: 600px;
    display: flex;
    align-items: center;
    flex: 1;
}

/* 轮播图箭头按钮 */
#dxal .carousel-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    flex-shrink: 0;
}
.trusted-space-carousel-arrow{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 12px 25px rgba(15, 27, 56, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #8c8d91;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trusted-space-carousel-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 27, 56, 0.2);
}
#dxal .carousel-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

#dxal .carousel-arrow:active {
    transform: scale(0.95);
}

#dxal .carousel-arrow svg {
    width: 24px;
    height: 24px;
}

#dxal .carousel-wrapper {
    display: flex;
    transition: transform 0.4s linear;
    gap: 30px;
    align-items: center;
    height: 100%;
}

#dxal .card-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.4s ease;
    position: relative;
    transform-origin: center center;
    will-change: transform, height;
    background: #fff;
    overflow: hidden;
}

#dxal .card-item:first-of-type:hover:not(.cloned),
#dxal .card-item:last-of-type:hover:not(.cloned) {
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.15);
}

#dxal .card-item:not(:first-of-type):not(:last-of-type):hover:not(.cloned) {
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
}

#dxal .card-item.cloned {
    /* 保持可点击，避免无缝循环时被禁用 */
    pointer-events: auto;
}

#dxal .card-item.visible {
    opacity: 1;
}

#dxal .card-item.invisible {
    opacity: 0.5;
    transform: scale(0.85);
    height: 499px;
}

#dxal .card-item.side-card {
    opacity: 0.8;
}
#dxal .card-item.side-card .card-desc{
    font-size: 13px;
}
#dxal .card-item.side-card .card-title{
    font-size: 20px;
}
#dxal .card-item.side-card:hover {
    /* transform: scale(1.0) !important; */
    opacity: 0.8;
}

#dxal .card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 30px 45px 30px;
    box-sizing: border-box;
}

#dxal .card-image {
    width: calc(100% + 60px);
    height: 60%;
    margin: -30px -30px 20px -30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#dxal .card-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.4;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

#dxal .card-desc {
    font-size: 14px;
    color: #333;
    line-height: 27px;
    margin: 0;
    flex: 1;
    text-align: justify;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

@media (max-width: 1440px) {
    #dxal .carousel-wrapper-outer {
        max-width: 100%;
        padding: 0 20px;
    }

    #dxal .carousel-container {
        width: 100%;
        max-width: 1440px;
    }
}

@media (max-width: 768px) {
    #dxal .carousel-wrapper-outer {
        gap: 10px;
        padding: 0 10px;
    }

    #dxal .carousel-container {
        height: 400px;
    }

    #dxal .card-content {
        padding: 20px;
    }

    #dxal .card-title {
        font-size: 18px;
    }

    #dxal .card-desc {
        font-size: 12px;
    }

    #dxal .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    #dxal .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

#dxal .card-title {
    font-size: 22px;
}

#dxal .card-desc {
    font-size: 14px;
}

#dxal .card-image {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1);
}