@charset "UTF-8";
html body {
  background: #fff;
  width: 100%;
  overflow-x: hidden; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

/*---------导航---------*/
a {
  color: #000;
  text-decoration: none; }

.ssgm-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: white; 
  opacity:.3;
  }

.center-wrap {
  position: relative;
  width: 1120px;
  height: 100%;
  margin: 0 auto; }

.ssgm-logo {
  float: left;
  width: 136px;
  height: 40px;
  font-size: 0;
  margin: 25px 0;
  background: url(../img/png/logo.png) no-repeat 0 0/136px 39px; }

.ssgm-link a.active, .ssgm-link a:hover {
  color: #6eb92b; }

ul.ssgm-link {
  float: left;
  margin-left: 100px;
  font-size: 0; }
  ul.ssgm-link > li {
    float: left;
    position: relative; }
    ul.ssgm-link > li .h_ranks {
      display: inline-block;
      padding: 33px 30px;
      font-size: 16px; }
    ul.ssgm-link > li ul {
      position: absolute;
      background: #fff;
      width: 120px;
      left: 50%;
      margin-left: -60px;
      z-index: 20; }
      ul.ssgm-link > li ul li {
        float: none;
        text-align: center; }
        ul.ssgm-link > li ul li a {
          display: inline-block;
          width: 120px;
          font-size: 14px;
          padding: 10px 0; }
          ul.ssgm-link > li ul li a:hover {
            background: #f5f5f5;
            color: #000; }

/*<!--设置初始化的-->*/
.li_cont {
  height: 0;
  overflow: hidden;
  padding: 0 0 5px;
  filter: alpha(opacity=0);
  opacity: 0; }

.li_cont li {
  filter: alpha(opacity=0);
  opacity: 0;
  *zoom: 1; }

/*划入鼠标出来的效果 下拉列表出现画布*/
.li_cont.nav-cont-show-animation {
  -webkit-animation: nav-cont-show .8s forwards;
  animation: nav-cont-show .8s forwards; }

/*下拉列表 下拉出现动画 若是不喜欢 可以注释这一段代码*/
.li_cont.nav-cont-show {
  height: auto; }
  .li_cont.nav-cont-show li {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation: nav-cont-enter .7s forwards;
    animation: nav-cont-enter .7s forwards;
    /*每一个 li 动画延迟效果*/ }
    .li_cont.nav-cont-show li:nth-child(1) {
      -webkit-animation-delay: 0s;
      animation-delay: 0s; }
    .li_cont.nav-cont-show li:nth-child(2) {
      -webkit-animation-delay: .1s;
      animation-delay: 0.1s; }
    .li_cont.nav-cont-show li:nth-child(3) {
      -webkit-animation-delay: .15s;
      animation-delay: 0.15s; }
    .li_cont.nav-cont-show li:nth-child(4) {
      -webkit-animation-delay: .2s;
      animation-delay: 0.2s; }

/*高度的动画*/
@keyframes nav-cont-show {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    height: 0; }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    height: auto; } }
/*下拉列表 中每一个li 动画效果*/
@-webkit-keyframes nav-cont-enter {
  from {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
    filter: alpha(opacity=0); }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    filter: alpha(opacity=100); } }
/*---------底部---------*/
.footer1 {
  background: #f9f9f9; }

.footer-link {
  padding: 30px 0;
  color: #333333; }

.footer-link dl {
  float: left;
  width: 182px;
  height: 162px;
  border-right: 1px solid #d4d4d4;
  text-align: center; }

.footer-link dl:nth-of-type(1) {
  text-align: left; }

.footer-link dl:nth-of-type(4) {
  width: 373px;
  border-right: 0px; }

.footer-link dl:nth-of-type(4) div {
  width: 220px;
  text-align: left;
  padding-left: 36px; }

.footer-link dl:nth-of-type(4) em {
  font-size: 24px;
  padding-bottom: 12px;
  display: block;
  color: #6eb92b; }

.footer-link dl:nth-of-type(4) p {
  line-height: 28px;
  font-size: 12px; }

.footer-link dl:nth-of-type(4) img {
  width: 100px;
  height: 100px;
  float: right;
  border: 0;
  padding-top: 22px; }

.footer-link dt {
  width: 88px;
  margin: 0 auto;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 10px; }

.footer-link dd {
  width: 88px;
  margin: 0 auto;
  text-align: left;
  line-height: 32px;
  font-size: 12px; }

.footer-link a {
  color: #333333;
  text-decoration: none; }

.footer-link a:hover {
  color: #6eb92b; }

.copyright {
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #343434;
  font-size: 12px;
  color: #FFFFFF; }

/*<!--回到顶部-->*/
.back-top {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: url("../img/top.png") no-repeat;
  z-index: 99999; }

/*动画效果*/
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
/*-----最小屏------*/
.comWin {
  min-width: 1349px; }

@-webkit-keyframes opacityChange {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0; }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }
@keyframes opacityChange {
  0% {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0; }
  100% {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; } }
.opacityChange {
  animation: opacityChange .5s ease-in-out forwards; }

/*友情链接*/
.fbox {
  position: fixed;
  top: 50%;
  right: 0;
  height: 270px;
  width: 60px;
  margin-top: -121px;
  background: url(../img/png/1.png) no-repeat 100% 0;
  z-index: 26; }

.fbox .div {
  width: 60px;
  height: 60px;
  display: block;
  color: #fff;
  margin-bottom: 10px; }

.fbox .div.zx a {
  display: inline-block;
  width: 60px;
  height: 60px; }

.fbox .div .inner {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  right: 70px; }

:root .fbox .div .inner {
  filter: none;

}

/*for IE9*/
.fbox .tnum {
  width: 210px;
  height: 60px;
  top: 0;
  }

.fbox .tnum p {
  padding-right: 12px;
  font-size: 16px;
  text-align: center;
  line-height: 60px; }

.fbox .line {
  height: 1px;
  overflow: hidden;
  background: white; }

:root .fbox .line {
  filter: none; }

/*for IE9*/
.fbox .arrow {
  display: block;
  position: absolute;
  right: -14px;
  top: 20px;
  overflow: hidden;
  width: 14px;
  height: 21px;
  background: url(../img/icon/fbox.png) no-repeat -195px -85px; }

.fbox .qnum {
  width: 159px;
  padding: 5px 18px;
  top: 71px;
  right: 85px !important; }

.fbox .qnum p {
  padding: 10px 0;
  line-height: 15px;
  font-size: 15px; }

.fbox .qnum p.jszc a {
  position: relative;
  left: 78px;
  top: -7px;
  font-size: 15px; }

.fbox a {
  font-size: 15px; }

.fbox .wxnum {
  width: 132px;
  height: 292px;
  top: 120px;
  background: url(./../img/png/1.png) no-repeat -78px -182px !important; }

.fbox .zx {
  width: 60px;
  height: 60px;
  display: block; }

.fbox a {
  color: #fff; }

.fbox a:hover {
  color: #93e44a; }

/*百度商桥样式重置*/
#nb_invite_wrap {
  display: none !important; }

#newBridge .icon-right-center {
  right: 0px !important;
  top: 50%;
  left: auto;
  bottom: auto;
  transform: translate(0, 114px);
  width: 60px !important;
  height: 60px !important;
  /*filter: alpha(opacity=0);*/
  opacity: 0; }

.nb-icon-inner-wrap {
  width: 60px !important;
  height: 60px !important; }

#newBridge .nb-nodeboard-base .nb-nodeboard-contain-base .nb-nodeboard-top {
  background-color: #6EB92B !important; }

#newBridge .nb-nodeboard-base .nb-nodeboard-contain-base .nb-nodeboard-send-btn {
  background-color: #6EB92B !important; }

@media screen and (min-width: 961px) {
  #newBridge.mobile-no-scale .nb-icon-wrap .nb-icon-wrap-base {
    background-size: 0px !important; }

  #newBridge .nb-icon-wrap-0 .nb-icon-wrap-base {
    background: none !important; } }
.cen_fixed {
  position: fixed;
  left: 0;
  top: 90px;
  z-index: 3; }

/*# sourceMappingURL=common.css.map */
