.show,
.active{
  display: block!important;
}
.plus-detail .img-box{
  display: none;
}
.msg-list{
  display: none;
}
.theme-tabview img{
  display: none;
}


/* dl-guide */

@keyframes dl-guide-show {
  0% {
      transform: translateY(200%);
  }
  100% {
      transform: translateY(0);
  }
}

.dl-guide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color .4s;
  display: none;
  z-index: 100;
}

.dl-guide.show {
  display: block;
  background-color: rgba(0, 0, 0, .85);
}

.dl-guide .i-close {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.dl-guide .i-close:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 1px;
  height: 110px;
  background-color: #fff;
}

.dl-guide .i-close:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../image/download/closed.png) no-repeat;
  transition: transform .4s;
}

.dl-guide .i-close:hover:after {
  transform: rotate(180deg)
}

.dl-guide .i-close:active:after {
  filter: brightness(.8);
}

.dl-guide .box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding-bottom: 20px;
  transform: translateY(200%);
}

.dl-guide.show .box {
  animation: dl-guide-show .4s .4s ease both;
}

.dl-guide .box h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 60px;
}

.dl-guide .box .c {
  margin: 20px 0;
  display: none;
}

.dl-guide .box .c.active {
  display: block;
}

.dl-guide .tips {
  border-radius: 5px;
  background-color: #444444;
  padding: 10px;
  position: absolute;
  left: 25px;
  bottom: 20px;
  width: 300px;
  color: #fff;
  text-align: left;
}

.dl-guide .tips:after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: -16px;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: #444 transparent transparent transparent;
}