/* 一些共用部分预设(部分地方样式有重复，先注释) */
/* .dz-page {
  padding-top: 70px;
}
@media screen and (min-width: 769px) {
  .dz-page {
    padding-top: 0;
  }
} */

/* 共用wrapper */
.dz_common-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
}
.dz_common-wrapper-2 {
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  /* .dz_common-wrapper {
    width: 84%;
  }
  .dz_common-wrapper-2 {
    width: 80%;
  } */
}

/* 共用二级导航 */
.dz_common-heading {
  color: #1A1A1A;
  background-color: #F7F7F7;
}
.dz_common-heading * {
  box-sizing: border-box;
}
.dz_common-heading-wrapper {
  padding: 40px 30px 0;
}
.dz_common-heading .dz_heading-title {
  display: block;
  margin: 0 0 15px 0;
  color: #002D4F;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.dz_heading_sumtitle_mobi{
  font-size: 20px;
  color: #929292;
  margin:0 0 15px 0;
}
.dz_heading-nav-cont {
  width: 100%;
  overflow: auto;
}
/* .dz_heading-nav-wrap {
  width: 500%;
} */
.dz_heading-nav {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.dz_heading-nav li {
  display: inline-block;
  height: 50px;
  margin: 0 40px 0 0;
  font-size: 15px;
  line-height: 50px;
}
.dz_heading-nav li:last-child {
  margin: 0;
}
.dz_heading-nav li a {
  position: relative;
  display: block;
  color: inherit;
}
.dz_heading-nav li a .link-text::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 3px;
  background-color: #002D4E;
}
a.active .link-text{
  font-weight: 700;
}
.dz_heading-nav li a.active .link-text::before {
  display: block;
}
@media screen and (min-width: 769px) {
  .dz_common-heading {
    height: 100px;
  }
  .dz_common-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
  }
  .dz_common-heading .dz_heading-title {
    margin: 0;
    color: #002D4F;
    font-size: 24px;
  }
  .dz_heading-nav-cont {
    width: auto;
    margin: 0;
  }
  .dz_heading-nav-wrap {
    width: auto;
  }
  /* .dz_heading-nav {
    font-size: 0;
  } */
  .dz_heading-nav li {
    height: 100px;
    margin: 0 40px 0 0;
    line-height: 100px;
  }
  .dz_heading-nav li:last-child {
    margin: 0;
  }
  .dz_heading-nav li a {
    position: static;
  }
  .dz_heading-nav li a .link-text {
    position: relative;
  }
  .dz_heading-nav li a .link-text::before {
    bottom: -20px;
  }
}

/* 自行车专用件共用导航 */
.dz_bicycle-header{
  background:  #FFFFFF;
  color: #1A1A1A;
  border-bottom: 1px solid #d2d2d2;
}
.dz_bicycle-nav {
  margin: 0;
  padding: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}
.dz_bicycle-nav li {
  display: inline-block;
  height: 55px;
  /* margin: 0 50px 0 0; */
  line-height: 55px;
  font-size: 16px;
}
.dz_bicycle-nav li:last-child {
  margin: 0;
}
.dz_bicycle-nav li span {
  position: relative;
  display: block;
  color: inherit;
  font-weight: 500;
  cursor: pointer;
}
.dz_bicycle-nav li span::before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 3px;
  background-color: #1A1A1A;
}
.dz_bicycle-nav li.active span::before {
  display: block;
}
.dz_bicycle-nav li.active span{
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .dz_bicycle-header{
    background: #E5E5E5;
    color: #002D4F;
    border-bottom: none ;
  }
  .dz_bicycle-nav{
    display: block;
  }
  .dz_bicycle-nav li {
    display: inline-block;
    height: 100px;
    margin: 0 65px 0 0;
    line-height: 100px;
    font-size: 18px;
  }
  .dz_bicycle-nav li span {
    font-weight: 400;
  }
  .dz_bicycle-nav li span::before {
    bottom: 20px;
    background-color: #002D4E;
  }
  .dz_bicycle-nav li.active span{
    font-weight: 700;
  }
}

/* 共用带动效按钮 */
.dz_animate-btn {
  position: relative;
  overflow: hidden;
  font-weight:bold
}
.dz_animate-btn.common-size {
  display: inline-block;
  width: 160px;
  font-size: 16px;
  line-height: 45px;
  color: #fff;
  border: 1px solid;
  background-color: #002D4E;
}
.dz_animate-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -110%;
  left: -80%;
  width: 50px;
  height: 300%;
  background: #fff;
  opacity: 0.2;
  transform: rotate(35deg);
  transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
}
.dz_animate-btn.dark-type::after {
  background: #002D4E;
}
.dz_animate-btn:hover::after {
  left: 120%;
  transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
}


/* 视频文章列表-视频弹窗 */
.full-screen-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}

.full-screen-video video {
  width: 100%;
  max-height: 100%;
}

.full-screen-video.hide {
  display: none !important;
}

.full-screen-video-wrap {
  box-sizing: border-box;
  position: relative;
  top: 40%;
  left: 50%;
  z-index: 999;
  /* width: 84%; */
  width: 70%;
  max-height: 80%;
  padding-top: 30px;
  transform: translate(-50%, -50%);
}

.dz_postVideo_close-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 24px;
}

.dz_postVideo_close-btn .DXIcon {
  font-size: 24px;
}

.full-screen-video-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .7;
}

.full-screen-video-wrap iframe {
  width: 100%;
}