/* one-common-pc.css */

/* 独有部分 加-pc*/
@media screen and (min-width: 1024px) {
  #one-dom-container .one-pc-autoPx {
    font-size: 20px;
    font-size: 1.0416666667vw !important;
  }

  #one-dom-container {
    font-size: 20px;
  }

  #one-dom-container p.pc-ct {
    text-align: center;
  }

  #one-dom-container .one-pc-fix {
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
  }

  #one-dom-container .one-pc-noWrap {
    text-wrap: nowrap;
    white-space: nowrap;
  }

  /* 安全距离 */
  #one-dom-container .pc-safeRow {
    display: block;
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  #one-dom-container .one-pc-fix .pc-safeRow {
    height: 100vh;
  }

  #one-dom-container .pc-safeCol {
    padding: 5em 0;
  }

  #one-dom-container .pc-safeCol2 {
    padding: 12em 0;
  }

  #one-dom-container .pc-safeTop {
    padding-top: 5em;
  }

  #one-dom-container .pc-safeBottom {
    padding-bottom: 5em;
  }

  #one-dom-container .pc-safeTop2 {
    padding-top: 12em;
  }

  #one-dom-container .pc-safeBottom2 {
    padding-bottom: 12em;
  }

  /* 盒子布局 */
  #one-dom-container .one-pc-flexRow {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  #one-dom-container .one-pc-flexCol {
    display: flex !important;
    flex-direction: column;
  }

  #one-dom-container .one-pc-flexRow.pcjs,
  #one-dom-container .one-pc-flexCol.pcjs {
    justify-content: space-between;
  }

  #one-dom-container .one-pc-flexRow.pcjc,
  #one-dom-container .one-pc-flexCol.pcjc {
    justify-content: center;
  }

  #one-dom-container .one-pc-flexRow.pcac,
  #one-dom-container .one-pc-flexCol.pcac {
    align-items: center;
  }

  /* hover动画 */
  #one-dom-container .one-pc-hoverScale:hover>img,
  #one-dom-container .one-pc-hoverScale:hover>picture>img {
    transform: scale(1.05);
  }

  #one-dom-container .one-pc-hoverScale>img,
  #one-dom-container .one-pc-hoverScale>picture>img {
    transition: transform 0.5s;
  }


  p.one-pc-wt {
    color: #fff !important;
  }

  /* 居中 */
  #one-dom-container .one-pc-allCenter {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #one-dom-container .one-pc-rowCenter1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  #one-dom-container .one-pc-rowCenter2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #one-dom-container .one-pc-colCenter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  #one-dom-container .one-pc-colCenter.lt {
    left: 0;
  }

  #one-dom-container .one-pc-colCenter.rt {
    right: 0;
  }

  /* drag 拖拽组件 */
  #one-dom-container .one-pc-drag-div {
    width: 100%;
    border-radius: 0.6em;
    overflow: hidden;
    user-select: none;
    position: relative;
  }

  #one-dom-container .one-drag-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

  }

  #one-dom-container .one-drag-img2 {
    width: 38.2%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
  }

  #one-dom-container .one-drag-img2 img,
  #one-dom-container .one-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;
  }

  #one-dom-container .one-drag-controlBtn {
    position: absolute;
    top: 0;
    left: 61.8%;
    width: 0.15em;
    height: 100%;
    background-color: #fff;
    cursor: ew-resize;
    z-index: 99;
  }


  #one-dom-container .one-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;
  }

  #one-dom-container .one-drag-desc {
    position: absolute;
    bottom: 30px;
    left: 30px;
    text-wrap: nowrap;
  }

  #one-dom-container .one-drag-desc p {
    padding: 0.2em 0.75em;
    border-radius: 2.6em;
    border: 0.769px solid #DEDEDE;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(11.5px);
  }

  #one-dom-container .one-drag-img2 .one-drag-desc {
    left: auto;
    right: 30px;
  }
}

/* 相互改写部分 不加-pc */
@media screen and (min-width: 1024px) {

  /* 标题+正文 */
  #one-dom-container .one-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* 横向标题 */
  #one-dom-container .one-title.row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }


  #one-dom-container .one-title.ct {
    align-items: center;
    text-align: center;
  }

  #one-dom-container .one-title.pcct {
    align-items: center;
    text-align: center;
  }

  #one-dom-container .one-title.row {
    flex-direction: row;
    justify-content: space-between;
  }

  #one-dom-container .one-title.row>p,
  #one-dom-container .one-title.row>div {
    width: calc(50% - 4px);
  }

  #one-dom-container .one-title.b>p:last-of-type {
    margin-top: 50px
  }

  #one-dom-container .one-title.m>p:last-of-type {
    margin-top: 36px;
  }

  #one-dom-container .one-title.sr>p:last-of-type {
    margin-top: 26px;
  }

  #one-dom-container .one-title>p:last-of-type {
    margin-top: 12px;
  }

  #one-dom-container .one-title.sm>p:last-of-type {
    margin-top: 8px;
  }

  #one-dom-container .one-title.ssm>p:last-of-type {
    margin-top: 6px;
  }

  #one-dom-container .one-title.row>p:last-of-type {
    margin-top: 0;
  }

  #one-dom-container .one-title.row>p:first-child {
    padding-right: 24px;
  }

  #one-dom-container .replay-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    width: 36px;
    display: none;
  }

  #one-dom-container .one-pc-gapT80 {
    margin-top: 80px;
  }

  #one-dom-container .one-pc-gapT60 {
    margin-top: 60px;
  }

  #one-dom-container .one-pc-gapT50 {
    margin-top: 50px;
  }

  #one-dom-container .one-pc-gapT48 {
    margin-top: 48px;
  }

  #one-dom-container .one-pc-gapT32 {
    margin-top: 32px;
  }

  #one-dom-container .one-pc-gapT24 {
    margin-top: 24px;
  }

  #one-dom-container .one-pc-gapT20 {
    margin-top: 20px;
  }

  #one-dom-container .one-pc-gapT12 {
    margin-top: 12px;
  }

  #one-dom-container .one-pc-gapT8 {
    margin-top: 8px;
  }

  #one-dom-container .one-pc-gapL4 {
    margin-left: 4px;
  }

  #one-dom-container .one-pc-gapL8 {
    margin-left: 8px;
  }

  #one-dom-container .one-pc-gapL12 {
    margin-left: 12px;
  }

  #one-dom-container .one-pc-gapL16 {
    margin-left: 16px;
  }

  #one-dom-container .one-pc-gapL20 {
    margin-left: 16px;
  }


  #one-dom-container .one-section-pin {
    overflow: unset !important;
  }

  #one-dom-container .one-section-pin>section {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* 轮播按钮 */
  #one-dom-container .one-swiper-button {
    opacity: 0.8;
    cursor: pointer;
    width: 2.7em;
    height: 2.7em;
  }

  #one-dom-container .one-swiper-button svg {
    width: 100%;
    height: 100%;
  }

  #one-dom-container .one-swiper-button-prev {
    transform: rotate(180deg);
  }

  #one-dom-container .one-swiper-button:hover {
    opacity: 1;
  }

  #one-dom-container .one-swiper-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: auto;
  }

}

@media screen and (max-width: 1439px) and (min-width: 1024px) {
  #one-dom-container {
    font-size: 20px;
    font-size: 1.0416666667vw !important;
  }

  #one-dom-container .pc-safeRow {
    display: block;
    width: 57.5em;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }




  #one-dom-container .one-pc-gapT80 {
    margin-top: 4em;
  }

  #one-dom-container .one-pc-gapT60 {
    margin-top: 3em;
  }

  #one-dom-container .one-pc-gapT50 {
    margin-top: 2.5em;
  }

  #one-dom-container .one-pc-gapT48 {
    margin-top: 2.4em;
  }

  #one-dom-container .one-pc-gapT32 {
    margin-top: 1.6em;
  }

  #one-dom-container .one-pc-gapT24 {
    margin-top: 1.2em;
  }

  #one-dom-container .one-pc-gapT20 {
    margin-top: 1em;
  }

  #one-dom-container .one-pc-gapT12 {
    margin-top: 0.6em;
  }

  #one-dom-container .one-pc-gapT8 {
    margin-top: 0.4em;
  }

  #one-dom-container .one-pc-gapL4 {
    margin-left: 0.2em;
  }

  #one-dom-container .one-pc-gapL8 {
    margin-left: 0.4em;
  }

  #one-dom-container .one-pc-gapL12 {
    margin-left: 0.6em;
  }

  #one-dom-container .one-pc-gapL16 {
    margin-left: 0.8em;
  }

  #one-dom-container .one-pc-gapL20 {
    margin-left: 0.8em;
  }
}