/* 服务栏目 PC 端背景图
   原站 style.css 有: .tx-service-main > .tx-float > .tx-mb { display: none; }
   （手机端那张 ser-im*.jpg 在 PC 被隐藏）
   这里用 !important 提权打开它，铺满面板当背景；tx-pc 插画留在上层。 */

.tx-service-main > .tx-float {
  position: relative;
  overflow: hidden;
}

/* 关键：!important 压过主题里更靠后的 display:none */
.tx-service-main > .tx-float > .tx-mb {
  display: block !important;
  visibility: visible !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  opacity: 1 !important;
  overflow: hidden;
}

.tx-service-main > .tx-float > .tx-mb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* PC 端插画层压在背景之上 */
.tx-service-main > .tx-float > .tx-pc {
  position: relative;
  z-index: 1;
  display: block;
}

/* 文字最上层 */
.tx-service-main > .tx-float > .text {
  z-index: 3;
}
