/**
 * aui-slide.css 轮播样式
 * verson 0.0.2
 * http://www.auicss.com
 * @todo more things to abstract, e.g. Loading css etc.
 * Licensed under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.aui-slide-wrap {
  display: block;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}

.aui-slide-wrap .aui-slide-node {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  overflow: hidden;
}

.aui-slide-node-center {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  -moz-box-pack: center;
  -webkit-box-pack: center;
  box-pack: center;
}

.aui-slide-node-middle {
  display: -moz-box;
  display: -webkit-box;
  display: box;
  -moz-box-align: center;
  -webkit-box-align: center;
  box-align: center;
}

.aui-slide-node img {
  width: 100%;
  height: 100%;
}

.aui-slide-page-wrap {
  width: 100%;
  height: 1.15rem;
  line-height: 1.15rem;
  position: absolute;
  padding: 0;
  left: 0;
  right: 0;
  bottom: 0.19rem;
  z-index: 1;
  text-align: center;
  display: none;
}

.aui-slide-page-dot {
  position: relative;
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  list-style: none;
  margin: 0.19rem 0.12rem 0 0.12rem;
  background: #ffffffb3;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.aui-slide-page-line {
  position: absolute;
  bottom: -0.54rem;
  height: 1px !important;
  position: relative;
  display: inline-block;
  background: #eeeeee;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.aui-slide-page-active {
  background: var(--primary);

from {
  opacity: 0.3;
}

to {
  opacity: 1
}

}

.aui-slide:hover .aui-slide-tab {
  opacity: 1;
}

.aui-slide-tab {
  transition: opacity 0.2s linear 0s;
  opacity: 0;
  position: absolute;
  width: 1.5rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  top: calc(50% - 1.5rem);
  cursor: pointer;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  text-shadow: 0.04rem 0.04rem 0.15rem #4e4e4e;
}

.aui-slide-tab:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.aui-slide-tab i {
  font-size: 1rem;
}

.aui-slide-tab-right {
  right: 0;
}