/* 独有部分 加-pc*/
@media screen and (min-width: 981px) {
  .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;
  }

  .cbcn-pc-flexCol {
    display: flex !important;
    flex-direction: column;
  }

  /* hover动画 */
  .cbcn-pc-hoverScale:hover img,
  .cbcn-pc-hoverScale:hover picture img {
    transform: scale(1.05);
  }

  .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-dom-container .rowCenter2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cbcn-dom-container .ct {
    text-align: center;
  }

  .cbcn-pc-colCenter.lt {
    left: 0;
  }

  .cbcn-pc-colCenter.rt {
    right: 0;
  }

  /* 安全距离 */
  .cbcn-pc-safeRowFlow {
    width: 49em;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
  }

  /* 字体 */
  #cbcn-dom-container {
    --Font-Size-H0: 5.3em;
    --Font-Size-H1: 3.4em;
    --Font-Size-H2: 2.1em;
    --Font-Size-H3: 1.8em;
    --Font-Size-H4: 1.6em;
    --Font-Size-H5: 1.4em;

    --Font-Size-SH: 1.6em;

    --Font-Size-B1: 1em;
    --Font-Size-B2: 0.9em;
    --Font-Size-B3: 0.75em;

    --Font-Size-FN: 0.6em;

    --Font-Size-D1: 3.4em;
    --Font-Size-D2: 2.1em;

    --Title-Spac---Large: 50px;
    --Title-Spac---Medium: 40px;
    --Title-Spac---Regular: 30px;
    --Title-Spac---Small: 15px;
  }
  .cbcn-pc-p222 {
    font-family: "vivoSans-ExtraBold";
    font-size: 11.1em;
    line-height: 110%;
  }
  .cbcn-pc-p200 {
    font-family: "vivoSans-Bold";
    font-size: 200px;
    line-height: 130%;
  }
  .cbcn-pc-p160 {
    font-family: "vivoSans-Bold";
    font-size: 160px;
    line-height: 110%;
  }
  .cbcn-pc-p56 {
    font-family: "vivoSans-ExtraBold";
    font-size: 56px;
    line-height: 120%;
  }
  .cbcn-pc-p30 {
    font-family: "vivoSans-Bold";
    font-size: 30px;
    line-height: 120%;
  }
  .cbcn-pc-p26 {
    font-family: "vivoSans-DemiBold";
    font-size: 26px;
    line-height: 150%;
  }


  /* 视频播放 */
  .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: #262626;
  }

  .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: 3em;
    border-radius: 5em;
  }
  .cbcn-pc-videoBtn.progress::after {
    animation: videoBtn 3s linear forwards;
  }
  @keyframes videoBtn {
    0% { width: 0; }
    100% { width: calc(100% - 0.4em); }
  }

  .cbcn-pc-videoBtn-play {
    width: 2.25em;
    height: 2.25em;
    flex-shrink: 0;
    cursor: pointer;
  }

  .cbcn-pc-videoBtn-play.active {
    animation: videoPlay 3s forwards;
  }
  @keyframes videoPlay {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* 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: 38.2%;
    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: 61.8%;
    width: 0.15em;
    height: 100%;
    background-color: #fff;
    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: 30px;
    left: 30px;
    text-wrap: nowrap;
  }

  .cbcn-drag-desc p {
    padding: 0.5em 0.75em 0.2em;
    border-radius: 2.6em;
    border: 0.769px solid #dedede;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(11.5px);
  }

  .cbcn-drag-img2 .cbcn-drag-desc {
    left: auto;
    right: 30px;
  }
}

/* 相互改写部分 不加-pc */
@media screen and (min-width: 981px) {
  /* 外销锚点 */
  .cbcn-anchor-wrapper {
    position: sticky; top: 0; left: 0; z-index: 100; width: 100%;
  }
  .cbcn-anchor-content {
    gap: 4vw; padding: 0 10vw; background: #000; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10); backdrop-filter: blur(15px); position: relative;
  }
  .cbcn-anchor-point {
    padding: 15px 0; color: rgba(255, 255, 255, 0.50); text-decoration: none;
  }
  .cbcn-anchor-point p{
    font-family: "vivoSans-DemiBold"; font-size: 18px; line-height: 150%; margin: 0;
  }
  .cbcn-anchor-line {
    height: 3px; background: #415FFF; transition: all 0.75s ease-in-out; position: absolute; bottom: 0; left: 10vw;
  }

  .showA {
    position: relative;
    top: 20px;
    opacity: 0;
  }

  /* 安全距离 */
  #cbcn-dom-container .safeCol {
    padding: 120px 0;
  }

  #cbcn-dom-container .safeCol2 {
    padding: 120px 0;
  }

  #cbcn-dom-container .safeTop {
    padding-top: 120px;
  }

  #cbcn-dom-container .safeTop2 {
    padding-top: 120px;
  }

  #cbcn-dom-container .safeBottom {
    padding-bottom: 120px;
  }

  #cbcn-dom-container .safeBottom2 {
    padding-bottom: 120px;
  }

  #cbcn-dom-container .safeRow {
    display: block;
    width: 49em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  #cbcn-dom-container .safeRow2 {
    display: block;
    width: 67.5em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  #cbcn-dom-container .autoPx {
    font-size: 20px !important;
    font-size: 1.0416666667vw !important;
  }

  /* screen-content */
  .cbcn-screen-content {
    margin-top: calc(60px + 5em);
    margin-bottom: 3em;
    width: 50em;
    margin-left: calc(50% - 25em);
  }

  .fix .cbcn-screen-content {
    margin-top: 60px;
    margin-bottom: 0;
    height: calc(100% - 60px);
    position: absolute;
    top: 0;
    left: 0;
  }

  /* 翻页 */
  .cbcn-switchBtnList {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: end;
  }

  .cbcn-switchBtn {
    width: 2em;
    height: 2em;
    cursor: pointer;
    position: relative;
  }

  .cbcn-switchBtn-left {
    transform: rotate(180deg);
  }

  .cbcn-switchBtn.disabled {
    opacity: 0.4;
  }

  /* 图片切换按钮 */
  .switch-photo-btn {
    color: #8c8c8c !important;
  }

  .switch-photo-btn span {
    cursor: pointer;
  }

  .switch-photo-btn span.active {
    color: #000000 !important;
  }

  .cbcn-aiIcon {
    display: block;
    width: 2.95em;
    height: 1.8em;
    position: absolute;
    right: 1.5em;
    top: 1.5em;
    background-image: url("../img/pc/ai.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 50;
  }

  .cbcn-aiIcon.bk {
    background-image: url("../img/pc/ai-b.svg");
  }
}
