﻿/* 针对手机屏幕（宽度≤768px）的适配 */
@media (max-width: 768px) {
    .main-22 {
        padding: 3% 2%; /* 减少手机端上下 padding，增加左右内边距避免内容贴边 */
    }
    .main-22 .container {
        margin-top: 1rem; /* 减少手机端顶部间距，避免图片被推到屏幕外 */
        padding: 0 5px; /* 容器内部留少量间距，防止图片贴边 */
        width: 100%; /* 确保容器宽度充满屏幕 */
        box-sizing: border-box; /* 避免padding导致容器宽度超过屏幕 */
    }
}




.main-22 .container .img img {
    max-width: 100%;
    width: 100%; /* 强制图片宽度适应父容器（优先级低于max-width） */
    max-height: none; /* 移除max-height限制，避免图片被压缩变形 */
    height: auto; /* 高度自动，保持图片比例 */
    border: 0;
    display: block; /* 消除图片底部默认空白（如果存在） */
}


.main-22 {
  background-color: #080f61;
  background-image: url("/1/images/m4-bg.jpg");
  background-size: cover;
position: relative;
	z-index: 1;
	padding: 6.25% 0;
}
.main-22 * {
  color: #fff;
}
.main-22 .container {
  margin-top: 2rem;
}


.main-22 .title {
  text-align: center;
}
.main-22 .title h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.main-22 .title h6 {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.main-22 .title h6::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 1.5rem;
  border-left: 0.01rem solid #fff;
}
.main-22 .title p {
  line-height: 1.8;
}
.main-22 .cy_title .title {
  text-align: left;
}