@charset "UTF-8";
/* 文字为主 */
/** 混合指令 **/
/* 带图片、标题的模块样式 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .wh-cen {
  max-width: 1200px;
  margin: 0 auto;
  height: 88px;
  padding: 0 10px;
}
#header .wh-cen > a {
  display: inline-block;
  width: 124px;
  height: 0;
  padding-top: 48px;
  overflow: hidden;
  background-image: url(../img/taoping_logo.png);
}
#header .fr {
  width: 73%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .fr > div {
  position: relative;
  line-height: 88px;
  font-size: 16px;
}
#header .fr > div:last-child {
  margin-right: 0;
  margin-left: 30px;
}
#header .fr > div > a {
  color: #000;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .fr > div > a:hover, #header .fr > div > a.active {
  color: #345AFF;
}
#header ul {
  display: none;
  position: absolute;
  top: 88px;
  left: -44px;
  width: 150px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-animation: drop 0.3s;
          animation: drop 0.3s;
  z-index: 10;
}
#header ul li {
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-bottom: 1px solid #DBDBDB;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header ul li.active, #header ul li:hover {
  background-color: #DBDBDB;
}
#header ul li a {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: #666;
}

footer {
  width: 100%;
}

.foot-top {
  height: 95px;
  background-color: #000;
  text-align: center;
  font-size: 18px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.foot-top > span {
  display: inline-block;
  margin: 0 20px;
  font-size: 26px;
}

.foot-bottom {
  height: 64px;
  line-height: 64px;
  background: #000;
  text-align: center;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #333;
}

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-10%);
    -ms-transform: translateY(-10%); /* IE 9 */
    -webkit-transform: translateY(-10%); /* Safari and Chrome */
  }
  5% {
    opacity: 0.5;
    transform: translateY(-5%);
    -ms-transform: translateY(-5%); /* IE 9 */
    -webkit-transform: translateY(-5%); /* Safari and Chrome */
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%); /* IE 9 */
    -webkit-transform: translateY(0%); /* Safari and Chrome */
  }
}
@-webkit-keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-10%);
    -ms-transform: translateY(-10%); /* IE 9 */
    -webkit-transform: translateY(-10%); /* Safari and Chrome */
  }
  5% {
    opacity: 0.5;
    transform: translateY(-5%);
    -ms-transform: translateY(-5%); /* IE 9 */
    -webkit-transform: translateY(-5%); /* Safari and Chrome */
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -ms-transform: translateY(0%); /* IE 9 */
    -webkit-transform: translateY(0%); /* Safari and Chrome */
  }
}