/* 主容器样式 */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero区域样式 */
.website-hero {
    background: linear-gradient(135deg, #045cb7 0%, #0070e0 100%);
    border-radius: 20px;
    padding: 30px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.svg') no-repeat center right;
    opacity: 0.1;
    z-index: 1;
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

.website-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.website-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.website-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* 价格和操作区域样式 */
.price-action-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-info {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.price-value::before {
    font-size: 20px;
    margin-right: 4px;
    font-weight: 500;
    opacity: 0.8;
}

/* 按钮样式 */
.action-buttons {
    display: flex;
    gap: 12px;
    min-width: 240px;
}

.btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: #fff;
    color: #045cb7;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* 信息容器样式 */
.info-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.info-main {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.info-section {
    padding: 35px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.section-title i {
    color: #045cb7;
    font-size: 24px;
}

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

.info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.info-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: #1a365d;
    font-weight: 500;
}

/* 经纪人卡片样式 */
.broker-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    padding: 30px;
    position: sticky;
    top: 80px;
    min-width: 280px;
}

/* 经纪人卡片相关样式 */
.broker-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.broker-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.broker-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.broker-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.broker-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.broker-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.contact-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #045cb7;
    color: white;
    border-radius: 8px;
    margin-right: 12px;
    font-size: 16px;
}

.contact-item a,
.contact-item span {
    color: #1a365d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.contact-item a:hover {
    color: #045cb7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.stat-value {
    font-size: 22px;
    font-weight: 600;
    color: #045cb7;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

/* 购买流程样式 */
.process-section {
    margin-bottom: 40px;
    padding: 60px 0;
    position: relative;
    background: #fff;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.process-subtitle {
    font-size: 16px;
    color: #64748b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #045cb7;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.step-number {
    background: linear-gradient(135deg, #045cb7, #0070e0);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(4, 92, 183, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 24px;
    color: #045cb7;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .broker-card {
        position: static;
        margin-top: 30px;
    }

    .contact-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .website-hero {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .price-action-section {
        width: 100%;
        flex-direction: column;
    }

    .price-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .action-buttons {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .process-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 0 15px;
        margin: 20px auto;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 10px;
    }

    .process-card {
        padding: 20px;
    }
}

/* 确保header容器始终可见 */
#header {
    min-height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
} 