/**
 * TAG项目页面特定样式
 * 补充核心样式，针对TAG项目页面的定制样式
 */

/* ===== 横幅样式 ===== */
.banner {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../img/anli/top.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    max-width: 600px;
}

/* ===== 项目信息样式 ===== */
.project-info {
    background-color: white;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.project-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.project-info p {
    color: #666;
    font-size: 16px;
}

.client-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

/* ===== 图片展示样式 ===== */
.gallery {
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border: 4px solid #000;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== 返回按钮样式 ===== */
.back-btn {
    display: block;
    width: 100%;
    margin: 40px auto;
    padding: 12px 20px;
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.back-btn:hover {
    background-color: #333;
    color: white;
}

/* ===== 响应式设计 - TAG特定 ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .project-info h2 {
        font-size: 24px;
    }
}