/* ===========================================
   about.css - 关于我们独立样式
   严格参照 XCMG service_action 布局
   =========================================== */

/* ===== 常量 ===== */
html { font-size: 100px; }

/* ===== 通用容器 ===== */
.wrap {
  width: 16.4rem;
  margin-right: auto;
  margin-left: auto;
}

/* ===== 图片缩放通用类（来自XCMG style.css） ===== */
.imgZoom {
  overflow: hidden;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.imgZoom img {
  -moz-transition: all .8s ease 0s;
  -ms-transition: all .8s ease 0s;
  -o-transition: all .8s ease 0s;
  -webkit-transition: all .8s ease 0s;
  transition: all .8s ease 0s;
}
.imgZoom:hover img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* ===== 通用标题（来自XCMG） ===== */
.common_tit {
  position: relative;
  font-weight: bold;
  color: #063f87;
  text-align: center;
}
.common_tit::after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  width: .84rem;
  transform: translateX(-50%);
  height: .04rem;
  background: #f5be2c;
}

/* about页面使用的变体类名 */
.common_tit.tit46 {
  font-size: .4rem;
  line-height: .5rem;
  margin-bottom: .45rem;
}

/* ===== 正文通用 ===== */
.con15 {
  font-size: .17rem;
  line-height: .3rem;
  color: #5b5b5b;
}

/* ===== channel_content 主容器 ===== */
.channel_content.service_action {
  padding-top: .7rem;
}

/* ===== service_action02: 关于我们 + 大数据展示 ===== */
.service_action02 {
  padding-bottom: .8rem;
}

.service_action02 .infor {
  text-align: center;
}

.service_action02 .infor .con {
  color: #666;
  margin-bottom: .6rem;
  text-align: justify;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}

.service_action02 .infor .con p {
  font-size: .16rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: .15rem;
}

/* 大数据展示 - box + ul_d */
/*.service_action02 .box {
  padding-top: .35rem;
}*/

.service_action02 .box ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.service_action02 .box li {
  display: inline-block;
  vertical-align: text-top;
  text-align: center;
  width: 25%;
  position: relative;
  padding: .2rem .15rem;
  box-sizing: border-box;
}

.service_action02 .box li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #e7e8ea;
}

.service_action02 .box li:last-child::after {
  display: none;
}

.service_action02 .box li .num_box {
  font-weight: bold;
  color: #063f87;
  position: relative;
  display: inline-block;
}

.service_action02 .box li .num_box .num {
  font-size: .8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
}

.service_action02 .box li .num_box .t {
  position: absolute;
  top: -3px;
  right: -0.6rem;
  font-size: .15rem;
  font-weight: bold;
  color: #2d2d2d;
  white-space: nowrap;
  line-height: .3rem;
  padding: 0 .15rem;
  border-radius: .2rem;
  background: #e8e9ea;
}

.service_action02 .box li .num_box .t::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 5px;
  border: 5px solid transparent;
  border-top-color: #e8e9ea;
  transform: rotate(14deg);
}

.service_action02 .box li .tips {
  font-size: .18rem;
  color: #000;
  line-height: .3rem;
  margin-top: .15rem;
  font-weight: bold;
}

/* ===== service_action03: 服务内容（售前/售中/售后） ===== */
.service_action03 {
  padding: .8rem 0;
  margin-bottom: .8rem;
  overflow: hidden;
  background: #f5f9ff;
}

.service_action03 .common_tit {
  margin-bottom: .7rem;
}

.service_action03 .content .item {
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service_action03 .content .item:last-child {
  margin-bottom: 0;
}

.service_action03 .content .item .left {
  position: relative;
  width: 47%;
}

.service_action03 .content .item .left .intro {
  position: relative;
}

.service_action03 .content .item .left .intro .icon {
  position: absolute;
  left: 0;
  top: .1rem;
}

.service_action03 .content .item .left .intro .icon img {
  width: .5rem;
  height: auto;
}

.service_action03 .content .item .left .intro .tit {
  font-size: .3rem;
  font-weight: bold;
  margin-bottom: .15rem;
  color: #000;
  padding-left: .7rem;
}

.service_action03 .content .item .left .intro .con {
  color: #747474;
  text-align: justify;
  font-size: .15rem;
  line-height: 1.8;
/*  padding-left: .7rem;*/
}

.service_action03 .content .item .left .intro .con strong {
  color: #333;
  font-weight: 600;
}

.service_action03 .content .item .right {
  position: relative;
  width: 47%;
  height: 100%;
  border-radius: .08rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service_action03 .content .item .right .img_box {
  width: 100%;
}

/* rect-38: 38% aspect ratio (宽高比约 38:20 → 使用 padding-bottom 控制) */
.service_action03 .rect-38 {
  position: relative;
  width: 100%;
  padding-bottom: 52%;
  overflow: hidden;
}

.service_action03 .rect-38 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* even 项左右翻转 */
.service_action03 .content .item.even {
  flex-direction: row-reverse;
}

/* ===== service_action04: 我们的队伍 ===== */
.service_action04 {
  padding-bottom: .8rem;
}

.service_action04 .infor {
  text-align: center;
  width: 74%;
  margin: 0 auto .5rem;
}

.service_action04 .infor .con p {
  font-size: .16rem;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}

.service_action04 .content ul {
  width: 103%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service_action04 .content .item {
  float: left;
  width: 30.33%;
  margin-right: 3%;
  border-radius: .08rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all .4s ease;
}

.service_action04 .content .item:last-child {
  margin-right: 0;
}

.service_action04 .content .item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* rect-5385: 53.85% aspect ratio */
.service_action04 .rect-5385 {
  position: relative;
  width: 100%;
  padding-bottom: 53.85%;
  overflow: hidden;
}

.service_action04 .rect-5385 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* _full 图片填充 */
.service_action04 .content .item img._full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== service_action08: 全球布局 ===== */
.service_action08 {
  padding-bottom: .8rem;
}

.service_action08 .infor {
  text-align: center;
  padding: 0 8%;
  margin-bottom: .3rem;
}

.service_action08 .infor .con {
  font-size: .16rem;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}

.service_action08 .infor .con span {
  font-size: .2rem;
  color: #00479d;
  font-weight: bold;
}

.service_action08 .content {
  padding: 0 .5rem;
  position: relative;
}

/* rect-5133: 51.33% aspect ratio */
.service_action08 .rect-5133 {
  position: relative;
  width: 100%;
  padding-bottom: 51.33%;
  overflow: hidden;
  border-radius: .08rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.service_action08 .rect-5133 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 地图圆点 */
.service_action08 .dot_box {
  position: absolute;
  left: .5rem;
  bottom: 0;
  width: calc(100% - 1rem);
  height: 100%;
  pointer-events: none;
}

.service_action08 .dot_box .dot {
  position: absolute;
  pointer-events: auto;
}

.service_action08 .dot_box .dot .dot_circle {
  display: block;
  width: 14px;
  height: 14px;
  background: #00479d;
  position: relative;
  z-index: 3;
  border-radius: 50%;
}

.service_action08 .dot_box .dot::before,
.service_action08 .dot_box .dot::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 1;
}

.service_action08 .dot_box .dot::before {
  width: 29px;
  height: 29px;
  background: rgba(0, 71, 157, 0.3);
  margin-top: -14px;
  margin-left: -14px;
  -webkit-animation: about_warn 2s linear 0.4s infinite;
  animation: about_warn 2s linear 0.4s infinite;
  opacity: 0;
}

.service_action08 .dot_box .dot::after {
  width: 46px;
  height: 46px;
  background: rgba(0, 71, 157, 0.2);
  margin-left: -23px;
  margin-top: -23px;
  -webkit-animation: about_warn 2s linear 0s infinite;
  animation: about_warn 2s linear 0s infinite;
  opacity: 0;
}

/* 脉冲动画 */
@keyframes about_warn {
  0%   { transform: scale(0.5); opacity: 0; }
  25%  { transform: scale(1);   opacity: 0.4; }
  50%  { transform: scale(1.2); opacity: 0.8; }
  75%  { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

@-webkit-keyframes about_warn {
  0%   { transform: scale(0.5); opacity: 0; }
  25%  { transform: scale(1);   opacity: 0.4; }
  50%  { transform: scale(1.2); opacity: 0.8; }
  75%  { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* 覆盖层 - 全球数据 */
.service_action08 .cover {
  position: absolute;
  right: 5%;
  bottom: 8%;
  background: rgba(10, 30, 64, 0.85);
  width: 40%;
  border-radius: .08rem;
  backdrop-filter: blur(4px);
}

.service_action08 .cover .box {
  padding: .4rem .5rem;
}

.service_action08 .cover .box dt {
  float: left;
  font-size: .22rem;
  line-height: .3rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: .25rem;
  width: 100%;
}

.service_action08 .cover .box dd {
  float: left;
  width: 48%;
  margin-right: 2%;
  font-size: .15rem;
  line-height: .3rem;
  color: #fff;
  margin-top: .05rem;
}

.service_action08 .cover .box dd.even {
  margin-right: 0;
}

.service_action08 .cover .box dd span {
  display: inline-block;
  margin-right: 3px;
  font-size: .26rem;
  color: #facd00;
  font-family: Arial;
  font-weight: bold;
}

.service_action08 .cover .box .text {
  font-size: .16rem;
  color: #fff;
  line-height: .24rem;
  margin-top: .25rem;
  clear: both;
  padding-top: .15rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ===== fix 清除浮动 ===== */
.fix:before,
.fix:after {
  content: "";
  display: table;
  clear: both;
}



/* 仅匹配.service_action02下的.article-content里的p标签，权重足够覆盖内联样式 */
.service_action02 .article-content p {
    color: #666;
    margin-bottom: .6rem;
    font-size: .17rem; /* 覆盖内联的15px */
    line-height: .3rem;
    /* 可选：统一字体栈，替换内联的"微软雅黑" */
    font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: left; /* 可选：如需两端对齐改成justify */
}

/* 关键：重置p内部span的内联样式（span的内联样式会覆盖p的样式，必须单独写） */
.service_action02 .article-content p span {
    color: inherit !important; /* 继承p的#666，覆盖内联的rgb(102,102,102) */
    font-size: inherit !important; /* 继承p的.17rem，覆盖内联的15px */
    font-family: inherit !important; /* 继承p的字体栈 */
    line-height: inherit !important; /* 继承p的行高.3rem */
    -webkit-text-stroke-width: initial !important; /* 重置内联的文本描边 */
    letter-spacing: normal !important; /* 重置内联的字间距 */
    white-space: normal !important; /* 重置内联的white-space规则 */
}

/* 可选：调整换行br的间距（你现在的br是硬换行，可优化间距） */
.service_action02 .article-content p br {
    display: block;
    margin-bottom: .2rem; /* 控制每段之间的间距，按需调整 */
}



/* 仅针对关于我们页面的正文容器 */
.channel_content.service_action .service_action02 .infor .con {
    max-width: 14rem; /* 放大到14rem */
}

/* 确保正文填满容器 */
.channel_content.service_action .service_action02 .infor .con .article-content {
    max-width: 100%;
}






/* ===== 响应式 ===== */
@media (max-width: 1280px) {
  .wrap { width: 100%; padding: 0 .2rem; box-sizing: border-box; }

  .service_action02 .box li .num_box .num { font-size: .6rem; }
  .service_action02 .box li .tips { font-size: .16rem; }

  .service_action03 .content .item .left .intro .tit { font-size: .24rem; }
  .service_action03 .content .item .left .intro .con { font-size: .14rem; }

  .service_action08 .cover { width: 50%; }
  .service_action08 .cover .box { padding: .3rem; }
}

@media (max-width: 1024px) {
  html { font-size: 80px; }

  .service_action03 .content .item {
    flex-direction: column !important;
    align-items: stretch;
  }
  .service_action03 .content .item .left,
  .service_action03 .content .item .right {
    width: 100%;
    margin-bottom: .3rem;
  }

  .service_action04 .content .item { width: 48%; margin-right: 2%; margin-bottom: .3rem; }
  .service_action04 .content .item:last-child { margin-right: 2%; }
  .service_action04 .content .item:nth-child(3n) { margin-right: 0; }

  .service_action08 .infor { width: 100%; padding: 0; }
  .service_action08 .cover { position: relative; right: auto; bottom: auto; width: 100%; margin-top: .3rem; }
}

@media (max-width: 768px) {
  html { font-size: 60px; }

  .service_action02 .box ul { flex-direction: column; }
  .service_action02 .box li { width: 100%; border-bottom: 1px solid #e7e8ea; }
  .service_action02 .box li::after { display: none; }
  .service_action02 .box li:last-child { border-bottom: none; }

  .service_action02 .box li .num_box .num { font-size: .5rem; }

  .service_action03 .content .item .left .intro .tit { font-size: .2rem; padding-left: .6rem; }
  .service_action03 .content .item .left .intro .icon img { width: .4rem; }
  .service_action03 .content .item .left .intro .con { padding-left: .6rem; font-size: .13rem; }

  .service_action04 .content .item { width: 100%; margin-right: 0; }

  .service_action08 .cover .box dt { font-size: .18rem; }
  .service_action08 .cover .box dd { width: 100%; margin-right: 0; font-size: .14rem; }

  .service_action08 .dot_box .dot .dot_circle { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  html { font-size: 50px; }

  .common_tit.tit46 { font-size: .3rem; line-height: .4rem; }

  .service_action03 .rect-38 { padding-bottom: 65%; }
  .service_action04 .rect-5385 { padding-bottom: 65%; }

  .service_action08 .cover .box { padding: .2rem; }
  .service_action08 .cover .box .text { font-size: .13rem; }
}
