/* 内容页面专用样式 */

/* 发车仪式部分 */
.ceremony-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.ceremony-image {
    width: 100%;
    height: 400px;
    background: #e8f5e9;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.ceremony-image:before {
    content: '发车仪式图片';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ceremony-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="%232e7d32" stroke-width="2" stroke-dasharray="5,5"/><circle cx="50" cy="50" r="10" fill="%232e7d32" opacity="0.2"/></svg>') center center no-repeat;
    background-size: 100px;
    opacity: 0.3;
}

.figure-caption {
    text-align: center;
    color: #757575;
    font-size: 0.9rem;
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

/* 价值观部分 */
.values-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.value-item {
    background: #f1f8e9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 10px;
}

.value-item p {
    color: #616161;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .values-section {
        flex-direction: column;
    }
    
    .value-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 5% 30px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 20px 5%;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .ceremony-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 20px;
    }
    
    .highlight-text {
        padding: 15px;
    }
    
    .ceremony-section {
        padding: 25px;
    }
    
    .value-item {
        min-width: 100%;
    }
}
