/* --------------------------------- flex布局 --------------------------------- */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.fc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.fce {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.fcc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fcb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.fca {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
/* -------------------------------------------------------------------------- */
/* ---------------------------------- 文本隐藏 ---------------------------------- */
.yc {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}
/* -------------------------------------------------------------------------- */
/* ------------------------------ 设置margin ----------------------------- */
.mr_10 {
  margin-right: 10px;
}
.ml_10 {
  margin-left: 10px;
}
.mb_10 {
  margin-bottom: 10px;
}
/* -------------------------------------------------------------------------- */
/* ------------------------------ 其它 ----------------------------- */
.w_1200 {
  width: 1200px;
  margin: 0 auto;
}
.clearFix {
  zoom: 1;
  /* for IE6 IE7 */
}
.clearFix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: ' ';
  clear: both;
  height: 0;
}
.btn {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:active {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0.9;
}
/* -------------------------------------------------------------------------- */
/* ------------------------------ 动画 ----------------------------- */
@-webkit-keyframes fadeUpIn {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes fadeUpIn {
  0% {
    opacity: 0.5;
    -moz-transform: translateY(6px);
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fadeUpIn {
  0% {
    opacity: 0.5;
    -o-transform: translateY(6px);
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpIn {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -o-transform: translateY(6px);
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUpIn {
  -webkit-animation: fadeUpIn 0.3s;
  -moz-animation: fadeUpIn 0.3s;
  -o-animation: fadeUpIn 0.3s;
  animation: fadeUpIn 0.3s;
}
@keyframes asideIn {
  0% {
    opacity: 0;
    transform: translate(130px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.asideIn {
  animation: asideIn 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  /* 保持在最后一帧状态 */
}
@keyframes opacityIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.opacityIn {
  animation: opacityIn 1s;
  animation-fill-mode: forwards;
  /* 保持在最后一帧状态 */
}
/* -------------------------------------------------------------------------- */
#g_footer {
  border-top: 2px solid #821619;
  position: absolute;
  /*bottom: 0;*/
  left: 0;
  width: 100%;
}
#g_footer .w_1200 .advantage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px dashed #d7d8d9;
}
#g_footer .w_1200 .advantage li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#g_footer .w_1200 .advantage li div {
  margin-left: 19px;
}
#g_footer .w_1200 .advantage li div p {
  font-size: 24px;
  color: #821619;
  margin-bottom: 5px;
}
#g_footer .w_1200 .advantage li div span {
  display: block;
  color: #b1b1b3;
}
#g_footer .w_1200 .advantage li:hover div span {
  color: #821619;
}
#g_footer .w_1200 .nav_contact_code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 40px 0;
}
#g_footer .w_1200 .nav_contact_code > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#g_footer .w_1200 .nav_contact_code > ul li {
  margin-right: 88px;
}
#g_footer .w_1200 .nav_contact_code > ul li a:hover {
  color: #821619;
}
#g_footer .w_1200 .nav_contact_code > ul li .title {
  display: block;
  color: #4d4c4c;
  margin-bottom: 23px;
}
#g_footer .w_1200 .nav_contact_code > ul li div a {
  display: block;
  color: #7e7f80;
  line-height: 30px;
  max-width: 130px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}
#g_footer .w_1200 .nav_contact_code > ul li div a.more {
  color: #d60d13;
  line-height: 48px;
}
#g_footer .w_1200 .nav_contact_code .contact .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}
#g_footer .w_1200 .nav_contact_code .contact .tel dl {
  font-size: 16px;
  font-weight: bold;
  color: #821619;
  line-height: 24px;
  margin-left: 9px;
}
#g_footer .w_1200 .nav_contact_code .contact .online_service {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 174px;
  height: 42px;
  background: #ffd24d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 10px;
}
#g_footer .w_1200 .nav_contact_code .contact .online_service:active {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0.9;
}
#g_footer .w_1200 .nav_contact_code .contact .online_service span {
  color: #821619;
  margin-left: 10px;
}
#g_footer .w_1200 .nav_contact_code .contact > p {
  text-align: center;
  color: #7e7f80;
}
#g_footer .w_1200 .nav_contact_code .qr_code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  transform: translateY(-10px);
}
#g_footer .w_1200 .nav_contact_code .qr_code dt {
  width: 140px;
  text-align: center;
  color: #4d4c4c;
  margin-left: 10px;
}
#g_footer .w_1200 .nav_contact_code .qr_code dt img {
  width: 140px;
  height: 140px;
  box-shadow: 0px 0px 10px 0px rgba(179, 179, 179, 0.35);
  margin-bottom: 8px;
}
#g_footer .addr_filings {
  background: #821619;
  padding: 24px 0;
  text-align: center;
}
#g_footer .addr_filings p {
  font-size: 16px;
  color: #ffffff;
  line-height: 34px;
}
