/* 垂直布局容器 - 与其他页面的水平flex布局区分 */
.quality-control-vertical-container {
    position: relative;
    padding: 10vh 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* 图片容器 - 全屏宽度设计 */
.quality-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* 主图片样式 - 覆盖容器并添加过渡效果 */
.quality-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

/* 图片悬停效果 - 与其他页面的缩放方向不同 */
.quality-image-container:hover .quality-main-image {
    transform: scale(1.03) rotate(0.5deg);
}

/* 图片叠加标题 - 新增元素，其他页面没有类似设计 */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 30px 20px;
}

.overlay-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 内容卡片 - 带阴影的悬浮效果 */
.quality-content-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* 文字内容样式 - 与其他页面的文本排版不同 */
.content-inner p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
}

/* 文本装饰元素 - 新增左侧线条装饰 */
.content-inner p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 18px;
    background: #e74c3c;
    border-radius: 2px;
}

/* 响应式调整 - 与其他页面断点不同 */
@media screen and (max-width: 900px) {
    .quality-image-container {
        height: 320px;
    }
    .overlay-title {
        font-size: 2rem;
    }
    .quality-content-card {
        padding: 30px 20px;
        top: -40px;
    }
}
