/*
 * @Date: 2023-08-14 10:13:23
 * @LastEditTime: 2024-06-25 15:17:39
 * @Description: 滑块相关样式
 */
 .container {
  position: relative;
  width: 295px;
  height: 230px;
  padding: 10px 20px 10px 20px;
}

.block {
  height: 180px;
  position: absolute;
  left: 0;
  top: 0;
}

.image-section {
  height: 180px;
  position: relative;
}

.bg-box {
  width: 100% !important;
  height: 180px;
  top: 0;
  left: 0;
}
.bg {
  /* width: 100%; */
  height: 100%;
}

.sliderContainer {
  position: absolute;
  text-align: center;
  width: 295px;
  height: 40px;
  line-height: 40px;
  margin-top: 15px;
  background: #f7f9fa;
  color: #45494c;
  border: 1px solid #e4e7eb;
  bottom: 10px;
}

.sliderContainer_active .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #1991fa;
}

.sliderContainer_active .sliderMask {
  height: 38px;
  border-width: 1px;
}

.sliderContainer_success .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #52ccba;
  background-color: #52ccba !important;
}

.sliderContainer_success .sliderMask {
  height: 38px;
  border: 1px solid #52ccba;
  background-color: #d2f4ef;
}

.sliderContainer_success .sliderIcon {
  background-position: 0 0 !important;
}

.sliderContainer_fail .slider {
  height: 38px;
  top: -1px;
  border: 1px solid #f57a7a;
  background-color: #f57a7a !important;
}

.sliderContainer_fail .sliderMask {
  height: 38px;
  border: 1px solid #f57a7a;
  background-color: #fce1e1;
}

.sliderContainer_active .sliderText,
.sliderContainer_success .sliderText,
.sliderContainer_fail .sliderText {
  display: none;
}

.sliderMask {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  border: 0 solid #1991fa;
  background: #d1e9fe;
}

.slider {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.2s linear;
}

.slider:hover {
  background: #1991fa;
}

.sliderIcon {
  width: 20px;
  height: 20px;
  background: url(./img/xiangyou.png) no-repeat;
  background-size: cover;
}

.slider-icon {
  background-color: #45494c;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.refreshIcon {
  width: 100%;
  height: 100%;
  background: url(./img/shuaxin.svg) no-repeat;
  background-size: contain;
  z-index: 99999;
}
/* 关闭X按钮 */
#sliderVerifyClose {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 26px;
  cursor: pointer;
}
#sliderVerifyClose a {
  color: #45494c;
}

/* loading */
/* loading */
.loading {
  position: absolute;
  height: 240px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 999;
  display: none;
}

/* loading icon自旋转 */
.loading span {
  position: absolute;
  font-size: 45px;
  top: 35%;
  left: 42%;
  transform: translate(-50%, -50%);
}

.animate-loading {
  animation: spin 1.4s linear infinite;
  color: #555 !important;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
