/*!
 * gxzf20231
 * @version: 0.0.1
 * @author: pangzhicui
 * @update: 2023-10-13 11:42:51
 */
@charset "UTF-8";
.leader-toast-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.leader-toast-box .close {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -450px;
  margin-left: 330px;
  width: 56px;
  height: 56px;
  background-image: url(../../imagesq/gxzf/close2.png);
  background-size: cover;
}
.leader-toast-box .leader-toast {
  width: 697px;
  height: 848px;
  background-image: url(../../imagesq/gxzf/toast_bg.png);
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 105px 72px 0 86px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 50px;
}
.leader-toast-box .leader-toast-tab {
  text-align: center;
  margin-bottom: 35px;
}
.leader-toast-box .leader-toast-tab li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *display: inline;
  zoom: 1;
  width: 167px;
  line-height: 36px;
  background-color: #fff0e3;
  border-radius: 19px;
  border: solid 1px #c67b3b;
  font-size: 20px;
  color: #ac6a36;
  margin-left: 11px;
  cursor: pointer;
}
.leader-toast-box .leader-toast-tab li div {
  position: relative;
  z-index: 2;
}
.leader-toast-box .leader-toast-tab li:first-child {
  margin-left: 0;
}
.leader-toast-box .leader-toast-tab li.active {
  border: none;
  color: #fff;
  position: relative;
}
.leader-toast-box .leader-toast-tab li.active div {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7a492f),
    color-stop(47%, #a26335),
    to(#c97d3b)
  );
  background-image: -webkit-linear-gradient(
    left,
    #7a492f 0,
    #a26335 47%,
    #c97d3b 100%
  );
  background-image: linear-gradient(
    90deg,
    #7a492f 0,
    #a26335 47%,
    #c97d3b 100%
  );
  border-radius: 19px;
}
.leader-toast-box .leader-toast-tab li.active:before {
  content: "";
  position: absolute;
  left: 76px;
  top: 30px;
  width: 17px;
  height: 15px;
  background-image: url(../../imagesq/gxzf/triangle.png);
  background-size: cover;
  z-index: 1;
}
.leader-toast-box .leader-content {
  height: 252px;
  display: none;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1px;
  color: #7a492f;
  padding-left: 22px;
}
.leader-toast-box .leader-content.active {
  display: block;
}
.leader-toast-box .leader-content li {
  list-style: decimal;
}
.leader-toast-box .leader-submit-btn {
  width: 138px;
  height: 138px;
  background-image: url(../../imagesq/gxzf/submit.png);
  background-size: cover;
  margin: 42px auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  cursor: pointer;
}
.leader-toast-box .leader-submit-btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.leader-toast-box .leader-under-tips {
  font-size: 17px;
  color: #d60a0a;
  line-height: 2;
  text-align: center;
}
.leader-toast-box .leader-under-tips a {
  font-weight: 700;
  color: #2b54a5;
}
