/* ========================================================================= *\
    vmcarousel plugin
\* ========================================================================= */

.vmc-container {
  position: relative;
}

.vmc-viewport {
  overflow: hidden;
}

.vmcarousel {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 1000%;
}

.vmcarousel:after {
  content: '';
  display: table;
  clear: both;
}

.vmcarousel>li {
  float: left;
}

.vmcarousel>li img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.vmc-container.hide-controls .vmc-arrow-left,
.vmc-container.hide-controls .vmc-arrow-right {
  display: none;
}

.vmc-arrow-left,
.vmc-arrow-right {
  position: absolute;
  overflow: hidden;
  text-align: center;
  font-family: "宋体";
  text-decoration: none;
  font-size: 25px;
  border-radius: 100%;
  width: 50px;
  background: #00000070;
  height: 50px;
  display: flex;
  font-weight: 100;
  align-items: center;
  justify-content: center;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.vmc-arrow-left:hover,
.vmc-arrow-right:hover {
  background: #00000080;
}

.vmc-arrow-left {
  left: 20px;
  transition: all 0.3 ease;
}

.vmc-arrow-right {
  right: 20px;
  transition: all 0.3 ease;
}

.vmc-container:hover .vmc-arrow-left,
.vmc-container:hover .vmc-arrow-right {
  opacity: 1;
}

.vmc-arrow-left:hover {}

.vmc-arrow-right:hover {}

.vmc-arrow-left:after,
.vmc-arrow-right:after {
  content: '';
  display: inline-block;
  line-height: 1;
  font-size: 50px;
  line-height: 50px;
  color: white;
  text-shadow: 2px 2px #000;
}

.vmc-arrow-left:hover:after,
.vmc-arrow-right:hover:after {
  color: white;
}


.vmc-container img[src$=".svg"] {
  width: 100% !important;
  height: auto !important;
  max-height: 100%;
}

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}


@media screen and (max-width:992px) {
  .vmc-arrow-left {
    left: 10%
  }

  .vmc-arrow-right {
    right: 10%
  }
}