/* 主要内容区域样式 */
.agency-main {
    padding-top: 80px; /* 为固定定位的header留出空间 */
}

/* Banner区域样式 */
.agency-banner {
    background-color: #fff;
    padding: 60px 0;
}

.agency-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 左侧图片样式 */
.office-showcase {
    flex: 0 0 50%;
    max-width: 50%;
}

.office-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.office-image img {
    height: 307px;
    width: 600px;
    display: block;
    transition: transform 0.3s ease;
}

.office-image:hover img {
    transform: scale(1.05);
}

/* 右侧信息样式 */
.agency-info {
    flex: 0 0 45%;
    max-width: 45%;
}

.agency-info h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-info {
    margin-bottom: 30px;
}

.phone {
    font-size: 32px;
    color: #b38d54;
    margin-bottom: 15px;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.location-icon {
    width: 20px;
    height: 20px;
    background: url('../images/icons/location.png') no-repeat center;
    background-size: contain;
    margin-top: 4px;
}

.enter-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b38d54;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.enter-btn:hover {
    background-color: #9a7945;
    transform: translateY(-2px);
}

/* 内容区域样式 */
.agency-content {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .agency-content-wrapper {
        padding: 0 20px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .agency-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .office-showcase,
    .agency-info {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .agency-info {
        text-align: center;
    }

    .address {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .agency-banner {
        padding: 40px 0;
    }

    .agency-info h1 {
        font-size: 28px;
    }

    .phone {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .agency-info h1 {
        font-size: 24px;
    }

    .phone {
        font-size: 20px;
    }

    .address {
        font-size: 14px;
        flex-direction: column;
        align-items: center;
    }

    .enter-btn {
        width: 100%;
        text-align: center;
    }
} 