.cge-waiting-warp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999
}
@-webkit-keyframes WaitIconAm {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}
@keyframes WaitIconAm {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}
.cge-waiting-warp .cge-waiting-mask {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5)
}
.cge-waiting-warp .cge-waiting-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  padding: 20px;
  background: rgba(0, 0, 0, .5);
  border-radius: 5px;
  text-align: center;
  color: #fff
}
.cge-waiting-content .wait-icon {
  width: 2em;
  height: 2em;
  border: 2px solid rgba(0, 0, 0, .8);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: 0 auto 10px auto
}
.cge-waiting-content .wait-icon:before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  position: absolute;
  top: -2px;
  left: -2px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: WaitIconAmlinear 1s infinite;
  animation: WaitIconAm 1s linear infinite
}
</style > <style type="text/css" > .cge-message-warp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9998
}
@-webkit-keyframes FadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
  }
}
@keyframes FadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
  }
}
@-webkit-keyframes FadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
  }
}
@keyframes FadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
  }
}
.cge-message-warp .cge-message-mask {
  position: relative;
  width: 100%;
  height: 100%
}
.cge-message-warp .cge-message-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-family: 黑体, 宋体, Franklin Gothic Medium, Arial Narrow, Arial, sans-serif;
  animation: FadeInDown .4s forwards;
  -webkit-animation: FadeInDown .4s forwards
}
.cge-message-warp .cge-message-content.close {
  animation: FadeOutDown .4s forwards;
  -webkit-animation: FadeOutDown .4s forwards
}
.cge-message-warp .cge-message-header {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  padding: 0 15px
}
.cge-message-warp .cge-message-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #606060;
  padding: 0 15px;
  font-size: 14px
}
.cge-message-warp .cge-message-body .icon {
  vertical-align: middle;
  text-align: center
}
.cge-message-warp .cge-message-body .message {
  margin-top: 10px;
  margin-bottom: 20px;
  vertical-align: middle;
  text-align: center
}
.cge-message-warp .cge-message-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #dadada;
  color: #606060;
  font-size: 16px
}
.cge-message-warp .cge-message-footer .btn {
  display: inline-block;
  padding: 10px 15px;
  border-right: 1px solid #dadada;
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
  text-align: center
}
.cge-message-warp .cge-message-footer .cge-message-confirm-btn {
  color: #013b69;
  border-right: none
}
</style > <style type="text/css" > .cge-loading-warp {
  position: fixed;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  -webkit-transition: all .6s ease-out;
  transition: all .6s ease-out
}
.cge-loading-warp.close {
  opacity: 0
}
.cge-loading-warp .cge-loading-progress-box {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(79, 76, 76, .3);
  text-align: center;
  color: #000;
  width: 100%;
  height: 2px
}
.cge-loading-warp .cge-loading-progress-box .cge-loading-progress {
  position: absolute;
  width: 0;
  height: 100%;
  background: #2196f3;
  top: 0;
  left: 0
}
.cge-container.menu-select.active a span {
  color: #FFFFFF;
  text-decoration: none;
}
.cge-container .menu-select a {
  color: #363636;
  text-decoration: none;
}
.cge-container .menu-select a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.cge-container .menu-select:hover a {
    color: #FFFFFF;
    text-decoration: none;
}

.cge-a33d06c426b88df9 a span{ color:#2a1f1c;text-decoration: none;}
.cge-a33d06c426b88df9 a{text-decoration: none;}