/* ================================================
   Grearth — About Us 绿色装饰
   
   原理：
   · imgbox 加绿色背景
   · 图片加上下 margin → 绿色从图片上下露出
   · colorRPhone 不删除、不隐藏
   · 全部 !important 强制生效
   ================================================ */

/* imgbox 背景填绿色 */
.bossgoo-index-about72 .mainBox .imgbox {
  background-color: #4a9c2f !important;
}

/* 图片（第一个 img，不含 play 按钮）加上下间距
   绿色背景从间距中露出                             */
.bossgoo-index-about72 .mainBox .imgbox > img:not(.play) {
  display: block !important;
  margin-top: 100px !important;
  margin-bottom: 100px !important;
  position: relative !important;
  z-index: 1 !important;
}

/* shade 和 play 也要在上层 */
.bossgoo-index-about72 .mainBox .imgbox .shade {
  position: relative !important;
  z-index: 2 !important;
}

.bossgoo-index-about72 .mainBox .imgbox .play {
  z-index: 3 !important;
}

/* 响应式 */
@media (max-width: 768px) {
  .bossgoo-index-about72 .mainBox .imgbox > img:not(.play) {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
