/* small{font-size:100%;font-weight: normal;} */
a:hover { text-decoration: none}
#footer div, #footer li {
  box-sizing: border-box;
}

.auto {
  width: 1200px;
  margin: 0 auto;
}

.bsBox{
  box-sizing: content-box; 
}

/*占位符*/
input::-webkit-input-placeholder {
  color: #aaaaa8;
}

input:-moz-placeholder {
  color: #aaaaa8;
}

input::-moz-placeholder {
  color: #aaaaa8;
}

input:-ms-input-placeholder {
  color: #aaaaa8;
}

textarea::-webkit-input-placeholder {
  color: #aaaaa8;
}

textarea:-moz-placeholder {
  color: #aaaaa8;
}

textarea::-moz-placeholder {
  color: #aaaaa8;
}

textarea:-ms-input-placeholder {
  color: #aaaaa8;
}

/*滚动条样式*/
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}

body::-webkit-scrollbar-button,
html::-webkit-scrollbar-button {
  display: none;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background-color: #eee;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: #eee;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: rgba(210, 210, 210, 0.48);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #cbcbcb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 0;
}



.pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.pop .bg {
  width: 100%;
  height: 100%;
  background-color: #0b0d16;
  background-color: rgba(11, 13, 22, .9);
}

.pop .popBody {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 1280px; */
  background-color: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.pop .popBox {
  background-color: #fff;
  padding: 50px 90px 60px;
  margin: 0 -90px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pop .close {
  position: absolute;
  top: -65px;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(http://www.gxphoto.net/template/elec_201803_pic/style/images/close.png) no-repeat center;
  cursor: pointer;
}

/* IE低版本升级提示*/
.browserupgrade {
  display: block;
  position: fixed;
  margin: 0;
  width: 100%;
  height: 60px;
  font-size: 15px;
  line-height: 60px;
  z-index: 1000;
  color: #fff;
  text-align: center;
  bottom: 0;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000, endColorstr=#7f000000);
  /*IE8支持*/
}

.browserupgrade strong {
  display: inline-block;
}

.browserupgrade a {
  color: #eee;
  text-decoration: underline;
  font-size: 18px;
  display: inline-block;
}

.browserupgrade a:hover {
  color: #eee
}

/* animated*/
@-webkit-keyframes ban_bg {
  0% {
    width: 0;
  }

  100% {
    width: 108%;
    width: -moz-calc(100% + 20px);
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
  }
}

@keyframes ban_bg {
  0% {
    width: 0;
  }

  100% {
    width: 108%;
    width: -moz-calc(100% + 20px);
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
  }
}

@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}

@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}

@-webkit-keyframes arrow-movement {
  0% {
    bottom: 12px
  }

  70% {
    bottom: 0;
  }

  to {
    bottom: 12px;
  }
}

@keyframes arrow-movement {
  0% {
    bottom: 12px
  }

  70% {
    bottom: 0;
  }

  to {
    bottom: 12px;
  }
}

@-webkit-keyframes h_map {
  0% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes h_map {
  0% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes circle_right {
  0% {
    transform: rotate(-45deg);
  }

  50%,
  100% {
    transform: rotate(135deg);
  }
}

@keyframes circle_right {
  0% {
    transform: rotate(-45deg);
  }

  50%,
  100% {
    transform: rotate(135deg);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}

.ban_bg {
  -webkit-animation-name: ban_bg;
  animation-name: ban_bg
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

.arrow-movement {
  -webkit-animation-name: arrow-movement;
  animation-name: arrow-movement
}

.h_map {
  -webkit-animation-name: h_map;
  animation-name: h_map
}

.circle_right {
  -webkit-animation-name: circle_right;
  animation-name: circle_right
}
.clear-float::after{
  content: "";
  display: block;
  /* width: 100%; */
  height: 0;
  clear: both;
}

#wrapper{
  overflow: hidden;
}
#footer .dt {
    border-top: 0;
    width: auto;
}