        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
            color: white;
            padding: 30px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .logo p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .contact-info {
            text-align: right;
        }
        
        .phone {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffd54f;
        }
        
        .work-hours {
            font-size: 0.9rem;
            margin-top: 5px;
            opacity: 0.9;
        }
        
        /* 导航样式 */
        nav {
            background-color: #c62828;
            padding: 15px 0;
        }
        
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 20px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 主内容区域 */
        main {
            padding: 40px 0;
        }
        
        .hero {
            background-color: white;
            border-radius: 10px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .hero h2 {
            color: #d32f2f;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
        }
        
        .cta-button:hover {
            background-color: #f57c00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 152, 0, 0.4);
        }
        
        /* 服务介绍 */
        .services {
            margin-bottom: 50px;
        }
        
        .section-title {
            text-align: center;
            color: #d32f2f;
            font-size: 2rem;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #ff9800;
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            height: 200px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d32f2f;
            font-size: 3rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: #d32f2f;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* 花篮展示 */
        .products {
            margin-bottom: 50px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .product-image {
            height: 220px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .price {
            color: #d32f2f;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 10px 0;
        }
        
        /* 订购信息 */
        .order-info {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .info-item h3 {
            color: #d32f2f;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-item h3 i {
            margin-right: 10px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #333;
            color: #eee;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ff9800;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .beian {
            color: #aaa;
            text-decoration: none;
            margin-left: 20px;
        }
        
        .beian:hover {
            color: #ff9800;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info {
                text-align: center;
                margin-top: 20px;
            }
            
            .nav-links {
                flex-wrap: wrap;
            }
            
            .nav-links li {
                margin: 5px 10px;
            }
            
            .hero {
                padding: 30px 20px;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .order-info {
                padding: 30px 20px;
            }
        }