/* 详情页标题 */
.detail-title {
text-align: center;
margin-bottom: 30px;
}

.detail-title h1 {
color: #1A3A5C;
font-size: 32px;
margin-bottom: 10px;
}

.breadcrumb a:hover {
color: #C9A959;
}

.page-header {
display: none;
}

.project-detail {
background: #fff;
border: 1px solid #E0E0E0;
border-radius: 8px;
overflow: hidden;
}

.project-hero {
background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
height: 400px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 100px;
}

.project-body {
padding: 40px;
}

.project-meta {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #E0E0E0;
}

.meta-item {
text-align: center;
padding: 15px;
background: #F5F7FA;
border-radius: 8px;
}

.meta-label {
color: #999;
font-size: 13px;
margin-bottom: 5px;
}

.meta-value {
color: #1A3A5C;
font-weight: bold;
font-size: 16px;
}

.section {
margin-bottom: 30px;
}

.section h2 {
color: #1A3A5C;
font-size: 22px;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid #C9A959;
display: inline-block;
}

.section p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
}

.section ul {
margin: 15px 0;
padding-left: 25px;
}

.section li {
color: #666;
margin-bottom: 10px;
}

.project-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin: 30px 0;
}

.gallery-item {
background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
height: 150px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 40px;
}

.back-btn {
display: inline-block;
margin-top: 30px;
padding: 10px 25px;
background: #1A3A5C;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}

.back-btn:hover {
background: #2C5F8D;
}

@media (max-width: 768px) {

.banner {
height: 200px;
}

.project-body {
padding: 25px;
}
}
