
/* --- Automated Production Line QC Scope (全屏背景版) --- */
.hz-qc-scope {
    --hz-orange: #ec682e;
    --hz-orange-hover: #d3541c;
    --hz-blue-dark: #002B49;
    --text-dark: #333333;
    --text-gray: #555555;
    
    background-color: #f8f9fb; 
    padding: 100px 0; /* 上下间距保持，左右设为0 */
    overflow: hidden;

    /* 核心代码：强制背景色全屏显示 */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.hz-qc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse; 
    padding: 0 20px; /* 内容保持边距 */
}

/* 文字区域 */
.hz-qc-right { flex: 1; }

.hz-qc-right .hz-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 34px;
    color: var(--hz-blue-dark);
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.hz-qc-right .hz-content-box {
    border-left: 4px solid var(--hz-orange);
    padding-left: 30px;
    margin-bottom: 35px;
}

.hz-qc-right .hz-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* 按钮样式 */
.hz-qc-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--hz-orange);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
}

.hz-qc-btn:hover { background-color: var(--hz-orange-hover); }

/* 图片区域 */
.hz-qc-left {
    flex: 1.2;
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.hz-qc-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hz-qc-left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--hz-orange);
    z-index: 5;
}

.hz-qc-label {
    position: absolute;
    bottom: 40px;
    left: 30px;
    background: rgba(0, 43, 73, 0.85); 
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    backdrop-filter: blur(8px);
    z-index: 10;
}

/* 响应式适配 */
@media screen and (max-width: 992px) {
    .hz-qc-scope {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        left: 0;
        transform: none;
    }
    .hz-qc-container { flex-direction: column; text-align: left; }
    .hz-qc-left { width: 100%; height: 350px; }
}
