:root {
  --ys-color-primary: #0031ce;
  --ys-color-strong: #f44a00;
  --ys-color-success: #41cc8b;
  --ys-color-info: #4f94e6;
  --ys-color-warning: #f4934b;
  --ys-color-error: #d94b3e;
  --ys-color-assist: #e84b13;
  --ys-color-white: #ffffff;
  --ys-color-text-000: #333333;
  --ys-color-text-050: #4a4a4a;
  --ys-color-text-100: #666666;
  --ys-color-text-300: #999999;
  --ys-color-text-500: #bbbbbb;
  --ys-color-text-700: #dddddd;
  --ys-color-background: #fafafa;
  --ys-color-background-050: #f5f5f5;
  --ys-color-background-060: #f2f2f2;
  --ys-color-background-100: #eeeeee;
  --ys-color-background-200: #ebebeb;
}
/* 各开发：灰色系可以不采用颜色变量 */

/****************** 公共类名 begin ******************/
/* 文豪 */
.hover--underline-primary {
  position: relative;
}
.hover--underline-primary::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--ys-color-primary);
  position: absolute;
  left: 0;
  bottom: 1px;
  transition: width 0.3s;
}
.hover--underline-primary:hover::after {
  width: 100%;
}

/* 梓玲 */
.display-none {
  display: none !important;
}

/* 梓玲 */
/* 图片悬停缩放 start */
.img-scale {
  overflow: hidden;
}
.img-scale img {
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.img-scale img:hover {
  transform: scale(1.1);
}
/* 图片悬停缩放 end */

/* 梓玲 */
/* 产品图片滤镜和渐变背景 */
.p-img {
  background: radial-gradient(69.52% 73.55% at 49.88% 38.66%, #FAFAFA 0%, #F3F3F3 53.79%, #EEE 100%);
}
.p-img img {
  mix-blend-mode: darken;
  object-fit: contain;
}

/* 薛龙 */
.resize-img--hover img {
  transition: 0.3s;
}
.resize-img--hover:hover img {
  transform: scale(1.1);
}

/* 薛龙 */
.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-2 {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}

/* 廖政 */
:root {
  --ys-content-width: 1300px;
  --ys-page-padding: calc(50vw - 650px);
  --ys-header-top: 107px;
}
.g-content-width {
  width: var(--ys-content-width);
}
@media only screen and (max-width: 1440px) {
  :root {
    --ys-content-width: 1200px;
    --ys-page-padding: calc(50vw - 600px);
  }
  .g-content-width {
    width: 1200px;
  }
}
@media only screen and (max-width: 1280px) {
  :root {
    --ys-content-width: 940px;
    --ys-page-padding: calc(50vw - 470px);
  }
  .g-content-width {
    width: 940px;
  }
}
/****************** 公共类名 end ******************/

/****************** 往下是 组件库样式 ******************/
.c-message-wrap {
  max-height: 0;
  width: 100vw;
  position: fixed;
  top: 20px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6000;
}
.c-message {
  max-height: 0;
  max-width: 500px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin: 0 0 0 0;
  opacity: 0;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out;
}
.c-message + .c-message {
  margin: 8px 0 0 0;
}
.c-message .iconfont {
  margin-right: 10px;
  font-size: 20px;
}

.c-loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  z-index: 6000;
}
.c-loading-wrap .c-loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  height: 100vh;
}
.c-loading-wrap .c-loading {
  position: relative;
  color: var(--ys-color-primary);
  font-size: 16px;
}
.c-loading-wrap .c-loading .loader:before,
.c-loading-wrap .c-loading .loader:after,
.c-loading-wrap .c-loading .loader {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation-fill-mode: both;
  animation: loading 1.8s infinite ease-in-out;
}
.c-loading-wrap .c-loading .loader {
  font-size: 10px;
  position: relative;
  animation-delay: -0.16s;
  margin-bottom: 60px;
  margin-left: 18px;
}
.c-loading-wrap .c-loading .loader:before {
  left: -45px;
  animation-delay: -0.32s;
}
.c-loading-wrap .c-loading .loader:after {
  left: 45px;
}
.c-loading-wrap .c-loading .loader:before,
.c-loading-wrap .c-loading .loader:after {
  content: "";
  position: absolute;
  top: 0;
}
@keyframes loading {
  0%,
  80%,
  100% {
    box-shadow: 0 30px 0 -15px var(--ys-color-primary);
  }
  40% {
    box-shadow: 0 30px 0 0 var(--ys-color-primary);
  }
}

/****************** 公用form样式 begin ******************/
.c-form--label-top .c-form-group__label {
  display: block;
}
.c-form-input {
  box-sizing: border-box;
  width: 100%;
  background: var(--ys-color-white);
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--ys-color-text-000);
  line-height: 18px;
  padding: 12px;
  resize: none;
}
.c-form-input:hover {
  border-color: var(--ys-color-primary);
}
.c-form-input::-moz-placeholder {
  color: var(--ys-color-text-500);
}
.c-form-input::placeholder {
  color: var(--ys-color-text-500);
}
.c-form-input:focus {
  border-color: var(--ys-color-primary);
}

.c-form-group {
  position: relative;
  margin-bottom: 20px;
}
.c-form-group label.error {
  display: block;
  position: absolute;
  bottom: -16px;
  color: var(--ys-color-error);
  font-size: 12px;
}
.c-form-group .c-form-input.error {
  border-color: var(--ys-color-error);
}
.c-form-group.is-required .c-form-group__label::before {
  content: "*";
  margin-right: 4px;
  color: var(--ys-color-strong);
  line-height: 16px;
}
.c-form-group__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ys-color-text-000);
  line-height: 19px;
  margin-bottom: 10px;
} /*# sourceMappingURL=form.css.map */
/****************** 公用form样式 end ******************/

/** 公共按钮样式 start **/
.c-button--default {
  cursor: pointer;
  background-color: var(--ys-color-white);
  border: 1px solid var(--ys-color-text-700);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ys-color-text-000);
  line-height: 18px;
  padding: 12px 20px;
}
.c-button--default:hover {
  color: var(--ys-color-primary);
  border-color: var(--ys-color-primary);
}
.c-button--default:disabled {
  color: var(--ys-color-text-100);
  cursor: not-allowed;
  border-color: var(--ys-color-text-700);
}

.c-button--primary {
  cursor: pointer;
  background-color: var(--ys-color-primary);
  border: 1px solid var(--ys-color-primary);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ys-color-white);
  line-height: 18px;
  padding: 12px 20px;
}
.c-button--primary:hover {
  opacity: 0.8;
}
/** 公共按钮样式 end **/

/** 公共checkbox样式 start **/
.c-checkbox {
  position: relative;
}
.c-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0 10px 0 0;
  position: relative;
  top: 1px;
  opacity: 0;
}
.c-checkbox label {
  position: relative;
  font-size: 14px;
  color: var(--ys-color-text-100);
  cursor: pointer;
}
.c-checkbox label:before {
  content: "";
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.c-checkbox label:after {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 4px;
  height: 7px;
  border: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.c-checkbox input[type="checkbox"]:checked + label:before {
  background: var(--ys-color-primary);
  border-color: var(--ys-color-primary);
}
/** 公共checkbox样式 end **/

/* 公共面包屑 start */
.ys-breadcrumb ul {
  display: flex;
  align-items: center;
  width: var(--ys-content-width);
  font-size: 14px;
  padding: 30px 0;
  margin: 0 auto;
}
.ys-breadcrumb li {
  list-style: none;
}
.ys-breadcrumb .ys-breadcrumb-link,
.ys-breadcrumb li h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ys-breadcrumb .ys-breadcrumb-link {
  color: var(--ys-color-primary);
  text-decoration: none;
  display: block;
  max-width: 200px;
}
.ys-breadcrumb li h2 {
  font-size: 14px;
  color: var(--ys-color-text-100);
  font-weight: 400;
  max-width: 300px;
}
/* 公共面包屑 end */

/* 优化后的新版面包屑，通过伪元素的方式添加间隔符
  <nav class="c-breadcrumb">
    <ul role="list">
      <li>
        <a href="/">首页</a>
      </li>
      <li>
        <h2>内容中心</h2>
      </li>
    </ul>
  </nav>
*/
.c-breadcrumb ul {
  display: flex;
  align-items: center;
  /* gap: 20px; */
  font-size: 14px;
  margin: 0 -10px;
  padding: 0;
}
.c-breadcrumb li {
  position: relative;
  margin: 0 10px;
}
.c-breadcrumb li + li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  left: -14px;
  top: 8px;
}
.c-breadcrumb li > a {
  color: var(--ys-color-primary);
  text-decoration: none;
}
.c-breadcrumb li > h2 {
  font-size: 14px;
  color: var(--ys-color-text-100);
  font-weight: 400;
}
/* 新版的面包屑 end */

/** dialog相关样式 start **/
.popup-parent--hidden {
  overflow: hidden !important;
}
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
.c-dialog {
  width: fit-content;
  margin: 15vh auto 0 auto;
  padding: 30px;
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: -3px 2px 20px 0px rgba(33, 33, 33, 0.51);
}
.c-dialog__close {
  position: absolute;
  right: -32px;
  top: -4px;
  cursor: pointer;
  color: #fff;
}
.c-dialog__body {
  padding: 30px 20px;
  color: #606266;
  font-size: 14px;
  word-break: break-all;
}
.c-dialog__footer {
  padding: 10px 20px 20px;
  text-align: right;
  box-sizing: border-box;
}
/** dialog相关样式 end **/

/** 公共页码组件样式 begin **/
.c-pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.c-pagination-nav {
  display: block;
}
.c-pagination .c-page-item {
  display: block;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  min-width: 40px;
  height: 40px;
  border-radius: 2px;
  background: #f5f5f5;
  color: var(--ys-color-text-000);
}
.c-pagination .c-page-item a {
  color: var(--ys-color-text-000);
  display: block;
  text-decoration: none;
  padding: 0 10px;
}
.c-pagination .c-page-item + .c-page-item {
  margin-left: 10px;
}
.c-pagination .c-page-item:not(.disabled):hover,
.c-pagination .c-page-item:not(.disabled):hover a,
.c-pagination .c-page-item.active,
.c-pagination .c-page-item.active a {
  background-color: var(--ys-color-text-000);
  color: var(--ys-color-white);
}
.c-pagination .c-page-item.active a {
  color: var(--ys-color-white);
  text-decoration: none;
}
.c-pagination .c-page-item.disabled {
  pointer-events: none;
  color: var(--ys-color-text-500);
}
.c-pagination .c-page-item.active {
  pointer-events: none;
}
.c-pagination .c-page-item.more .c-page-more::before {
  display: none;
}
.c-pagination .c-page-item.more .c-page-more::after {
  content: "...";
}
.c-pagination .c-page-item.more:hover .c-page-more::after {
  display: none;
}
.c-pagination .c-page-item.more:hover .c-page-more::before {
  display: block;
}
.c-page-more--left::before {
  transform: rotate(180deg);
}
.c-pagination .c-page-left {
  transform: rotate(180deg);
}
.c-pagination .c-page-left,
.c-pagination .c-page-right {
  display: block;
  text-decoration: none;
  color: var(--ys-color-text-000);
}
.c-pagination .c-page-left .iconfont,
.c-pagination .c-page-right .iconfont {
  font-size: 24px;
  display: block;
}
.c-pagination .c-page-selector {
  margin-left: 50px;
}
.c-pagination .c-page-selector {
  width: 133px;
  height: 40px;
  padding-left: 10px;
  border: none;
  border-radius: 2px;
  background: var(--ys-color-background-100);
  outline: none;
  cursor: pointer;
  color: var(--ys-color-text-100);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
/** 公共页码组件样式 end **/

/* 下拉popover start */
.c-popover {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  --gap: 4px;
}
.c-popover > .c-popover-content {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 14px #00000026;
  min-width: 110px;
  opacity: 0;
  padding: 1em;
  pointer-events: none;
  position: absolute;
  top: calc(100% + var(--gap));
  transform: translateY(10px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 200;
}
.c-popover:hover > .c-popover-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-popover:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  height: var(--gap);
}
/* 下拉popover end */

/* 图片占位图 start */
img.error {
  display: inline-block;
  transform: scale(1);
}
img.error::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5 url("/asset/img/lazyError.png") no-repeat center / 100%;
  color: transparent;
}
/* img.error::after {
  content: attr(alt);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 2;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */
/* 图片占位图 end */

/* 无数据 start */
.ys-empty {
  width: var(--ys-content-width);
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ys-empty h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin: 20px 0 8px;
}
.ys-empty .empty-link {
  color: #f44a00;
  text-decoration: none;
}
.ys-empty .empty-link::after {
  background-color: #f44a00;
}
/* 无数据 end */

/* 爱番番 start */
@keyframes hiddenDraw {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#newBridge,
#aff-im-root {
  -webkit-animation: hiddenDraw 2s ease 1;
}
#aff-im-root .embed-icon-pcIcon5,
#aff-im-root .embed-icon,
#newBridge .minMessageContainer,
#newBridge .nb-icon-wrap,
#newBridge #nb_nodeboard[style*="height: auto"],
#newBridge .nb-icon-wrap-1,.nb-icon-wrap-2 {
  transform: scale(0)!important;
}
/* 爱番番 end */