/* my 黑 白*/
.backG_02 {
  background: url(../images/icon/bg_01.png) center/cover no-repeat;
}
.backG_03 {
  background: url(../images/icon/bg_02.png) center/cover no-repeat;
}
.backG_white {
  background-color: #fff;
  /* background: url(../images/img_bg/03.jpg) center/cover no-repeat; */
}
.backG_ {
  background: rgba(34, 34, 34, 0.1) url(../images/banner/effect.png)
    center/cover no-repeat;
}
.bgCss {
  background: radial-gradient(
      95.74% 95.74% at 50% 116.49%,
      rgba(85, 144, 255, 0.15) 0%,
      rgba(85, 144, 255, 0) 100%
    ),
    rgb(255, 255, 255);
}
.ellipsis_1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /*超出2行就显示省略号，可以填3或者其它正整数*/
}
/* moveStr */
.moveStr {
  overflow: hidden;
  position: relative;
  background-color: #f2f2f2;
}

/* 弹窗的位置和背景颜色 */
#myModal {
  display: none;
  position: fixed;
  z-index: 8888;
  padding-top: 50px;
  width: 100%;
  height: 100%;
  overflow: auto;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  /* 弹窗图片的大小 */
}
#myModal .content {
  /* margin: auto; */
  display: block;
  min-height: 500px;
  max-height: calc(100vh - 150px);
}
