.data-service-page {
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: #333;
    padding-bottom: 48px;
}

/* Banner Section - 复制自 equitiesGood.css */
.data-service-hero {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.data-service-hero-overlay {
    width: 100%;
    height: 100%;
}

.data-service-hero-overlay img {
    object-fit: cover;
}

.data-service-hero-overlay-inner {
    position: absolute;
    top: 122px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.data-service-hero-overlay-inner h1 {
    margin-bottom: 36px;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.data-service-hero-overlay-inner p {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

/* Section Common Styles - 复制自 equitiesGood.css */
.data-service-section {
    padding: 26px 0;
}

.data-service-title {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.data-service-sub {
    margin: 22px 0 0;
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* 数据监测与管理自动化 Section */
.data-monitor {
    background: #fff;
    padding: 40px 0 60px;
}

.data-monitor-content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.data-monitor-left {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-monitor-left img {
    max-width: 100%;
    height: auto;
}

.data-monitor-right {
    flex: 1;
}

.data-monitor-slogan {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.data-monitor-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.data-monitor-card {    
    flex: 0 0 33.3%;
    height: 239px;
    /* width: 160px; */
    /* background: linear-gradient(180deg, #4a9eff 0%, #1a7de9 100%); */
    background: url(../../assets/image/pc/dataService/blue-bg.png) no-repeat center center;
    background-size: contain;
    border-radius: 8px;
    padding: 20px 15px;
    color: #fff;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;    
    padding: 66px 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 10px;
}

.data-monitor-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* 多维度数据分析与可视化 Section */
.data-visualization {
    /* background: #f3f4f7; */
    padding: 50px 0 80px;
}

.data-viz-swiper-wrap {
    margin-top: 40px;
    position: relative;
}

.data-viz-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.data-viz-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.data-viz-slide {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.data-viz-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.data-viz-caption {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    background: #1a1a1a;
    margin: 0;
}

/* Swiper Navigation */
.data-viz-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.data-viz-prev,
.data-viz-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.data-viz-prev {
    left: 30px;
}

.data-viz-next {
    right: 30px;
}

.data-viz-prev:hover,
.data-viz-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.data-viz-prev::after,
.data-viz-next::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

.data-viz-prev::after {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.data-viz-next::after {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Swiper Pagination */
.data-viz-pagination {
    margin-top: 30px;
    text-align: center;
}

.data-viz-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
    background: #d0d5df;
    opacity: 1;
    transition: all 0.3s ease;
}

.data-viz-pagination .swiper-pagination-bullet-active {
    background: #0148A4;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .data-monitor-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .data-monitor-left,
    .data-monitor-right {
        flex: none;
        width: 100%;
    }
    
    .data-monitor-cards {
        flex-wrap: wrap;
    }
    
    .data-viz-prev {
        left: 10px;
    }
    
    .data-viz-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .data-service-page {
        min-width: auto;
    }
    
    .data-service-hero-overlay-inner h1 {
        font-size: 28px;
    }
    
    .data-service-hero-overlay-inner p {
        font-size: 16px;
    }
    
    .data-service-title {
        font-size: 24px;
    }
    
    .data-service-sub {
        font-size: 14px;
    }
    
    .data-monitor-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .data-monitor-card {
        width: 100%;
        max-width: 280px;
    }
    
    .data-viz-prev,
    .data-viz-next {
        width: 40px;
        height: 40px;
    }
}
