/* 主要内容区域 */
.project-detail-content {
    padding: 80px 60px;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* 流程展示区域 */
.process-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 60px auto;
    max-width: 600px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;  /* 添加这行 */
}

.process-number {
    font-size: 72px;
    font-weight: 100;
    color: #e0e0e0;
    line-height: 1;
    min-width: 100px;
    margin-bottom: 20px;
}

.process-label {
    font-size: 24px;
    color: #333;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.clavo-description {
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 12px;
    
    margin: 0 auto;
}

.clavo-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.highlight{
    font-weight: bold;

}

.research-slide {
    position: relative;
    width: 100vw;
    margin: 0 -60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;    /* 完整显示，保持比例 */
    display: block;
}

.research-description {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    max-width: 80%;
    margin-top: -200px;
}

.research-description p {
    
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/*issue 部分*/
.issue-section {
    margin-left: 10px;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
   
}

.issue-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.issue-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/*paint point部分*/
.paint-point-section {
    padding: 1px 40px;
   
}

.paint-point-title {
    font-size: 90px;
    font-weight: 100;
    color: #e8e8e8;
    text-align: left;
    letter-spacing: -2px;
    font-weight: bold;
}

.three-images-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.three-images-container img {
    width: calc(33.33% - 14px);
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
}

.screen{
    margin-top: 20px;
    margin-bottom: 20px;
}
.why-clavo{
    margin-left: 40px;
    
}

.why-clavo h2{
    font-size: 18px;
    
}



.process-gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;                    /* 行与行之间的间隔 */
    max-width: 800px;
    margin: 40px auto;
}

.gallery-row {
    display: flex;
    gap: 8px;                    /* 每张图片之间的间隔 */
}

.process-img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    border: none;
    border-radius: 4px;          /* 可选：添加圆角 */
}

/* 让每行图片大小稍有变化 */
.row-1 .process-img { height: 180px; }
.row-2 .process-img { height: 220px; }
.row-3 .process-img { height: 200px; }





.final-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1800px;        /* 增大最大宽度 */
    margin: 40px auto;
    padding: 0 40px;          /* 左右只留40px白 */
}

.final-img {
    width: 100%;
    height: 725px;            /* 增大高度保持比例 */
    object-fit: cover;
    border-radius: 20px;      /* 四角圆角 */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* 响应式设计 */
@media (max-width: 768px) {
    .project-detail-content {
        padding: 40px 20px;
    }
    
    .process-showcase {
        gap: 40px;
    }
    
    .process-number {
        font-size: 48px;
        min-width: 70px;
    }
    
    .process-label {
        font-size: 18px;
    }
}


.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    
}

.column {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: transparent;
    border-radius: 8px;
    
}

.column h2 {
    font-size: 24px;
    font-weight: 700;
    color: #55a8a8;
    margin-bottom: 16px;
    line-height: 1.3;
}

.column p {
    font-size: 16px;
    color: #55a8a8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .column {
        padding: 16px;
    }
    
    .column h2 {
        font-size: 20px;
    }
    
    .column p {
        font-size: 14px;
    }
}