.lczdh-page2{
    width: 100%;
    min-height: 80vh;
    padding: 0 var(--content-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
.lczdh-page2-title{
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #1e1e21;
    padding-top: clamp(50px, 8vh, 100px);
    margin-bottom: var(--section-spacing);
}
.lczdh-page2-text{
    width: 100%;
    max-width: var(--max-width);
    text-align: center;
    margin-bottom: var(--section-spacing);
}
.lczdh-page2-text-head{
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #1f2eff;
    margin-bottom: 20px;
}
.lczdh-page2-text-body{
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #000;
}
.lczdh-page2-content{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: var(--section-spacing) 0;
    overflow-x: auto;
}
.lczdh-page2-content-image{
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    height: 355px;
    background-image: url(../../images/lczdh/玻璃\(1\).png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}
.lczdh-page2-content-image:hover {
    transform: translateY(-10px);
}
.lczdh-page2-content-image-head{
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.lczdh-page2-content-image-body{
    width: 80%;
    max-width: 250px;
    text-align: center;
    line-height: 1.6;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: #000;
}
/* 响应式布局 */
@media (max-width: 768px) {
    .lczdh-page2-content {
        padding: 20px;
        justify-content: flex-start;
    }
    
    .lczdh-page2-content-image {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
    }
}

/* 添加滚动条样式 */
.lczdh-page2-content::-webkit-scrollbar {
    height: 8px;
}

.lczdh-page2-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.lczdh-page2-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.lczdh-page2-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}