/* 页面标题banner */
.page-banner {
    margin-top: 80px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
}

/* 基础服务设施 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
}

.service-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 14px;
}

.service-info p {
    margin-bottom: 5px;
}

/* 特色服务 */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    display: flex;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.service-card img {
    width: 300px;
    height: 250px;
    object-fit: cover;
}

.card-content {
    flex: 1;
    padding: 30px;
}

.card-content h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
}

.card-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.card-content li {
    color: #666;
    margin-bottom: 10px;
}

.book-btn {
    display: inline-block;
    background: #2c5530;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #1e3c22;
}

/* 租赁服务 */
.rental-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.rental-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.rental-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rental-info {
    padding: 20px;
}

.rental-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.rental-info p {
    color: #666;
    margin-bottom: 15px;
}

.rental-details {
    display: flex;
    justify-content: space-between;
    color: #2c5530;
    font-weight: bold;
}

/* 响应式布局 */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .rental-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
    }

    .rental-container {
        grid-template-columns: 1fr;
    }
} 