/* ========== 产品列表页样式 ========== */

/* 首页轮播横幅样式 - 覆盖全局style.css */
.body-inner .home-banner {
    height: 600px;
}

.body-inner .home-banner .swiper-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.body-inner .home-banner .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.body-inner .home-banner .container.banner-container {
    height: auto;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.body-inner .home-banner .box-slider-text {
    max-width: 800px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.body-inner .home-banner .box-slide-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease;
}

.body-inner .home-banner .box-slide-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease 0.2s both;
}

/* Banner按钮组 */
.body-inner .home-banner .banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.body-inner .home-banner .banner-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.body-inner .home-banner .banner-buttons .btn svg {
    width: 20px;
    height: 20px;
}

/* 点击咨询按钮 - 蓝色实心 */
.body-inner .home-banner .banner-buttons .btn-consult {
    background: #1366EE;
    color: #fff;
    border: 2px solid #1366EE;
    box-shadow: 0 4px 15px rgba(19, 102, 238, 0.4);
}

.body-inner .home-banner .banner-buttons .btn-consult:hover {
    background: #0d4bb5;
    border-color: #0d4bb5;
    box-shadow: 0 6px 20px rgba(19, 102, 238, 0.5);
    transform: translateY(-2px);
}

/* 获取报价按钮 - 透明边框 */
.body-inner .home-banner .banner-buttons .btn-quote {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.body-inner .home-banner .banner-buttons .btn-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* 响应式 - 轮播横幅 */
@media (max-width: 1000px) {
    .body-inner .home-banner {
        height: 400px;
    }

    .body-inner .home-banner .swiper-slide {
        height: 400px;
    }

    .body-inner .home-banner .box-slide-title {
        font-size: 32px;
    }

    .body-inner .home-banner .box-slide-description {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .body-inner .home-banner {
        height: 350px;
    }

    .body-inner .home-banner .swiper-slide {
        height: 350px;
    }

    .body-inner .home-banner .box-slide-title {
        font-size: 26px;
    }

    .body-inner .home-banner .box-slide-description {
        font-size: 13px;
        margin-top: 10px;
    }
}

/* 设备展示区域 */
.product-section {
    padding: 80px 0;
    background: #fff;
}

.product-container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-title {
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
}

.product-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #3D485D;
}

.product-subtitle .product-highlight {
    color: #0066FF;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-subtitle .product-highlight:hover {
    color: #0052D9;
}

/* 产品列表容器 */
.product-list-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px 36px;
}

/* 产品卡片 */
.property-item {
    width: 330px;
    height: 430px;
    background: #F7F8FC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4.44px 44.44px 0px rgba(43, 89, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 0 !important;
}

.property-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8.88px 60px 0px rgba(43, 89, 255, 0.15);
    background: linear-gradient(180deg, rgba(140, 186, 253, 0) 15%, #1366EE 100%);
}

.pi-pic {
    width: 240px;
    height: 234px !important;
    margin: 40px auto;
    background-color: #F7F8FC;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: block;

}

.pi-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pi-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: center;
    transition: transform 0.3s ease;
}

.pi-text h5 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-item:hover .pi-text h5 {
    transform: translateY(-10px);
}

.property-item:hover .pi-text h5 a {
    color: #fff;
}

.pi-text h5 a:hover {
    color: #fff;
}

.pi-text .desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.property-item:hover .pi-text .desc {
    color: rgba(255, 255, 255, 0.9);
}

/* 产品图标 */
.product-icon {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    transition: transform 0.3s ease;
}

.product-icon img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.property-item:hover .product-icon {
    display: block;
    transform: translateX(-50%) translateY(-10px);
}

/* 分页按钮 */
.general-btn {
    margin-top: 30px;
}

.general-btn .pagination {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
}

.general-btn .pagination li {
    list-style: none;
}

.general-btn .pagination li a,
.general-btn .pagination li span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.general-btn .pagination li a:hover,
.general-btn .pagination li.active span {
    background: #0066FF;
    border-color: #0066FF;
    color: #fff;
}

/* 响应式 */
@media (max-width: 1000px) {
    .product-section {
        padding: 60px 0;
    }

    .product-title {
        font-size: 28px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .pi-pic {
        height: 180px;
    }

    .pi-text h5 {
        font-size: 16px;
        min-height: 45px;
    }
}

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

    .product-title {
        font-size: 24px;
    }

    .pi-pic {
        height: 160px;
    }

    .pi-text {
        padding: 15px;
    }
}

/* ========== 解决方案区域样式 ========== */

.solution-section {
    height: 824px;
    background: linear-gradient(90deg, #F4F7FD 0%, #EDF7FF 100%);
    width: 100%;
}

.solution-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-title {
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.solution-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #3D485D;
    margin-bottom: 50px;
}

.solution-subtitle .solution-highlight {
    color: #0066FF;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.solution-subtitle .solution-highlight:hover {
    color: #0052D9;
}

/* 整馆定制区域 */
.museum-section {
    padding: 90px 0;
    background: transparent;
}

/* 整馆定制标题区域（无背景色） */
.museum-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* 为绝对定位的图片提供参考 */
}

.museum-title {
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.museum-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #3D485D;
    margin-bottom: 50px;
}

.museum-subtitle .museum-highlight {
    color: #0066FF;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.museum-subtitle .museum-highlight:hover {
    color: #0052D9;
}

/* 整馆定制内容区域（带背景和边框） */
.museum-content-box {
    width: 1440px;
    height: 548px;
    background: #F7F9FF;
    border: 2px solid #DBE7FF;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

/* 整馆定制溢出图片区域 */
.museum-image-wrap {
    position: absolute;
    top: 8%;
    right: -69.3%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.museum-image {
    height: auto;
    object-fit: contain;
}

/* 左侧内容区域 */
.museum-left-content {
    width: 42%;
    height: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 左侧内容标题 */
.museum-content-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #231815;
    line-height: 1.4;
    margin: 0 0 20px 0;
    text-align: left;
}

/* 左侧内容描述 */
.museum-content-desc {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-align: left;
}

/* 特性项容器 */
.museum-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* 特性项 */
.museum-feature-item {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.museum-feature-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.museum-feature-item span {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #231815;
    white-space: nowrap;
}

/* 立即咨询按钮 */
.museum-consult-btn {
    display: inline-block;
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #017DFF;
    text-decoration: none;
    margin-top: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.museum-consult-btn:hover,
.museum-consult-btn:focus,
.museum-consult-btn:active {
    color: #0056CC !important;
    text-decoration: none;
    transform: translateX(5px);
}

/* 轮播容器 */
.solution-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    gap: 60px;
}

/* 轮播箭头按钮 */
.solution-arrow {
    flex-shrink: 0;
    width: 120px;
    height: 51.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.solution-arrow:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.solution-arrow .carousel-arrow-icon {
    width: 120px;
    height: 51.5px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(40%) sepia(95%) saturate(3827%) hue-rotate(212deg) brightness(96%) contrast(95%);
}

/* 轮播视口 */
.solution-carousel-viewport {
    width: 1450px;
    overflow: hidden;
    margin: 0 auto;
}

/* 轮播轨道 */
.solution-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* 解决方案卡片 */
.solution-card {
    width: 340px;
    height: 494px;
    position: relative;
    flex-shrink: 0;
}

/* 卡片背景图 */
.solution-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solution-card-bg img {
    width: 100%;
    height: 105%;
    object-fit: cover;
    border-radius: 12px;
}

/* 卡片内容 */
.solution-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
}

/* 顶部图标区域（只保留图片） */
.solution-card-icon-wrap {
    width: 130px;
    height: 130px;
    margin: -30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.solution-card-icon-wrap img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.solution-card-text {
    flex: 1;
}

.solution-card-label {
    font-size: 18px;
    color: #3D485D;
    font-weight: 400;
    margin-bottom: 15px;
    display: block;
}

.solution-card-heading {
    font-size: 20px;
    font-weight: 400;
    color: #231815;
    margin: 0;
    line-height: 1.4;
}

.solution-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: #3D485D;
}

/* 右侧图片区域 */
.solution-card-right {
    width: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-right {
    transform: translateX(5px);
}

.solution-card-content-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-content-img {
    transform: scale(1.08);
}

/* 卡片底部编号和分割线（文字下方） */
.solution-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.solution-card-number {
    font-size: 18px;
    font-weight: 400;
    color: #0066FF;
    flex-shrink: 0;
}

.solution-card-divider {
    flex: 1;
    height: 0.7px;
    background: #231815;
    border-radius: 1px;
}

/* ========== 功能模块样式 ========== */

.feature-modules-section {
    background-color: #fff;
}

.feature-modules-container {
    max-width: 1440px;
    margin: 0 auto;
}

.feature-modules-card {
    background: #1366EE;
    border-radius: 8px;
    padding: 50px 60px;
    height: 270px;
}

.feature-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    height: 100%;
}

.feature-module-item {
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

.feature-module-item:hover {
    transform: translateY(-3px);
}

.feature-module-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: #1365EC;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-module-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-module-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.feature-module-desc {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* ========== 合作案例样式 ========== */
.cases-section {
    padding: 90px 0;
    background-color: #fff;
}

.cases-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.cases-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.cases-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #3D485D;
}

.cases-subtitle .cases-highlight {
    color: #0052D9;
    font-weight: 700;
}

.cases-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 345px);
    gap: 20px;
    justify-content: center;
}

.cases-card {
    width: 345px;
    height: 410px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cases-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cases-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cases-card-info {
    padding: 20px;
}

.cases-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(19, 102, 238, 0.1);
    color: #1366EE;
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    margin-bottom: 12px;
}

.cases-card-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0 0 12px 0;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.cases-card-date {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin: 0;
}

/* 空状态提示 */
.cases-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
    text-align: center;
}

/* ========== 服务流程样式 ========== */
.servce-section {
    padding: 90px 0;
    background-color: #F7F9FF;
}

.servce-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.servce-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.servce-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #3D485D;
}

.servce-subtitle .servce-highlight {
    color: #0052D9;
    font-weight: 700;
}

.servce-image {
    width: 1440px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 50px auto 0;
}