[v-cloak] {
  display: none !important;
}
.wow {
  visibility: hidden;
}

/* pc 端 媒体查询 */
@media screen and (min-width: 769px) {
  .common-container {
    width: 1376px;
    margin: 0 auto;
  }
  .more-wrap {
    width: 181px;
    height: 50px;
    background-color: #BB7A51;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
  }
  .more-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0px 11px 22px 0px rgba(187, 122, 81, 0.36);
  }

  /* 新闻页 二级导航 和 面包屑 */
  .nav-wrap{
    border-bottom: 1px solid #EFF0F1;
  }
  .nav-pub{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 1376px){
  .common-container{
    margin: 0;
  }
}

/* 移动端 媒体查询 */
@media screen and (max-width:768px){
  /* 新闻页 二级导航 和 面包屑 */
  .nav-wrap .crumb-wrap{
    display: none;
  }
}

/* home 动画 */
.bgTransition {
  overflow: hidden;
  animation-name: bgTransition;
  -webkit-animation-name: bgTransition;
  animation-duration: 2s;
}
@keyframes bgTransition {
  from {
    background-position-y: 1000px;
  }
  to {
    background-position-y: 0%;
  }
}
@-webkit-keyframes bgTransition {
  from {
    background-position-y: 1000px;
  }
  to {
    background-position-y: 0%;
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
