* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#MX_banner {}

.mxcontainer {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.carousel .item {

  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  height: auto;
  cursor: pointer;
  max-height: 820px;

}

.item>img {
  width: 100%;
  height: 100%;
}


.carousel .unactive {
  animation: fadeOut 2s;
}

.carousel .active {
  animation: fadeUp 2s;
  display: inline-block;

}

@keyframes fadeOut {
  0% {
    opacity: 1;
    display: inline-block;
  }

  25% {
    opacity: 0.75;
  }

  50% {
    opacity: 0.5;
  }

  75% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
    display: none;
  }
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    display: none;
  }

  25% {
    opacity: 0.25;
    display: inline-block;
  }

  50% {
    opacity: 0.5;
  }

  75% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
    display: inline-block;
  }
}

.indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}



.arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: red;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.notice {
  padding-left: 100px;
  display: flex;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-wrap {
  width: 100%;
  height: 32px;
  line-height: 32px;
  background-color: #fff;
  box-sizing: border-box;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

.notice .img-notice {
  display: flex;
  width: 110px;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
}

.img-notice span {
  color: #5d5d5d;
  font-size: 18px;
}

.img-notice img {
  width: 20px;
  height: 20px;
}

.marquee-content {
  white-space: nowrap;
  display: inline-block;
  color: #686868;
 
  cursor: pointer;
  display: inline-block;
   
  animation: marqueeTransform 16s linear infinite;
}


@keyframes marqueeTransform {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-200%, 0);
  }
}

.more-notice {
  display: inline-block;
  cursor: pointer;
}

.mx-dialog-wrap {
  /* position: relative; */
}

.bg-dialog-notice {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9998;
  background: #0e0e0e;
  opacity: 0.8;
  top: 0;
  left: 0;
}

.bg-dialog-content-notice {
  position: absolute;
  z-index: 9999;
  width: 1020px;
  height: 605px;
  background: url("https://file-new.xmbfizvs.com/bg_logo.png") center no-repeat;
  background-size: cover;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
}

.bg-dialog-content-notice .notice-close {
  position: absolute;
  right: 0;
  top: -70px;
  cursor: pointer;
}

.cont-notice__left {
  position: relative;
}

.app-download {
  /* position: absolute; */
  /* top: 0;
  left: 0; */
  width: 130px;
  height: 130px;
  background: linear-gradient(to bottom, #E2E2E2, #676767, #e6e6e6);
  border-radius: 8px;
  box-shadow: 0pt 4pt 12pt 0pt rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cont-notice__left p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 130px;
  text-align: center;
}

.cont-notice__right {
  position: absolute;
  left: 500px;
  top: 70px;
  right: 25px;
  font-size: 24px;
  color: #6D7278;
  font-weight: 500;
  font-family: PingFangMedium;
}


.cont-notice__right h2 {
  font-family: YouSheBiaoTiHei;
  font-size: 46px;
  color: #333333;
  letter-spacing: 0.88px;
  text-align: center;
}


.cont-notice__right .btn-login {
  width: 328px;
  height: 126px;
  background: url("https://file-new.xmbfizvs.com/btn_logger.png") center no-repeat;
  background-size: cover;
  margin: auto;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.50);
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  padding-left: 35px;
  cursor: pointer;
}