:root {
    --primary: #e91e63;
    --primary-light: #f8bbd9;
    --primary-dark: #ad1457;
    --accent: #ff80ab;
    --light: #fce4ec;
    --light-bg: #fafafa;
    --dark: #880e4f;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--light);
    font-weight: 300;
}

.logo .domain {
    font-size: 14px;
    color: var(--light);
    margin-left: 10px;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--light);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(rgba(232, 30, 99, 0.85), rgba(173, 20, 87, 0.85)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 介绍区域 */
.intro {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.intro-image {
    height: 500px;
    background-color: var(--light);
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

/* 服务区域 */
.services {
    padding: 100px 0;
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
}

.service-img {
    height: 200px;
    background-color: var(--primary-light);
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* 特色区域 */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: var(--light-bg);
}

.feature-item:hover {
    background-color: var(--light);
    transform: translateY(-5px);
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-item p {
    color: var(--text-light);
}

/* 引流区域 */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 180px;
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
}

.platform:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.platform-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.platform-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    font-weight: 500;
}

.platform-btn:hover {
    background-color: var(--light);
}

/* 页脚 */
footer {
    background-color: var(--dark);
    padding: 70px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--light);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-column p, .footer-column a {
    color: var(--primary-light);
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .platform {
        width: 100%;
        max-width: 250px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}