     :root {
            --primary-color: #c32329;
            --secondary-color: #f5f5f5;
        }
        
        .product-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            font-family: 'Arial', sans-serif;
        }
        
        .product-image-container {
            flex: 1;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .product-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
        }
        
        .product-content {
            flex: 1;
            padding: 20px 40px;
        }
        
        .product-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .product-price {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .product-description {
            line-height: 1.6;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            color: #333;
        }
        
        .product-features {
            margin-bottom: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            color: #333;
            border: 1px solid #ddd;
        }
        
        .btn-primary:hover {
            background-color: #a01d22;
            transform: translateY(-2px);
        }
        
        .btn-secondary:hover {
            background-color: #e0e0e0;
        }
        
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
            }
            
            .product-content {
                padding: 20px 0;
            }
        }
               :root {
            --primary: #c32329;
            --secondary: #f8f8f8;
            --text: #333333;
            --border: #e0e0e0;
        }
        
        .bodys{
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: white;
            margin: 0;
            padding: 20px;
            max-width: 100%;
            margin-top: 50px;
        }
        
        .package-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .package-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .package-title {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .package-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--text);
        }
        
        .package-divider {
            border: 0;
            height: 1px;
            background-color: var(--border);
            margin: 25px 0;
        }
        
        .package-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .package-price {
            color: var(--primary);
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0 5px;
        }
        
        .package-lessons {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .package-details {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .package-highlight {
            font-style: italic;
            color: var(--primary);
            font-weight: 500;
        }
        
        .package-button {
            display: block;
            width: 100%;
            max-width: 200px;
            margin: 40px auto 20px;
            padding: 14px 25px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .package-button:hover {
            background-color: #9e1c22;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        @media (max-width: 480px) {
            .package-title {
                font-size: 1.8rem;
            }
            
            .package-description {
                font-size: 1rem;
            }
            
            .package-card {
                padding: 20px;
            }
            
            .package-price {
                font-size: 2rem;
            }
            
            .package-lessons {
                font-size: 1.2rem;
            }
        }
            .container {
      width: 90%;
      margin: 0 auto;
    }

    h2 {
      color: #1b3b49; /* 标题颜色，可按需调整 */
    }

    p {
      color: #010101; /* 段落文字颜色，可按需调整 */
      line-height: 1.6;
    }

    .card-wrapper {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .card {
      flex: 1;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .card-header {
      padding: 15px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #fff;
      text-align: center;
    font-size: 20px;
    }

    .card-content {
      padding: 20px;
      text-align: center;
      background-color: #f8f9fa;
    }

    .yellow .card-header {
      background-color: #c32329; /* 主色替换 */
    }

    .green .card-header {
      background-color: #c32329; /* 主色替换，若需要不同色可调整 */
    }

    .btn-book {
      display: block;
      width: 150px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      background-color: #c1282d;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      margin: 30px auto 0;
      transition: background-color 0.3s ease;
    }

    .btn-book:hover {
      background-color: #003d82;
    }
      .m1{
      font-family: Arial, sans-serif;
      color: #333;
      margin: 20px;
    }

    .m2{
      font-size: 2rem;
      color: #0b3948; /* 模拟原标题深色 */
      margin-bottom: 10px;
    }

    ul {
      list-style-type: disc;
      margin-left: 40px;
      margin-bottom: 30px;
    }

    li {
      margin: 10px 0;
    }

    hr {
      border: none;
      border-top: 1px solid #999;
      margin: 30px 0;
    }

    p {
      line-height: 1.6;
    }
       /* 外层容器，设置背景、内边距、文本居中 */
    .zxcvbn8765 {
      position: relative;
      background: #f4f4f4;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
    }

    /* 伪元素创建斜角背景 */
    .zxcvbn8765::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      transform: skewY(-3deg);
      z-index: 0;
    }

    /* 标题容器，设置层级让内容在伪元素之上 */
    .asdfghjkl9 {
      position: relative;
      z-index: 1;
    }

    /* 大标题样式 */
    .qwertyuiop0 {
      font-size: 2.5em;
      font-weight: bold;
      margin: 10px 0;
      color: #333;
    }

    /* 副标题样式 */
    .lkjhgfdsa1 {
      font-size: 1.5em;
      color: #666;
      margin-bottom: 30px;
    }

    /* 按钮组，设置 flex 布局让按钮并排 */
    .poiuytrewq2 {
      display: flex;
      justify-content: center;
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    /* 按钮通用样式 */
    .mnbvcxz3 {
      padding: 15px 30px;
      border: none;
      border-radius: 4px;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    /* 第一个按钮样式 */
    .trewqasdf4 {
      background-color: #c32329;
      color: #fff;
    }

    .trewqasdf4:hover {
      background-color: #a51e23;
    }

    /* 第二个按钮样式 */
    .yuioplkjh5 {
      background-color: #fff;
      color: #333;
      border: 1px solid #ccc;
    }

    .yuioplkjh5:hover {
      background-color: #f4f4f4;
    }    body {
      color: #333;
      line-height: 1.6;
      background-color: #f9fafb;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* 顶部区域样式 */
    .hero {
      background: linear-gradient(135deg, #c3313b 0%, #c3313b 100%);
      color: white;
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
    }
    
    .hero-text {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }
    
    .hero-subtext {
      font-size: 2.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
      color: #ffffff;
    }
    
    /* 介绍部分样式 */
    .introduction {
      padding: 60px 0;
      background-color: white;
    }
    
    .intro-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #555;
      text-align: center;
    }
    
    /* 优势部分样式 */
    .advantages {
      padding: 60px 0;
      background-color: #f0f4f8;
    }
    
    .section-title {
      text-align: center;
      font-size: 2rem;
      color: #010100;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    
    /*.section-title::after {*/
    /*  content: '';*/
    /*  position: absolute;*/
    /*  bottom: 0;*/
    /*  left: 50%;*/
    /*  transform: translateX(-50%);*/
    /*  width: 80px;*/
    /*  height: 3px;*/
    /*  background-color:#010100;*/
    /*  border-radius: 3px;*/
    /*}*/
    
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    
    .advantage-card {
      background-color: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .advantage-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .advantage-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #c3313b;
      color: white;
      border-radius: 50%;
      font-weight: bold;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }
    
    .advantage-title {
      font-size: 1.3rem;
      color: #2c3e50;
      margin-bottom: 15px;
    }
    
    .advantage-desc {
      color: #666;
      line-height: 1.6;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
      .hero-text {
        font-size: 1.8rem;
      }
      
      .hero-subtext {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      .advantages-grid {
        grid-template-columns: 1fr;
      }
    }
    .crdees{
         /*background-color: #f5f7fa;*/
      /*min-height: 100vh;*/
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    /* 联系信息卡片容器 */
    .contact-card {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      width: 100%;
      max-width: 400px;
    }
    
    /* 标题样式 */
    .contact-title {
      color: #2c3e50;
      font-size: 1.5rem;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid #c2272f;
    }
    
    /* 联系信息项样式 */
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 18px;
      padding: 8px 0;
      transition: transform 0.2s ease;
    }
    
    .contact-item:hover {
      transform: translateX(5px);
    }
    
    /* 图标样式 */
    .contact-icon {
      font-size: 1.2rem;
      width: 30px;
      margin-right: 15px;
      color: #3498db;
    }
    
    /* 文本内容样式 */
    .contact-info {
      color: #34495e;
      font-size: 2rem;
    }
    
    /* 链接样式（针对邮箱） */
    .contact-info a {
      color: #3498db;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    
    .contact-info a:hover {
      color: #2980b9;
      text-decoration: underline;
    }
    .footbody{
         background-color: #f9fafb;
      color: #333;
      padding: 40px 0;
    }
       .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .info-section {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 40px;
      margin-bottom: 30px;
    }
    
    .section-title {
      color: #c2272f;
      font-size: 1.8rem;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid #e0e7ff;
      /*display: flex;*/
      align-items: center;
    }
    
    .section-title i {
      margin-right: 12px;
      font-size: 1.5em;
    }
    
    /* 营业时间样式 */
    .hours-list {
      list-style: none;
    }
    
    .hours-item {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .hours-item:last-child {
      border-bottom: none;
    }
    
    .day {
      font-weight: 600;
      color: #2c3e50;
      font-size: 20px;
    }
    
    .time {
      color: #666;
        font-size: 15px;
    }
    
    /* 位置信息样式 */
    .location-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .location-details {
      color: #34495e;
      line-height: 1.6;
    }
    
    .location-note {
      /*background-color: #f0f7ff;*/
      border-left: 4px solid #c2272f;
      padding: 15px;
      margin-top: 10px;
      border-radius: 0 4px 4px 0;
      color: #2c3e50;
      font-size: 2rem;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
      .info-section {
        padding: 25px;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .hours-item {
        flex-direction: column;
        gap: 5px;
      }
    }
       .tubiao {
            /* 背景设置为渐变，模拟类似手机背景模糊渐变效果，可根据需要调整渐变颜色 */
            /*background: linear-gradient(to bottom right, #f3e7e9, #e3eeff);*/
            display: flex;
            /* 让子元素垂直排列 */
            flex-direction: column; 
            /* 水平居中 */
            align-items: center; 
            /* 垂直居中，让图标在页面中间位置，可根据需求调整 */
            justify-content: center; 
            /*min-height: 100vh;*/
            font-family: Arial, sans-serif;
        }

        .icon-container {
            display: flex;
            /* 让图标和文字垂直排列 */
            flex-direction: column; 
            /* 水平居中 */
            align-items: center; 
            margin: 20px;
        }

        .icon {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            /* 让图标内内容居中 */
            display: flex; 
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .icon img {
            width: 70%;
            height: 70%;
        }

        .icon-text {
            font-size: 18px;
            color: #333;
            font-weight: 500;
            text-align: center;
        }

        /* Facebook 图标容器样式，可单独调整背景色等 */
        .facebook-icon {
            background-color: #1877F2;
        }

        /* Instagram 图标容器样式 */
        .instagram-icon {
            background: linear-gradient(to bottom right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
        }