* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f4ec;
    background-image: linear-gradient(to bottom, rgba(248, 244, 236, 0.9), rgba(248, 244, 236, 0.9)), 
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23d4af37" opacity="0.1" d="M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z M50,20 C63.254,20 74,30.746 74,44 C74,57.254 63.254,68 50,68 C36.746,68 26,57.254 26,44 C26,30.746 36.746,20 50,20 Z"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(to right, #8b0000, #4a0000);
    color: #f8f4ec;
    padding: 20px 0;
    position: relative;
    border-bottom: 8px solid #d4af37;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .domain {
    font-size: 1.2rem;
    color: #d4af37;
}

.cta-button {
    background-color: #ffcc00;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #b8860b;
}

.cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 主横幅 */
.hero {
    background: linear-gradient(rgba(75, 0, 0, 0.85), rgba(75, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1549187774-b4e9b0445b41?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: #f8f4ec;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 5px solid #d4af37;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* 内容区域 */
section {
    padding: 40px 0;
    border-bottom: 1px solid #e0d6c2;
}

.section-title {
    font-size: 2rem;
    color: #8b0000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4af37;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 8px;
    background-color: #8b0000;
    bottom: -3px;
    left: 0;
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: #8b0000;
    font-weight: 600;
}

/* 优势部分 */
.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.advantage-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    border-top: 5px solid #d4af37;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 15px;
}

.advantage-card h3 {
    color: #4a0000;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* 模特展示 */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.model-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-img {
    width: 100%;
    height: 300px;
    background-color: #e0d6c2;
    background-size: cover;
    background-position: center;
}

.model-info {
    padding: 15px;
    text-align: center;
}

.model-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #4a0000;
    margin-bottom: 8px;
}

.model-details {
    font-size: 0.9rem;
    color: #666;
}

/* 服务类型 */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.service-item {
    width: 48%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #d4af37;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* 联系方式 */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.telegram {
    color: #0088cc;
}

.whatsapp {
    color: #25D366;
}

/* 评价部分 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
    position: relative;
    border: 1px solid #e0d6c2;
}

.testimonial::before {
    content: "\201C";
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.5;
    font-family: serif;
}

.testimonial p {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #8b0000;
    text-align: right;
}

/* FAQ */
.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background-color: #f5f0e6;
    font-weight: 600;
    color: #4a0000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 页脚 */
footer {
    background: linear-gradient(to right, #4a0000, #2a0000);
    color: #f8f4ec;
    padding: 40px 0 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #5a0000;
    color: #aaa;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-link {
        width: 100%;
        max-width: 300px;
    }
}

/* 特殊引流区域 */
.main-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(to right, #8b0000, #4a0000);
    color: #fff;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.main-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.main-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.main-cta-button {
    background-color: #ffcc00;
    color: #000;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid #b8860b;
    margin-bottom: 20px;
}

.main-cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.keyword-emphasis {
    font-weight: 700;
    color: #d4af37;
    background-color: rgba(139, 0, 0, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}
