.bywy_body{padding-top:80px;}
.banner{
	background: url(../images/jjsh1.jpg) center top no-repeat;
    height: 1000px;
    min-width: 100%;

}
.banner_box {
    width: 1200px;
    margin: 0 auto;
    padding-top: 245px;
    height: 520px;
    text-align: center;
}


.banner_box h1 {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
    
}
  
  
.banner_box p {
    font-size: 22px;
    color: #fff;
     padding: 45px;
}
.banner_box a{ background: #fff;
            color: #e29431;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            }
            

 .part1 {
            background: linear-gradient(to bottom, #fffefc, #fffbeb);
            padding: 60px 20px;
        }

  /* 标题样式 */
        .section-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background-color: #c49863;
            margin: 8px auto 0;
        }

        /* 卡片容器 - 强制所有卡片高度完全一致 */
        .card-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            flex-wrap: wrap;
        }

        /* 单个卡片样式 - 固定卡片高度，确保所有卡片尺寸一致 */
        .service-card {
            flex: 1;
            min-width: 280px;
            max-width: 300px;
            height: 600px; /* 固定卡片总高度，确保所有卡片一致 */
            background-color: #f3f6ff;
            border: 1px solid #f5f5f5;
            border-radius: 8px;
            padding-top: 25px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* 文字内容容器 - 控制文字左右留白，且占满除图片外的空间 */
        .card-content {
            padding: 0 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* 文字置顶，保证排版统一 */
        }

        /* 卡片标题 */
        .card-title {
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 20px;
        }

        /* 列表样式 */
        .card-list {
            list-style: none;
            padding: 0 20px;
        }

        .card-list li {
            color: #333;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .card-list li::before {
            content: "✓";
            color: #8b5a2b;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* 卡片图片样式 - 固定高度+强制位置，确保上下完全对齐 */
        .card-img {
            width: 100%;
            height: 200px; /* 固定图片高度，所有图片一致 */
            object-fit: cover;
            border-radius: 0;
            flex-shrink: 0; /* 禁止压缩，保证高度不变 */
            margin-top: auto; /* 强制图片靠底，且因卡片高度固定，图片上下对齐 */
        }


 .part2 {
            background: url(../images/jjsh3.jpg) center top no-repeat;
    height: 1200px;
    min-width: 100%;
            padding: 80px 60px;
        }

        /* 标题容器 */
        .title-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .main-title {
            font-size: 24px;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .sub-title {
            font-size: 18px;
            color: #5f5f5f;
            border-bottom: 4px solid #734918;
            display: inline-block;
            padding-bottom: 4px;
        }

        /* 表格样式 */
        .service-table {
            width: 1200px;
            margin: 0 auto; 
            border-collapse: collapse;
            background-color: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        /* 表头样式 */
        .service-table thead tr {
            background-color: #8b5a2b; /* 表头深棕色背景 */
        }

        .service-table th {
            color: #fff;
            padding: 12px 8px;
            text-align: left;
            font-size: 16px;
            font-weight: bold;
        }

        /* 表格主体行样式 */
        .service-table tbody tr {
            border-bottom: 1px solid #f0e6d2;
        }

        /* 奇偶行背景色区分 */
        .service-table tbody tr:nth-child(odd) {
            background-color: #fffbeb;
        }

        .service-table tbody tr:nth-child(even) {
            background-color: #ffffff;
        }

        /* 单元格样式 */
        .service-table td {
            padding: 10px 8px;
            font-size: 14px;
            color: #333;
            vertical-align: top;
        }

        /* 服务项目列（第一列）样式 */
        .service-table td:first-child {
            font-weight: 600;
            color: #5a3e2b;
            width: 18%; /* 固定第一列宽度 */
        }

        /* 服务内容列样式 */
        .service-content {
            line-height: 1.6;
        }

        /* 列表项样式（模拟圆点） */
        .service-content ul {
            list-style: none;
        }

        .service-content li {
            position: relative;
            padding-left: 16px;
            margin-bottom: 6px;
        }

        .service-content li:last-child {
            margin-bottom: 0;
        }

        .service-content li::before {
            content: "●";
            position: absolute;
            left: 0;
            color: #8b5a2b;
            font-size: 8px;
            top: 6px;
        }

        /* 备注行样式 */
        .remark-row td {
            background-color: #faf6f0;
            text-align: center;
            font-size: 13px;
            color: #666;
            padding: 8px;
            font-style: italic;
        }


  /* 主体容器 - 还原设计图的整体布局 */
        .jjsh_container {
            width: 100%;
            /* 背景色模拟设计图的渐变棕色调 */
            background: linear-gradient(to right, #64311d, #d6b599);
            /* 内边距控制内容上下间距 */
            padding: 60px 20px;
            /* 内容水平居中 */
            text-align: center;
            /* 容器最小高度，保证视觉效果 */
            min-height: 300px;
            /* 弹性布局，让内容垂直居中 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* 标题样式 */
        .jjsh_title {
            font-size: 32px;
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        /* 副标题/描述文本样式 */
        .desc {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        /* 按钮容器 - 控制两个按钮的间距 */
        .btn-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* 基础按钮样式 */
        .btn {
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 50px; /* 圆角按钮 */
            cursor: pointer;
            transition: all 0.3s ease; /* hover 过渡效果 */
            border: 2px solid #ffffff;
        }

        /* 主按钮（立即预约咨询）样式 */
        .btn-primary {
            background-color: #ffffff;
            color: #8b5a2b;
            font-weight: 500;
            /* 按钮内图标 + 文字的排版 */
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* 主按钮hover效果 */
        .btn-primary:hover {
            background-color: #f5f5f5;
        }

        /* 次按钮（了解更多套餐）样式 */
        .btn-outline {
            background-color: transparent;
            color: #ffffff;
        }

        /* 次按钮hover效果 */
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* 按钮内小图标（模拟设计图中的图标） */
        .btn-icon {
            width: 18px;
            height: 18px;
     
          
            background-size: 100%;
        }
