/* 独有部分 加-wap*/
@media screen and (max-width: 980px) {

  /* 常用部分 */
  #cbcn-dom-container {
    font-size: 20px !important;
    font-size: 5.333333333333334vw !important;
    text-size-adjust: none !important;
    -webkit-text-size-adjust: none !important;
    /* 禁止字体缩放 */
    -moz-text-size-adjust: none !important;
    -webkit-tap-highlight-color: transparent;
    /* 禁用点击高亮 */
  }

  .cbcn-wap-fix {
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
  }

  /* 盒子布局 */
  .cbcn-wap-flexRow {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cbcn-wap-flexCol {
    display: flex !important;
    flex-direction: column;
  }

  .cbcn-wap-noWrap {
    text-wrap: nowrap;
    white-space: nowrap;
  }

  /* 背景渐变 */
  .cbcn-wap-bgColor-bk {
    background: linear-gradient(180deg, #000 91.72%, #0d0d0d 100%);
  }

  /* 居中 */
  .cbcn-wap-allCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cbcn-wap-colCenter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .cbcn-wap-rowCenter1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .cbcn-title.cbcn-wap-rowCenter1 {
    display: flex;
  }

  .cbcn-wap-rowCenter2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .cbcn-wap-colCenter.lt {
    left: 0;
  }

  .cbcn-wap-colCenter.rt {
    right: 0;
  }

  .cbcn-wap-ct {
    text-align: center;
  }

  /* 视频播放 */
  .cbcn-video-playDiv {
    display: none;
  }

  .cbcn-video-playDiv-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
  }

  .cbcn-video-playDiv-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cbcn-wap-videoControl {
    width: 2em;
    height: 2em;
    position: relative;
    background-image: url("../img/wap/videoControl-rePlay.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 50;
    cursor: pointer;
  }

  .cbcn-wap-videoControl.play {
    background-image: url("../img/wap/videoControl-play.svg");
  }

  .cbcn-wap-videoControl.pause {
    background-image: url("../img/wap/videoControl-pause.svg");
  }

  .cbcn-wap-videoControl.bk {
    background-image: url("../img/wap/videoControl-rePlay-b.svg");
  }

  .cbcn-wap-videoControl.bk.play {
    background-image: url("../img/wap/videoControl-play-b.svg");
  }

  .cbcn-wap-videoControl.bk.pause {
    background-image: url("../img/wap/videoControl-pause-b.svg");
  }

  /* 安全距离 */
  .cbcn-wap-safeCol {
    padding: var(--primitives-spacing-100, 5em) 0;
  }

  .cbcn-wap-safeTop {
    padding-top: var(--primitives-spacing-100, 5em);
  }

  .cbcn-wap-safeBottom {
    padding-bottom: var(--primitives-spacing-100, 5em);
  }

  .cbcn-wap-safeCol2 {
    padding: var(--primitives-spacing-80, 4em) 0;
  }

  .cbcn-wap-safeTop2 {
    padding-top: var(--primitives-spacing-80, 4em);
  }

  .cbcn-wap-safeBottom2 {
    padding-bottom: var(--primitives-spacing-80, 4em);
  }

  .cbcn-wap-safeRow {
    width: 100%;
    padding: 0 1em;
  }

  /* 视频播放 */
  .cbcn-wap-videoBtnList {
    gap: 0.5em;
  }

  .cbcn-wap-videoBtn-box {
    padding: 0 1em;
    height: 1.8em;
    gap: 0.6em;
    align-items: center;
    border-radius: 2.25em;
    overflow: hidden;
    background-color: #EBEBEB;
  }

  .cbcn-wap-videoBtn {
    padding: 0.2em;
    cursor: pointer;
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .cbcn-wap-videoBtn::before {
    content: "";
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background-color: #b3b3b3;
    overflow: hidden;
    transition: all 1s;
  }

  .cbcn-wap-videoBtn::after {
    content: "";
    width: 0;
    height: calc(100% - 0.4em);
    background-color: #fff;
    position: absolute;
    left: 0.2em;
    top: 0.2em;
    border-radius: 5em;
    overflow: hidden;
  }

  .cbcn-wap-videoBtn.active::before {
    width: 2.3em;
    border-radius: 5em;
  }

  .cbcn-wap-videoBtn-play {
    width: 1.8em;
    height: 1.8em;
    flex-shrink: 0;
    cursor: pointer;
  }

  .cbcn-wap-videoBtn-play.active {
    animation: videoPlay 2s forwards;
  }

  @keyframes videoPlay {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
}

/* 相互改写部分 不加-wap */
@media screen and (max-width: 980px) {

  /* 外销锚点 */
  .cbcn-anchor-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
  }

  .cbcn-anchor-content {
    padding: 0 15px;
    background: #FFF;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(15px);
    position: relative;
    justify-content: space-between;
  }

  .cbcn-anchor-point {
    padding: 16px 0;
    color: rgba(0, 0, 0, 0.40);
    text-decoration: none;
  }

  .cbcn-anchor-point p {
    font-family: "vivoSans-DemiBold";
    font-size: 13px;
    line-height: 150%;
    margin: 0;
  }

  .cbcn-anchor-line {
    height: 2px;
    background: #415FFF;
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
    left: 15px;
  }


  /* 标题组件 */
  .cbcn-title.cbcn-wap-ct {
    align-items: center;
  }

  /* v60Lite专属 设计稿没有跟组件 */
  .cbcn-title.gap-20 {
    gap: 1.2em;
  }

  .cbcn-title.gap-10 {
    gap: 1em;
  }

  .cbcn-title.gap-8 {
    gap: 0.2em;
  }


  /* 数据类型 */
  .cbcn-param {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-date-m, 0.25em);
  }

  .cbcn-param.cbcn-wap-ct {
    align-items: center;
  }

  .cbcn-param.m {
    gap: var(--spacing-date-m, 0.1em);
  }

  /* 翻页 */
  .cbcn-switchBtnList {
    display: flex;
    justify-content: flex-end;
    gap: 0.6em;
  }

  .cbcn-switchBtnList .cbcn-wap-flexRow {
    width: 60%;
    gap: 0.6em;
    justify-content: flex-end;
  }

  .cbcn-switchBtn-left,
  .cbcn-switchBtn-right {
    width: 2em;
    height: 2em;
    cursor: pointer;
    position: relative;
  }

  .cbcn-switchBtn-left {
    transform: rotate(180deg);
  }

  .cbcn-switchBtn-left.disabled,
  .cbcn-switchBtn-right.disabled {
    opacity: 0.25;
  }

  /* popup */
  .cbcn-popup {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    overflow: auto;
    background-color: transparent;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .bk .cbcn-popup {
    background: rgba(0, 0, 0, 0.8);
  }

  .wt .cbcn-popup {
    background: #ebebeb;
  }

  .cbcn-popup-content {
    position: relative;
    width: calc(100vw - 2em);
    padding: 0 1em 1em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    border-radius: 24px;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    padding-bottom: 50px;
  }

  .bk .cbcn-popup-content {
    background: #0d0d0d;
  }

  .wt .cbcn-popup-content {
    background: #fff;
  }

  .cbcn-popup-closeBtn-div {
    position: sticky;
    top: 50px;
    padding-top: 1em;
    padding-right: 1em;
    text-align: right;
  }

  .cbcn-popup-closeBtn {
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    border-radius: 1.8em;
    background: var(--bottom-bg-l2, rgba(255, 255, 255, 0.25));
  }

  .cbcn-wt {
    color: rgba(255, 255, 255, 0.96);
  }
}