/* 添加Font Awesome图标库引用 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* 产品页面头部样式 */
.product-header {
    width: 100%;
    height: 466px;
    position: relative;
    overflow: hidden;
}

.product-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top 0% center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.5)
    );
    pointer-events: none;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* 产品内容样式 */
.product-content {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* 产品图片样式 */
.product-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
}

/* 需求背景样式 */
.demand-background {
    background-color: #f9f9f9; /* 背景颜色 */
    padding: 20px; /* 内边距 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    margin-top: 20px; /* 上边距 */
}

.demand-no-background {
    background-color: #fff; /* 背景颜色 */
    padding: 20px; /* 内边距 */
    box-shadow: none; /* 阴影效果 */
    margin-top: 20px; /* 上边距 */
}

.demand-background .section-title {
    font-weight: bold; /* 加粗标题 */
    margin-bottom: 10px; /* 下边距 */
}

.demand-background p {
    margin: 5px 0; /* 段落上下边距 */
}

.module-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    margin: 0;
    margin-bottom: 25px;
}

/* 解决方案模块样式 */
.solution-block {
    align-items: center; /* 垂直居中 */
    margin-bottom: 20px; /* 下边距 */
    border: 1px solid #edeaea;
}

.solution-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    margin: 5px 10px;
    margin-bottom: 25px;
}

.solution-block > p {
    margin: 0px 20px;
    text-indent: 2em;
}

.solution-img {
    width: 50%; /* 图片宽度 */
    height: auto; /* 自适应高度 */
    margin-right: 20px; /* 右边距 */
}

.solution-text {
    width: 50%; /* 文本宽度 */
}

.solution-text > p{
    color: #848484;
    margin-top: 25px;
}