/* 标题 在 小于460px 尺寸下字号 */
body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  background: #fff;

}
*{
  -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
  -webkit-user-select:none; /*webkit浏览器*/
  -khtml-user-select:none; /*早期浏览器*/
  -moz-user-select:none; /*火狐*/
  -ms-user-select:none;  /*IE10*/
  user-select:none;

}
.stop-copy-text {
  position: relative;
}
.stop-copy-text:after {
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left:0;
  /*background: rgba(0,0,0,.3);*/
  z-index: 9;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #333;
  text-decoration: none;
}
p {
  margin: 0;
  padding: 0;
}
[v-cloak] {
  display: none!important;
}
/* 遮罩 目前没有使用 */
#shadowDiv {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #fff;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}
#shadowDiv .circular {
  height: 42px;
  width: 42px;
  animation: rotating 2s linear infinite;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
/* 顶部图片统一样式 */
.neiye {
  height: 400px!important;
}
.top-view-img {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.top-banner {
  width: 100%;
  position: relative;
}
.top-banner .swiper-img-div {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.top-view-img .brand-title-wrap,
.top-banner .brand-title-wrap {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 18%;
  z-index: 5;
  display: flex;
  justify-content: center;
}
.brand-title-center {
  top: 50% !important;
  transform: translateY(-50%);
}
.brand-title {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  box-sizing: border-box;
}
.brand-title > p {
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  body {
    padding-bottom: 0;
  }
  .top-view-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% top;
  }
  .top-banner .swiper-img-div {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 60% top;
  }
  .brand-title > p {
    font-size: 30px!important;
  }
}
@media only screen and (max-width: 460px) {
  .neiye {
    height: 166px!important;
  }
  .top-view-img {
    height: 250px;
  }
  .top-banner .swiper-img-div {
    height: 166px;
  }
  .brand-title > p {
    font-size: 14px!important;
  }
}
/*# sourceMappingURL=common.css.map */