@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.index_banner img {
  margin-top: -8px;
}
.index_banner img {
  border-radius: 0 0 10px 10px;

}
.index_banner a:hover {
  opacity: 0.8;
}
.p-popup-wrap {
  opacity: 0;
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 100px;
  right: 20px;
}
.p-popup-wrap.is-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup-container {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}
.p-popup-wrap a:hover {
  border-color: #fff;
  opacity: 0.8;
}
.p-popup-content {
  position: relative;
  min-width: 198px;
  height: 216px;
  background: #f0f7fc;
  box-shadow: 0 0 6px rgba(82, 82, 82, 0.4);
  border-radius: 6px;
}
.p-popup-text {
  padding: 15px;
  height: calc(100% - 146px);
}
.p-popup-text img {
  height: 39px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
}
.p-popup-image {
  height: 150px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  position: relative;
}
.p-popup-image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-popup-close {
  position: fixed;
  bottom: 330px;
  top: 0;
  right: -70px;
  left: 0;
  margin: auto 90px 0 auto;
  z-index: 100;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-popup-btn {
  position: absolute;
  top: 0;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: auto auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: 60px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #1b5fac;
  padding: 6px 12px;
  min-width: 171px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
}
.p-popup-bubble {
  position: fixed;
  right: 10px;
  bottom: 90px;
  z-index: 100;
  display: none;
}
.p-popup.is-show-popup .p-popup-wrap {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup.is-show .p-popup-wrap {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1000;
}
.p-popup.is-show-bubble .p-popup-bubble {
  display: block;
  cursor: pointer;
  opacity: .8;
}
@media screen and (max-width: 768px) {
  .p-popup {
    display: none;
  }
}