/* 独有部分 加-pc*/
@media screen and (min-width: 981px) {
  #cbcn-dom-container .cbcn-pc-180 {
    height: 12.55em;
    font-size: 9em;
    font-style: normal;
    font-weight: 800;
    /* line-height: normal; */
  }

  #cbcn-dom-container .cbcn-pc-130 {
    font-size: 6.5em;
    font-style: normal;
    font-weight: 700;
    /* line-height: 110%; */
  }

  #cbcn-dom-container .cbcn-pc-64 {
    font-size: 2.4em;
    font-style: normal;
    font-weight: 700;
    /* line-height: 110%; */
  }

  .cbcn-pc-fix {
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
  }

  #cbcn-dom-container .cbcn-pc-noWrap {
    text-wrap: nowrap;
    white-space: nowrap;
  }

  /* 盒子布局 */
  .cbcn-pc-flexRow {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cbcn-pc-flexCol {
    display: flex !important;
    flex-direction: column;
  }

  /* hover动画 */
  .cbcn-pc-hoverScale:hover img,
  .cbcn-pc-hoverScale:hover picture img {
    transform: scale(0.95);
  }

  .cbcn-pc-hoverScale img,
  .cbcn-pc-hoverScale picture img {
    transition: transform 0.5s;
  }

  /* 居中 */
  .cbcn-pc-allCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .cbcn-pc-colCenter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  /* 居中 */
  .cbcn-pc-rowCenter1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .cbcn-title.cbcn-pc-rowCenter1 {
    display: flex;
  }

  .cbcn-pc-rowCenter2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .cbcn-pc-colCenter.lt {
    left: 0;
  }

  .cbcn-pc-colCenter.rt {
    right: 0;
  }

  .cbcn-pc-ct {
    text-align: center;
  }

  /* 安全距离 */
  .cbcn-pc-safeRowFlow {
    width: 980px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
  }

  .cbcn-pc-safeColMicro {
    padding: var(--primitives-spacing-100, 100px) 0;
  }

  .cbcn-pc-safeCol {
    padding: var(--primitives-spacing-120, 120px) 0;
  }

  .cbcn-pc-safeTop {
    padding-top: var(--primitives-spacing-120, 120px);
  }

  .cbcn-pc-safeBottom {
    padding-bottom: var(--primitives-spacing-120, 120px);
  }

  .cbcn-pc-safeCol2 {
    padding: var(--primitives-spacing-200, 200px) 0;
  }

  .cbcn-pc-safeTop2 {
    padding-top: var(--primitives-spacing-200, 200px);
  }

  .cbcn-pc-safeBottom2 {
    padding-bottom: var(--primitives-spacing-200, 200px);
  }

  .cbcn-pc-safeRow {
    display: block;
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .cbcn-pc-safeRow2 {
    display: block;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .cbcn-pc-autoPx {
    font-size: 20px !important;
    font-size: 1.0416666667vw !important;
  }

  /* 视频播放 */

  .cbcn-pc-videoBtnList {
    gap: 0.5em;
  }

  .cbcn-pc-videoBtn-box {
    padding: 0 0.94em;
    height: 2.25em;
    gap: 0.5em;
    align-items: center;
    border-radius: 2.25em;
    overflow: hidden;
    background-color: #F0F0F0;
  }

  .cbcn-pc-videoBtn {
    padding: 0.2em;
    cursor: pointer;
    position: relative;

    justify-content: center;
    align-items: center;
  }

  .cbcn-pc-videoBtn::before {
    content: "";
    width: 0.425em;
    height: 0.425em;
    border-radius: 50%;
    background-color: #b3b3b3;
    overflow: hidden;
    transition: all 1s;
  }

  .cbcn-pc-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-pc-videoBtn.active::before {
    width: 2.5em;
    border-radius: 5em;
  }

  .cbcn-pc-videoBtn-play {
    width: 2.25em;
    height: 2.25em;
    flex-shrink: 0;
    cursor: pointer;
  }

  .cbcn-pc-videoBtn-play.active {
    animation: videoPlay 2s forwards;
  }

  @keyframes videoPlay {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }


  .cbcn-video-playDiv {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    overflow: hidden;
    display: none;
  }

  .cbcn-video-playDiv-wrapper {
    width: auto;
    height: 60%;
    overflow: hidden;
  }

  .cbcn-video-playDiv-video {
    height: 100%;
    object-fit: fill;
  }

  .cbcn-video-playDiv-closeBtn {
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 2em;
    right: 2em;
    color: white;
    font-size: 2.5em;
    border-radius: 1em;
    cursor: pointer;
    background: #ffffff24;
    /* line-height: 1.4em; */
    text-align: center;
  }

  /* videoControl */
  .cbcn-pc-videoControl {
    width: 2em;
    height: 2em;
    position: absolute;
    right: 1em;
    bottom: 1em;
    background-image: url("../img/pc/videoControl-rePlay.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 50;
    cursor: pointer;
  }

  .cbcn-pc-videoControl.auto {
    position: static;
  }

  .cbcn-pc-videoControl.play {
    background-image: url("../img/pc/videoControl-play.svg");
  }

  .cbcn-pc-videoControl.pause {
    background-image: url("../img/pc/videoControl-pause.svg");
  }

  .cbcn-pc-videoControl.bk {
    background-image: url("../img/pc/videoControl-rePlay-b.svg");
  }

  .cbcn-pc-videoControl.bk.play {
    background-image: url("../img/pc/videoControl-play-b.svg");
  }

  .cbcn-pc-videoControl.bk.pause {
    background-image: url("../img/pc/videoControl-pause-b.svg");
  }

  .cbcn-pc-videoControl.top {
    bottom: 0;
    top: 1em;
  }

  /* drag 拖拽组件 */
  .cbcn-pc-drag-div {
    width: 100%;
    border-radius: 0.6em;
    overflow: hidden;
    user-select: none;
    position: relative;
  }

  .cbcn-drag-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .cbcn-drag-img2 {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
  }

  .cbcn-drag-img2 img,
  .cbcn-drag-img2 video {
    width: 49em;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    object-position: center;
  }

  .cbcn-drag-controlBtn {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.15em;
    height: 100%;
    background-color: #000;
    cursor: ew-resize;
    z-index: 99;
  }

  .cbcn-drag-controlBtn div {
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .cbcn-drag-desc {
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-wrap: nowrap;
  }

  .cbcn-drag-desc p {
    padding: 8px 16px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.1);
  }

  .cbcn-drag-img2 .cbcn-drag-desc {
    left: auto;
    right: 50px;
  }
}

/* 相互改写部分 不加-pc */
@media screen and (min-width: 981px) {

  /* 外销锚点 */
  .cbcn-anchor-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 100;
    width: 100%;
  }

  .cbcn-anchor-wrapper.active {
    position: fixed;
    top: 20px;
  }

  .cbcn-anchor-content {
    width: 980px;
    padding: 6px;
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: var(--semantic-surface-opacity-quaternary, rgba(0, 0, 0, 0.04));
  }

  .cbcn-anchor-point {
    padding: 8px 16px;
    color: rgba(0, 0, 0, 0.32);
    background-color: transparent;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .cbcn-anchor-point.active {
    color: rgba(0, 0, 0, 0.93);
    background-color: #FFF;
    box-shadow: -0.5px -0.2px 0.5px 0 rgba(255, 255, 255, 0.10) inset, 0.2px 0.5px 1px 0 #FFF inset;
  }

  .showA {
    position: relative;
    top: 20px;
    opacity: 0;
  }

  /* 标题组件 */
  .cbcn-title.cbcn-pc-ct {
    align-items: center;
  }

  /* v60Lite专属 设计稿没有跟组件 */
  .cbcn-title.gap-20 {
    gap: 20px;
  }

  .cbcn-title.gap-8 {
    gap: 8px;
  }

  /* 数据类型 */
  .cbcn-param {
    display: flex;
    flex-direction: column;
  }

  .cbcn-param.cbcn-pc-ct {
    align-items: center;
  }

  .cbcn-param.m {
    gap: var(--primitives-spacing-16, 16px);
  }

  .cbcn-param.sm {
    gap: var(--primitives-spacing-5, 5px);
  }

  .cbcn-param>p:nth-child(1),
  .cbcn-param>h2:nth-child(1),
  .cbcn-param>h3:nth-child(1) {
    width: 100%;
  }

  /* 翻页 */
  .cbcn-switchBtnList {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .cbcn-switchBtn {
    width: 2em;
    height: 2em;
    cursor: pointer;
    position: relative;
  }

  .cbcn-switchBtn-left {
    transform: rotate(180deg);
  }

  .cbcn-switchBtn.disabled {
    opacity: 0.4;
  }

  /* 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: 964px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    border-radius: 24px;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    padding-bottom: 100px;
  }

  .bk .cbcn-popup-content {
    background: rgba(43, 48, 56, 0.6);
  }

  .wt .cbcn-popup-content {
    background: #fff;
  }

  .cbcn-popup-closeBtn-div {
    position: sticky;
    top: 0;
    padding-top: 30px;
    padding-right: 30px;
    text-align: right;
  }

  .cbcn-popup-closeBtn {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 40px;
  }

  .bk .cbcn-popup-closeBtn {
    background: rgba(255, 255, 255, 0.25);
  }

  .wt .cbcn-popup-closeBtn {
    background: rgba(0, 0, 0, 0.25);
  }

  /* 轮播控制器 */
  .cbcn-pc-swiperControl .control {
    width: 2.2em;
    height: 2.2em;

    background-image: url("../img/pc/swiperControl-play.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 50;
    cursor: pointer;
  }

  .cbcn-pc-videoControl .control.auto {
    position: static;
  }

  .cbcn-pc-videoControl .control.pause {
    background-image: url("../images/pc/videoControl-pause.svg");
  }

  /* .cbcn-pc-videoControl.bk {
    background-image: url("../images/pc/videoControl-rePlay-b.svg");
  }

  .cbcn-pc-videoControl.bk.play {
    background-image: url("../images/pc/videoControl-play-b.svg");
  }

  .cbcn-pc-videoControl.bk.pause {
    background-image: url("../images/pc/videoControl-pause-b.svg");
  } */


  .cbcn-wt {
    color: rgba(255, 255, 255, 0.96);
  }
}