﻿host {
}
.flx-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.qk-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  text-indent: 0;
  .subtitle-bar-container {
    position: relative;
    z-index: 99;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px 13px 40px 13px;

    &.leftTop {
      justify-content: flex-start;
      align-items: flex-start;
    }
    &.top {
      justify-content: center;
      align-items: flex-start;
    }

    &.rightTop {
      justify-content: flex-end;
      align-items: flex-start;
    }

    &.rightBottom {
      justify-content: flex-end;
      align-items: flex-end;
    }

    &.bottom {
      justify-content: center;
      align-items: flex-end;
    }

    &.leftBottom {
      justify-content: flex-start;
      align-items: flex-end;
    }

    .subtitle-text-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      user-select: text;
      background: rgba(0, 0, 0, 0.5);
      color: #ffffff;
      font-size: 28px;
      font-weight: 400;
      border-radius: 6px;
      padding: 10px 12px;
      transition: all 0.3s;
      line-height: 1.2;
      white-space: pre-line;
      overflow-wrap: break-word;
      &.bar-bottom {
        margin-bottom: clamp(50px, 3%, 70px);
      }
      &.white {
        color: #fff;
      }
      &.blue {
        color: #0a96ff;
      }
      &.lightBlue {
        color: #9bd5ff;
      }
      &.cyan {
        color: #13d3f5;
      }
      &.yellow {
        color: #ffdba7;
      }
      &.red {
        color: #ff453a;
      }
      &.pink {
        color: #ff4299;
      }
      &.purple {
        color: #a9a1ff;
      }
    }
  }
}

.qk-panel-tool {
  user-select: none;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  &.left {
    right: unset !important;
    left: 3%;
    .panel-tool-item {
      flex-direction: row;
    }
  }

  &.rightBottom {
    top: calc(50% + 90px);
  }
}
.qk-panel-tool-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  flex-direction: row-reverse;
  margin-bottom: 20px;

  &.align-flx-start {
    align-items: flex-start;
  }

  .panel-tool-item-icon {
    position: relative;
    height: 40px;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    transition: background-color 0.2s;
    background: rgba(34, 34, 34, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    box-sizing: border-box;
    margin-left: 8px;
    line-height: 0;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    img {
      height: 20px;
      width: 20px;
    }

    &.hovering {
      background: rgba(34, 34, 34, 0.6);
    }
    .question-close-btn {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 16px;
      height: 16px;
      display: none;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 10;
    }
    &:hover {
      .question-close-btn {
        display: flex;
      }
    }
    .right-type-icon {
      position: absolute;
      right: -11px;
      top: -4px;
    }
  }

  .panel-tool-item-tips {
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 400;
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;

    &.nu-guide-tips {
      position: absolute;
      right: 48px;
      min-height: 40px;
      line-height: 18px;
      display: flex;
      flex-direction: column;
      border-radius: 12px;
      padding: 12px;
      background-image: linear-gradient(179deg, rgba(255, 255, 255, 0.1) 0%, rgba(26, 26, 26, 0.15) 45%);
      border: 1px solid rgba(255, 255, 255, 0.3);

      .title-box {
        display: flex;
        align-items: center;
        width: 190px;
        height: 32px;
        margin-bottom: 8px;
        svg {
          width: 24px;
          height: 24px;
          font-size: 24px;
        }
        .title-text {
          display: flex;
          flex-direction: column;
          height: 100%;
          margin-left: 6px;
          .bold-text {
            font-size: 12px;
            color: #ffffff;
            font-weight: 700;
          }
          .small-text {
            opacity: 0.6;
            font-size: 10px;
            color: #ffffff;
            font-weight: 500;
          }
        }
      }
      .nu-bg {
        width: 190px;
        height: 72px;
      }
    }
    span {
      margin-left: 2px;
    }
  }
}

.qk-video-subtitle-panel-portal {
  transform: translateX(-100%);
  position: absolute;
  z-index: 999999999;
  div,
  span {
    font-family: PingFangSC-Regular;
    color: unset;
    font-size: unset;
    margin: unset;
    overflow: unset;
    line-height: unset;
  }
  .qk-portal-panel {
    margin-right: 8px;
  }
  .normal-text {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
  }
}
.qk-subtitle-setting-box {
  .qk-shadow-subtitle-panel {
    position: absolute;
    right: 48px;
  }
}

.subtitle-common-panel {
  user-select: none;
  position: relative;
  border-radius: 12px;
  div,
  span {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
  }
  background: rgba(34, 34, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-width: 200px;
  .icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 6px;
    &:hover {
      background: rgba(255, 255, 255, 0.06);
    }
  }
  .go-back-icon {
    rotate: 180deg;
  }
  .panel-title {
    padding: 10px 12px 10px 12px;
    display: flex;
    align-items: center;
  }
}

.subtitle-setting-detail {
  display: flex;
  flex-direction: column;

  .setting-item {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 4px;
    border-radius: 6px;

    &.has-hover {
      &:hover {
        background: rgba(255, 255, 255, 0.06);
      }
    }
    .qk-label {
      display: flex;
      align-items: center;
      color: #fff;
      font-size: 14px;
      line-height: 20px;
    }

    .display-item {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding-left: 24px;
      font-size: 14px;
      line-height: 20px;
      .icon {
        position: absolute;
        left: 13px;
        &:hover {
          background: none;
        }
      }
    }

    .icon {
      width: 16px;
      height: 16px;
      font-size: 16px;
      line-height: 16px;
    }
    .subtitle-icon {
      margin-right: 8px;
      &:hover {
        background: none;
      }
    }
    .small-icon {
      width: 12px;
      height: 12px;
    }
  }
  .subtitle-content-setting {
    position: relative;
    &.disable {
      opacity: 0.5;
    }
    .disable-cover {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 10;
    }
    .source-language-item {
      .switch-text {
        font-size: 12px;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 400;
        margin-right: 2px;
        visibility: hidden;

        &:hover {
          color: #ffffff;
        }
      }
      &:hover {
        .switch-text {
          visibility: visible;
        }
      }
    }
  }

  .subtitle-display-box {
    .title {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 400;
      padding: 6px 16px;
    }
    .subtitle-source-label {
      margin-left: 4px;
    }
  }
  .accessible-tips {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    padding: 0 16px 0 16px;
    background: rgba(139, 133, 122, 0.2);

    .tips-text {
      font-family: PingFangSC-Regular;
      font-size: 12px;
      color: #cca97a;
      font-weight: 400;
    }
    .value {
      &:hover {
        color: #ffd399;
      }
    }
  }
}
.divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.source-language-panel {
  .language-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 2px;
    .language-item {
      position: relative;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 8px 8px 8px 28px;
      margin: 4px 8px 4px 8px;
      border-radius: 6px;
      .icon {
        position: absolute;
        left: 6.6px;
        &:hover {
          background: none;
        }
      }
      &:hover {
        background: rgba(255, 255, 255, 0.06);
      }
    }
  }
}

.toast-tip-box {
  position: absolute;
  left: 13px;
  bottom: 40px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  overflow: hidden;
  z-index: 100;

  div,
  span {
    white-space: nowrap;
  }

  img {
    width: 72px;
    height: 30px;
    margin-left: 10px;
    pointer-events: all;
  }

  &.bar-bottom {
    margin-bottom: clamp(50px, 3%, 70px);
  }
  .common-toast {
    line-height: 32px;
    pointer-events: auto;
    padding: 6px 14px;
    background: rgba(17, 17, 17, 0.9);
    margin-top: 16px;
    border-radius: 10px;
    width: fit-content;
  }

  .primary-btn {
    border-radius: 8px;
    background: rgba(6, 10, 38, 0.06);
    font-size: 14px;
    color: #336dff;
    font-weight: 600;
    margin-left: 8px;
    padding: 6px 8px;
    line-height: 14px;
    cursor: pointer;
    &:hover {
      background: rgba(255, 255, 255, 0.06);
    }
  }
  .close-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    margin-left: 6px;
  }
  .shortcut-key {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    line-height: 18px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 4px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 4px 0 4px;
  }
  .enhanced-color-text {
    background-image:
      linear-gradient(-73deg, #ffda85 0%, #fffaeb 67%, #ffecb8 100%),
      linear-gradient(-73deg, #ffde85 0%, #fffaeb 67%, #ffecb8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    margin: 0 4px 0 4px;
  }
}

.qk-icon {
  background: none;
  &.hover-bg {
    &:hover {
      background: rgba(255, 255, 255, 0.06);
    }
  }
}
.qk-right-icon {
  display: flex;
  align-items: center;
  svg {
    &.svip {
      width: 31px;
      height: 15px;
      margin-left: 4px;
    }
    &.free-limit {
      width: 26px;
      height: 15px;
      margin-left: 6px;
    }
  }
}
.qk-scroll-list {
  &::-webkit-scrollbar {
    width: 4px; /* 垂直滚动条宽度 */
  }
  /* 滚动条轨道 */
  &::-webkit-scrollbar-track {
    background: none;
  }
  /* 滚动条滑块（可拖动部分） */
  &::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.24);
    width: 4px;
  }
}

.qk-switch {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 28px;
  height: 18px;
  border-radius: 12px;
  background: rgba(245, 246, 250, 0.1);
  border: 1px solid rgba(6, 10, 38, 0.1);
  transition:
    border-color 0.2s,
    background-color 0.2s;
  &:hover {
    background: rgba(255, 255, 255, 0.2);
    &:checked {
      background: #477bff;
    }
  }

  &::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0, 0, 2px, #999;
    transition: 0.2s;
    top: 2.2px;
    position: absolute;
    left: 3px;
  }
  &:checked {
    background: #336dff;
  }
  &:checked::after {
    content: '';
    position: absolute;
    left: 43%;
    top: 2.2px;
  }
}

.qk-portal-panel,
.qk-shadow-subtitle-panel {
  .ant-select {
    width: 100%;
    border-radius: 6px;
    .option-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      .option-head {
        display: flex;
        align-items: center;
        font-size: 12px;
      }
    }
    .ant-select-selector {
      .choose-icon {
        visibility: hidden;
        &.active {
          visibility: hidden;
        }
      }

      .ant-select-selection-wrap {
        &:hover {
          color: #fff;
        }
      }
    }
    .ant-select-dropdown {
      .choose-icon {
        visibility: hidden;
        &.active {
          visibility: visible;
        }
      }
    }
    .select-suffix-icon {
      transform: rotate(90deg);
    }
    .ant-select-selector,
    .ant-select-dropdown {
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
      border: 1px solid rgba(250, 251, 255, 0.1);
      box-shadow: none !important;
    }

    .ant-select-item-option-content,
    .ant-select-selection-item {
      display: flex;
      align-items: center;
    }

    &.ant-select-open {
      color: #fff;
      .select-suffix-icon {
        transform: rotate(-90deg);
      }
      .ant-select-selection-item {
        color: #fff;
      }
    }

    .ant-select-selector {
      background: rgba(34, 34, 34, 0);
    }
    .ant-select-dropdown {
      border-radius: 8px;
      background: rgba(34, 34, 34, 0.94);
      .ant-select-item {
        color: #fff;
        padding: 5px;
      }
      .ant-select-item-option {
        &:hover {
          background: rgba(255, 255, 255, 0.06);
        }
      }
    }
    .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
      font-weight: normal;
      border-radius: 4px;
      background: none;
    }
  }
  .ant-slider .ant-slider-handle::after {
    box-shadow: none !important;
  }
  .ant-slider-handle {
    border: none;
  }
  // .ant-slider-horizontal .ant-slider-handle {
  //   inset-block-start: 0;
  // }
  .ant-slider:hover {
    .ant-slider-track {
      background-color: #fff;
    }
    .ant-slider-rail {
      background-color: rgba(255, 255, 255, 0.1);
    }
  }
}

.detail-setting-panel {
  width: 240px;
  .panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    .normal-text {
      line-height: 20px;
      font-size: 14px;
    }
    .small-text {
      font-size: 12px;
      line-height: 18px;
      div {
        font-size: 12px;
        line-height: 18px;
        color: #fff;
      }
      &.disable {
        opacity: 0.5;
      }
    }
  }
  .detail-setting-form-box {
    padding: 12px;
    .form-item {
      height: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 0px 16px 0px;
      &:last-child {
        margin-bottom: 6px;
      }
      .label {
        span {
          font-size: 13px;
          color: #fff;
        }
      }
      .value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        width: 130px;
      }
    }
  }
  .ant-select {
    .option-item {
      .position-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 8px;
        svg {
          width: 16px;
          height: 14px;
        }
      }
      .color {
        width: 16px;
        height: 16px;
        border: 1px solid rgba(128, 128, 128, 0.4);
        border-radius: 4px;
        margin-right: 8px;
      }
    }
  }

  .ctl-bar {
    font-size: 24px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    &:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    svg {
      width: 20px;
      height: 20px;
    }
    &.disable {
      opacity: 0.3;
    }
  }
  .slider-box {
    width: 80px;
  }
  .num-box {
    color: rgba(255, 255, 255, 0.5);
    &.white {
      color: #fff;
    }
  }
  .recover-btn {
    display: flex;
    align-items: center;
    &:hover:not(.disable) {
      color: rgba(255, 255, 255, 0.8);
    }
    svg {
      font-size: 14px;
      width: 14px;
      height: 14px;
      margin-left: 4px;
    }
  }
}

.enhanced-video-box {
  display: flex;
  justify-content: center;
  pointer-events: all;
  position: absolute;
  // height: calc(100% - 70px);
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 13;
  .enhanced-compare-box {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

.video-enhanced-compare-container {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  pointer-events: all;
  // z-index: 13;

  .panel {
    height: 100%;
    position: relative;
    overflow: hidden; /* 文字超出时自动截断 */
    flex: 0 0 auto; /* 宽度由 JS 设置的百分比决定 */
    transition: none;
  }
  .left-panel {
    // background-color: red;
    color: white;
  }

  .right-panel {
    // background-color: white;
    color: black;
  }

  .corner-text {
    position: absolute;
    top: 10px;
    padding: 0 10px;
    font-weight: bold;
    // pointer-events: none;
    white-space: nowrap;
    font-size: 14px;
  }
  .corner-text.left {
    left: 10px;
  }

  .corner-text.right {
    right: 10px;
  }

  .resizer {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    border-radius: 2px;
    background: #fff;
    z-index: -1;
  }
}
.compare-label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  &.off {
    top: 30px;
    right: 30px;
  }
  &.on {
    top: 30px;
    left: 30px;
  }
}
</style><style>.Po4BvhR1CK2tJaywJ6AN path {
  fill: var(--icon-path-fill);
}
.Oz4yDjua3Qe6thqkZYf_ path {
  transition: 0.2s all;
}
.Oz4yDjua3Qe6thqkZYf_:hover path {
  fill: var(--icon-hover-fill);
}
</style><style>/* ！！！切勿直接改动该文件，该文件由 generator.ts 自动生成！！！ */
/* !!! DONT MODIFY THIS FILE DIRECTLY, THIS FILE IS GENERATED BY generator.ts AUTOMATICALLY !!! */
.ibW4Oa5B7s2zJKKZ4pCg {
  user-select: none;
}
.AtqKyJetjrG4smuk35Np {
  max-width: 346px;
  width: auto;
  height: 36px;
  background-color: var(--quark-style-white-color, #fff);
  padding-left: 10px;
  padding-right: 4px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid var(--quark-style-gray-20-color, rgba(6, 10, 38, 0.12));
  box-shadow: 0 12px 32px -6px var(--quark-style-gray-30-fixed-color, rgba(6, 10, 38, 0.24));
  border-radius: 10px;
}
.ibW4Oa5B7s2zJKKZ4pCg .g6iGsZa_KHMeW2yICzQQ {
  height: 28px;
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.ibW4Oa5B7s2zJKKZ4pCg .e4UXx38MPgfHdym_Lzt0 {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 28px;
  padding: 0 6px;
  margin-right: 2px;
  border-radius: 6px;
  column-gap: 4px;
}
.ibW4Oa5B7s2zJKKZ4pCg .e4UXx38MPgfHdym_Lzt0:hover:not(.ibW4Oa5B7s2zJKKZ4pCg .kNOcXLDT_cCrcoY8LTm8) {
  background: var(--quark-style-gray-10-color, rgba(6, 10, 38, 0.06));
}
.ibW4Oa5B7s2zJKKZ4pCg .kNOcXLDT_cCrcoY8LTm8 {
  cursor: default;
}
.ibW4Oa5B7s2zJKKZ4pCg .kNOcXLDT_cCrcoY8LTm8 .Va3czASiR9Zztyl_lD4M {
  color: var(--quark-style-gray-40-color, rgba(6, 10, 38, 0.4)) !important;
}
.ibW4Oa5B7s2zJKKZ4pCg .e4UXx38MPgfHdym_Lzt0 .Va3czASiR9Zztyl_lD4M {
  font-size: 12px;
  color: var(--quark-style-gray-color, #060A26);
  line-height: 16px;
  white-space: nowrap;
  position: relative;
}
.ibW4Oa5B7s2zJKKZ4pCg .llw0qsmiI_08u93bFdNg {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: visible !important;
}
.ibW4Oa5B7s2zJKKZ4pCg .LEo8kpqIERehkv8AhAfG {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  overflow: visible !important;
}
.ibW4Oa5B7s2zJKKZ4pCg .LEo8kpqIERehkv8AhAfG:hover {
  background: var(--quark-style-gray-10-color, rgba(6, 10, 38, 0.06));
}
.ibW4Oa5B7s2zJKKZ4pCg .zoNmooxAnbLEJSN8m1Jg {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  max-height: 136px;
  height: auto;
  top: 36px;
  right: -5px;
  padding: 4px 0;
  background-color: var(--quark-style-white-color, #fff);
  border: 1px solid var(--quark-style-gray-20-color, rgba(6, 10, 38, 0.12));
  box-shadow: 0 4px 16px -6px var(--quark-style-gray-20-fixed-color, rgba(6, 10, 38, 0.12));
  border-radius: 8px;
  overflow: visible !important;
  row-gap: 4px;
}
.ibW4Oa5B7s2zJKKZ4pCg .O1imPofna4elG_8NcQnR {
  top: -77px;
}
.ibW4Oa5B7s2zJKKZ4pCg .mdH0IY7jS3Swn5vdX6tz {
  width: 102px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  column-gap: 8px;
  border-radius: 6px;
  padding: 0 6px;
  box-sizing: border-box;
}
.ibW4Oa5B7s2zJKKZ4pCg .mdH0IY7jS3Swn5vdX6tz:hover:not(.ibW4Oa5B7s2zJKKZ4pCg .dEdHLVmn_L2GAzb_cmwt) {
  background: var(--quark-style-gray-10-color, rgba(6, 10, 38, 0.06));
}
.ibW4Oa5B7s2zJKKZ4pCg .dEdHLVmn_L2GAzb_cmwt {
  cursor: default;
}
.ibW4Oa5B7s2zJKKZ4pCg .dEdHLVmn_L2GAzb_cmwt .zEraruudgjR2MToGu4Kw {
  color: var(--quark-style-gray-40-color, rgba(6, 10, 38, 0.4)) !important;
}
.ibW4Oa5B7s2zJKKZ4pCg .XfCMwvO0DsqFCeyzPYP2 {
  width: 16px;
  height: 16px;
}
.ibW4Oa5B7s2zJKKZ4pCg .zEraruudgjR2MToGu4Kw {
  font-size: 12px;
  color: var(--quark-style-gray-color, #060A26);
}
.ibW4Oa5B7s2zJKKZ4pCg .KZeoAuXbMIkWzOT4PcH5 {
  width: 100%;
  height: 1px;
  background: var(--quark-style-gray-10-color, rgba(6, 10, 38, 0.06));
}
.ZL32C_XdLL8UQRZ3zObd {
  display: flex;
  align-items: center;
}
.u5llx7cIQZLdrjP5Vag1 {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 12px;
  background: var(--quark-style-gray-60-color, rgba(6, 10, 38, 0.6));
}
.ZL32C_XdLL8UQRZ3zObd .LEo8kpqIERehkv8AhAfG {
  border-radius: 16px !important;
  background: var(--quark-style-gray-60-color, rgba(6, 10, 38, 0.6)) !important;
}
.ZL32C_XdLL8UQRZ3zObd .zoNmooxAnbLEJSN8m1Jg {
  right: 0 !important;
}
.ZL32C_XdLL8UQRZ3zObd {
  overflow: visible !important;
}
/*old css*/
.w1200{width: 1200px; margin: 0 auto;}
/*留言表单*/
.formData{padding-bottom: 20px;}
.formData .t2{padding: 28px 0 48px;text-align: center;}
.formData .t2 .titb{font-size: 30px;font-weight: bold;margin-bottom: 16px;}
.formData .t2 .txt{color: #666;font-size: 14px;line-height: 24px;}
.formData .t2 .txt span{font-weight: bold;color: #fac12c;}
.formData .item{float: left; color: #999; font-weight: normal; width: 560px; height: 50px; line-height: 50px; border: 1px solid #e5e5e5; margin-right: 76px; margin-bottom: 30px; position: relative;}
.formData .item label{padding-left: 15px;position: absolute;left: 0;top: 0;z-index: 11;text-align: center;display: block;margin: 0;height: 50px;line-height: 50px;font-size: 18px;color: #666;}
.formData .item input{outline: none;line-height: 38px;height: 38px;font-size: 16px;}
.formData .item .txt{width: 490px;height: 50px;line-height: 50px;display: block;background: none;padding-left: 100px;border: 0 none;color: #666;}
.formData .item .red{position: absolute; right: 15px; top: 0; color: #ff0000; z-index: 11;}
.formData .item.mr0{margin-right: 0;}
.formData .msg-box{position: absolute; left: 0; top: 0px;}
.formData .liuyan{width: 1198px; height: 240px; border: 1px solid #e5e5e5; float: left;}
.formData .liuyan label{text-align: right; display: block;}
.formData .liuyan textarea{width: 1178px;height: 214px;line-height: 28px;padding: 12px 10px;text-indent: 100px;font-size: 16px;font-family: "microsoft yahei";color: #666;border: 0 none;overflow: hidden;background: none;resize: none;display: block;outline: none;}
.formData .bot{width: 100%;}
.formData .sub{width: 232px;line-height: 46px;border: 2px solid #024184;margin-right: 2px;text-align: center;background: #024184;color: #FFF;cursor: pointer;font-size: 18px;display: block;outline: none;transition: all .5s;}
.formData .sub:hover{background: none;color: #024184;}
.formData .yzm{width: 432px;}
.formData .yzm .txt{padding-left: 80px;}
.formData .yzm img{position: absolute;right: 3px;top: 3px;border: 0px;display: block;}
/*联系我们*/
.submian .subleft .contact1{background: #fac12c;text-align: center;color: #fff;margin-bottom: 20px;}
.submian .subleft .contact1 .img img{width: 100%;display: block;}
.submian .subleft .contact1 p{padding-top: 15px;}
.submian .subleft .contact1 p img{vertical-align: middle;margin-right: 5px;}
.submian .subleft .contact1 span{display: block;font-size: 28px;font-weight: bold;font-family: Arial;padding-bottom: 20px;padding-top: 10px;}
.submian .subleft .contact2{height: 140px;background: url(../images/contact-z1.jpg) no-repeat;color: #333;margin-bottom: 20px;}
.submian .subleft .contact2 p{font-size: 20px;height: 30px;line-height: 30px;padding: 37px 0 0 95px;background: url(../images/contact-z1_tel.png) no-repeat 74px 44px;}
.submian .subleft .contact2 span{display: block;height: 30px;font-weight: bold;font-size: 18px;line-height: 30px;padding-left: 73px;}

/*分页样式*/
.pglist{padding: 20px 0 30px;width:100%;text-align: center;clear: both;}
.pglist a,.pglist span{color: #999;padding: 0 15px;margin: 0 3px;display: inline-block;vertical-align: middle;line-height: 30px;background: #fff;border: 1px solid #f2f2f2;}
.pglist a:hover,.pglist span{display:inline-block;color: #fff;background: #fac12c;border-color: #fac12c;box-shadow: 0 0 14px rgba(0, 0, 0, .2);}


/*内容分页*/
.reLink{margin: 10px auto 10px;padding-top: 10px;border-top: 1px dashed #b5b5b5;}
.reLink span{display: inline-block;background-color: #a2a2a2;color: #fff;padding: 0 15px;margin-right: 10px;}
.reLink .prevLink, .reLink .nextLink{line-height: 32px;margin-bottom: 5px;color: #666;}
.reLink .prevLink a, .reLink .nextLink a{height: 38px;line-height: 38px;color: #666;}
.reLink .prevLink a:hover, .reLink .nextLink a:hover{color: #fac12c;}

/*表单*/
input,button,select,textarea{outline:none; font-family:"PingFang SC","Microsoft Yahei", Arial; font-size:.24rem; -webkit-appearance:none !important;}
table{border-collapse:collapse; border-spacing:0;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{color:#999;}
input:-moz-placeholder, textarea:-moz-placeholder{color:#999;}
input::-moz-placeholder, textarea::-moz-placeholder{color:#999;}
input:-ms-input-placeholder, textarea:-ms-input-placeholder{color: #999;}
