/* .video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border: 4px solid #ccc;
} */

.video-container {
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  /* top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  bottom: 5%;
  right: 5%;
  max-width: 480px;
  width: 90%;
  background-color: #000;
  border-top: 40px solid #333;
}

#autoplayVideo {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: -32px;
  right: 6px;
  width: 24px;
  height: 24px;
  line-height: 23px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #fff;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  /* padding: 5px 10px; */
  border-radius: 50%;
}

/* 查询 start */
.index-search-container {
  background: rgba(0, 0, 0, 0.1);
  width: 420px;
  height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid #ca1515;
  border-radius: 6px;
}

.index-search-container .search-input {
  display: block;
  width: 384px;
  height: 44px;
  border-radius: 6px;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 18px;
  color: #333;
}

.index-search-container .btn {
  width: 44px;
  height: 44px;
  background-color: #ca1515;
  border-radius: 0 6px 6px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.index-search-container .btn img {
  width: 20px;
  height: 20px;
}
/* 查询 end */

@media (max-width: 768px) {
  .video-container {
    width: 95%;
  }

  .close-btn {
    top: -35px;
    font-size: 24px;
  }

  /* 查询 start */
  .index-search-container {
    width: 351px;
    margin: 30px auto 0;
  }

  .index-search-container .search-input {
    width: 315px;
  }
    /* 查询 end */
}