@charset "UTF-8";
/* 业主直租 */

/* Banner 区域 */
.developer-hero {
    background: url('../images/yezhuzhizu_banner.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 8rem 0;
    position: relative;
    background-color: #0066cc;
    margin-top: 80px;
}

.developer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 33, 99, 0.7);
    z-index: 1;
}

.developer-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 80%;
}

.developer-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.developer-hero p {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
}

/* 页面面包屑 */
.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}
.page-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-breadcrumb a:hover {
    color: #0066cc;
}
.page-breadcrumb .breadcrumb-sep {
    color: #ccc;
    font-size: 0.8rem;
}
.page-breadcrumb .current {
    color: #999;
}

/* 通用区块 */
.section {
    padding: 5rem 0;
    background-color: #fff;
}

.section:nth-child(even) {
    background-color: #f8fafc;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.8rem;
    width: 3rem;
    height: 0.25rem;
    background-color: #0066cc;
    transform: translateX(-50%);
}

/* 直租优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.advantage-icon {
    width: 4rem;
    height: 4rem;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: #0066cc;
    font-size: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* 可租房源 */
.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.unit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.8rem;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.unit-card.featured {
    border-color: #0066cc;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
}

.unit-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4d4f;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.unit-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.unit-header h3 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.unit-size {
    display: inline-block;
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 600;
}

.unit-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.unit-features li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.unit-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009944;
    font-weight: bold;
}

.unit-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #0066cc;
    color: #fff;
    padding: 0.9rem 0;
    border-radius: 0.4rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.unit-btn:hover {
    background: #0052a3;
}

@media (max-width: 992px) {
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .units-grid {
        grid-template-columns: 1fr;
    }
}

/* 租赁流程 */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #d1e7ff;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .process-steps::before {
        display: none;
    }
    .step {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .step {
        width: 100%;
    }
}

/* 最新房源 */
.latest-properties {
    background-color: #f8fafc;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.property-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.property-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-img img {
    transform: scale(1.08);
}

.property-content {
    padding: 1rem;
}

.property-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.property-meta span:first-child {
    color: #666;
}

.property-price {
    color: #ff4d4f;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA 区域 */
.cta {
    background: linear-gradient(135deg, #003399 0%, #0066cc 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    background-color: #009944;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 153, 68, 0.3);
}

/* 响应式 */
@media (max-width: 992px) {
    .developer-hero h1 {
        font-size: 2.5rem;
    }
    .developer-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .developer-hero {
        padding: 5rem 0;
    }
    .developer-hero h1 {
        font-size: 2rem;
    }
    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
}
