html { font-size: 16px; }



.business-flight-section {
  width: 100%;
  padding: 60px 20px 60px 20px;
  background: #ffffff;
  min-height:600px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.bf-title {
  font-size: clamp(2rem, 2.2vw, 4rem);
  color: #222222;
  text-align: center;
  margin-bottom: 10px;
  font-weight:700;
}
.bf-desc p {
  font-size: clamp(16px,1vw,22px);
  line-height: 1.5;
  color: #222;
  text-align: left;
}

/* 移动端适配 */
@media (max-width:768px){
  .business-flight-section{
    padding:36px 16px 15px 16px;
  }
  .bf-title{
    margin-bottom:18px;
	font-size: 1.5rem;
  }
  .bf-desc p {
    font-size: 1rem;
    line-height: 1.5;
	}
}




/*开始*/
.air-card_all {
background-color: #f0e9df; /* 页面米色背景 */
padding: 40px 20px;
}

.air-card {
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
            background: #fff;
            border-radius: 20px;
            display: flex;
            overflow: hidden;
        }
        /* 文字区域：总宽1200px减去图片466px = 734px */
        .card-text {
            width: 734px;
            padding: 48px;
        }
        .card-text h2 {
            font-size: 30px;
            color: #083d81;
            margin-bottom: 24px;
            font-weight: bold;
        }
        .card-text p {
            font-size: 15px;
            color: #333;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        /* 图片区域：电脑端固定宽466px，高465px */
        .card-img-wrap {
            width: 466px;
            height: 465px;
            flex-shrink: 0; /* 禁止图片容器被压缩 */
        }
        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 响应式：768px以下移动端变成上下布局 */
        @media (max-width:768px) {
            .air-card {
                flex-direction: column;
            }
            .card-text {
                width: 100%;
                padding: 20px 20px 10px 20px;
            }
            .card-text h2 {
                font-size: 26px;
				line-height: 33px;
        text-align: center;
            }
            .card-img-wrap {
                width: 100%;
                height: auto;
            }
.air-card_all {
padding: 25px 8px;
}

.card-text p {    
    margin-bottom: 10px;
}

}
		
/*结束*/