       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        /* 全局样式 */
        :root {
            --primary-color: #f8c2d8;
            --secondary-color: #ff6b9d;
            --text-color: #333;
            --light-color: #f9f9f9;
            --gray-color: #999;
            --border-color: #eee;
        }
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            margin: 40px 0 20px;
            font-size: 28px;
            color: var(--secondary-color);
            position: relative;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 10px auto;
        }
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--secondary-color);
            color: white;
            border-radius: 5px;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #e85a8b;
        }

        /* 头部导航 */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            font-size: 16px;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        .contact-btn {
            padding: 8px 20px;
        }

        /* 英雄区 */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/bd/images/bg.jpg") center/cover no-repeat;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
        }

        /* 业务介绍 */
        .intro {
            padding: 80px 0;
            background: var(--light-color);
        }
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .intro-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        .intro-text p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }
        .intro-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* 核心关注 - 价格套餐 */
        .packages {
            padding: 80px 0;
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .package-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }
        .package-card:hover {
            transform: translateY(-10px);
        }
        .package-card h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        .package-price {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        .package-list {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        .package-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        /* 核心关注 - 化妆师团队 */
        .artists {
            padding: 80px 0;
            background: var(--light-color);
        }
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .artist-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .artist-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .artist-info {
            padding: 20px;
            text-align: center;
        }
        .artist-info h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .artist-info p {
            color: var(--gray-color);
            margin-bottom: 15px;
        }

        /* 核心关注 - 作品展示 */
        .works {
            padding: 80px 0;
        }
        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .work-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .work-item img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .work-item img:hover {
            transform: scale(1.05);
        }

        /* 核心关注 - 客户口碑 */
        .reviews {
            padding: 80px 0;
            background: var(--light-color);
        }
        .reviews-slider {
            margin-top: 40px;
            overflow: hidden;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin: 0 15px;
            text-align: center;
        }
        .review-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .review-text {
            font-size: 16px;
            margin-bottom: 20px;
            color: #666;
            font-style: italic;
        }
        .review-name {
            font-weight: bold;
            color: var(--secondary-color);
        }

        /* 核心关注 - 服务流程 */
        .process {
            padding: 80px 0;
        }
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }
        .process-step {
            width: calc(100% / 6 - 20px);
            text-align: center;
            margin-bottom: 20px;
        }
        @media (max-width: 992px) {
            .process-step {
                width: calc(50% - 20px);
            }
        }
        @media (max-width: 576px) {
            .process-step {
                width: 100%;
            }
        }
        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: white;
        }
        .process-step h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .process-step p {
            font-size: 14px;
            color: var(--gray-color);
        }

        /* 新增：文章资讯板块 */
        .news {
            padding: 80px 0;
            background: var(--light-color);
        }
        .news-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .filter-btn {
            padding: 8px 20px;
            background: white;
            border: 1px solid var(--primary-color);
            color: var(--text-color);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        .news-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-img {
            height: 200px;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-content {
            padding: 25px;
        }
        .news-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--primary-color);
            color: white;
            font-size: 12px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text-color);
            transition: color 0.3s;
        }
        .news-card:hover .news-title {
            color: var(--secondary-color);
        }
        .news-desc {
            font-size: 14px;
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #bbb;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }
        .news-more {
            text-align: center;
            margin-top: 50px;
        }

        /* 预约板块 */
        .booking {
            padding: 80px 0;
            background: var(--secondary-color);
            color: white;
            text-align: center;
        }
        .booking h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        .booking p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .booking-btn {
            background: white;
            color: var(--secondary-color);
            font-weight: bold;
        }
        .booking-btn:hover {
            background: #f0f0f0;
        }

        /* 底部 */
        footer {
            background: #333;
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: "";
            display: block;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
            position: absolute;
            bottom: 0;
            left: 0;
        }
        .footer-col p, .footer-col a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
        }
        .footer-col a:hover {
            color: var(--primary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 14px;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .intro-content {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 36px;
            }
            .hero-content p {
                font-size: 18px;
            }
            .news-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .section-title {
                font-size: 24px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
        }
        @media (max-width: 576px) {
            .hero {
                height: 60vh;
            }
            .hero-content h1 {
                font-size: 24px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .package-card {
                padding: 20px;
            }
            .news-filter {
                gap: 10px;
            }
            .filter-btn {
                padding: 6px 15px;
                font-size: 14px;
            }
        }