* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c62828;
    --secondary-color: #f9a825;
    --accent-color: #2e7d32;
    --light-bg: #fff9f4;
    --dark-text: #333;
    --light-text: #666;
    --border-color: #d4a574;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Noto Serif SC', serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23fff9f4"/><path d="M0,0 L100,100" stroke="%23d4a574" stroke-width="0.5"/><path d="M100,0 L0,100" stroke="%23d4a574" stroke-width="0.5"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30,5 L40,25 L60,30 L40,35 L30,55 L20,35 L0,30 L20,25 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.logo-text h1 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.domain {
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 引流按钮区域 */
.cta-section {
    background-color: white;
    padding: 30px 0;
    text-align: center;
    border-bottom: 3px solid var(--border-color);
    margin-bottom: 40px;
}

.cta-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
}

.primary-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 25px;
    box-shadow: 0 6px 0 #b8860b;
    transition: all 0.3s ease;
    border: 3px solid #333;
    font-family: 'Ma Shan Zheng', cursive;
    letter-spacing: 2px;
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 0 #b8860b;
    background-color: #ffc107;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-link.telegram {
    background-color: #0088cc;
    color: white;
}

.social-link.whatsapp {
    background-color: #25D366;
    color: white;
}

/* 内容区域通用样式 */
section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M60,10 L70,30 L90,35 L70,40 L60,60 L50,40 L30,35 L50,30 Z" fill="%23f9a825" opacity="0.1"/></svg>');
}

.section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: "※";
    position: absolute;
    right: 0;
    color: var(--accent-color);
}

/* 平台介绍 */
.intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.intro-content strong {
    color: var(--primary-color);
}

/* 平台优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.advantage-card {
    padding: 25px;
    background-color: #fffcf8;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 模特展示 */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.model-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.model-img {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.model-img::before {
    content: "新加坡小妹网";
    position: absolute;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}
.model-img img{
    width: 100%;
}

.model-info {
    padding: 20px;
    text-align: center;
}

.model-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.model-details {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 服务类型 */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: #f8f4f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px dashed var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f0e6d8;
    transform: scale(1.03);
}

.service-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* 使用步骤 */
.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    font-family: 'Ma Shan Zheng', cursive;
    border: 5px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

/* 入驻流程 */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.process-item {
    padding: 25px;
    background-color: #f0f7f0;
    border-radius: 10px;
    border: 1px solid #c8e6c9;
}

/* 用户评价 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--light-text);
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* FAQ */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

/* 页脚 */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .advantages-grid, 
    .models-grid,
    .services-list,
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advantages-grid, 
    .models-grid,
    .services-list,
    .testimonials,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-cta {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
}
