/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.highlight {
    color: #9333ea;
}

.button {
    display: inline-block;
    background-color: #9333ea;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #7e22ce;
}

/* 头部样式 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #9333ea;
}

/* 英雄区域 */
.hero {
    position: relative;
    height: 70vh;
    background-image: url('https://media.gettyimages.com/id/1331465591/photo/3d-render-of-a-luxury-hotel-swimming-pool.jpg?s=612x612&w=gi&k=20&c=064FLlL7FKDbfRdsMJ7TgvOWP5dCy3Pn9xmcENR2374=');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero .content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 价格部分 */
.pricing {
    padding: 60px 5%;
    text-align: center;
    background-color: white;
}

.pricing h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.price-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.price-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

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

.price-card.featured {
    background-color: #9333ea;
    color: white;
}

.price-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 模特部分 */
.models {
    padding: 60px 5%;
    background-color: #f4f4f4;
    text-align: center;
}

.models h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.models-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.model-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.model-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.model-info {
    padding: 20px;
}

.model-info h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.model-info ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

/* 联系部分 */
.contact {
    padding: 60px 5%;
    text-align: center;
    background-color: white;
}

.contact h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.info-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.info-item h3 {
    margin-bottom: 15px;
    color: #9333ea;
}

/* 页脚 */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .price-card, .model-card, .info-item {
        min-width: 100%;
    }
}
