/* 光标效果 */
[manCursor_1] {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: black;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}

.cursor[manCursor_2] {
  display: block;
}

@media (any-pointer: fine) {
  .cursor[manCursor_2] {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    z-index: 1001;
  }

  .no-js .cursor[manCursor_2] {
    display: none;
  }

  [manCursor_2] .cursor__line {
    position: fixed;
    display: block;
    will-change: transform, opacity;
  }

  [manCursor_2] .cursor__line--horizontal {
    top: -10px;
    left: -10%;
    width: 120%;
    height: 20px;
  }

  [manCursor_2] .cursor__line--vertical {
    left: -10px;
    top: -10%;
    height: 120%;
    width: 20px;
  }

  [manCursor_2] .cursor__line-element {
    fill: none;
    stroke: #000;
    stroke-width: 1px;
  }
}

/* 自定义过渡效果*/
.manTransition-fade {
  transition: 0.6s;
  transform: translateY(0px);
  opacity: 1;
}

html.is-animating .manTransition-fade {
  opacity: 0;
  transform: translateY(50px);
}

/*页面过渡内置默认效果*/
.pageTransition {
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  pointer-events: none;
  position: fixed;
  top: 0;
  z-index: 10;
  opacity: 0;
  background: url(https://omo-oss-image1.thefastimg.com//portal-saas/demo_d83bc9af8bb342749ecf5b9c474b30c5/cms/image/a1986be5-06db-430f-8653-2ec85f0198a8.gif) no-repeat center #fff;
}

/*广告法违禁词*/
.manRedwords {
  background: red;
  color: #fff;
}

/*图片和视频质量*/
.manIvcla {
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.05) brightness(100%);
}

/*图片锐化*/
.manSharpen {
  filter: url(#sharp);
}

.manActive {
  color: rgba(0,125,108,1) !important;
}

[data-rolling] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.rolling-10 {
  display: flex;
  overflow: hidden;
}

.rolling-10>.p_list {
  flex-wrap: nowrap !important;
  min-width: 100%;
  -webkit-animation: rollingLeft var(--speed) linear infinite;
  animation: rollingLeft var(--speed) linear infinite;
}

.rolling-10>.p_list>div {
  flex: 1 !important;
  padding: 0 var(--padding);
}

.rolling-10:hover>.p_list {
  animation-play-state: var(--play);
}

.rolling-10[style*="--opacity"] {
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
  mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.rolling-10[style*="--notext"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rolling-10[style*="--direction"]>.p_list {
  animation-name: rollingRight;
  -webkit-animation-name: rollingRight;
}

.rolling-10[style*="--portrait"] {
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.rolling-10[style*="--portrait"]>.p_list {
  flex-direction: column;
  -webkit-animation-name: rollingTop;
  animation-name: rollingTop;
}

.rolling-10[style*="--portrait"]>.p_list>div {
  padding: var(--padding) 0;
}

.rolling-10[style*="opacity"][style*="portrait"] {
  --mask-direction: to bottom;
}

.rolling-10[style*="direction"][style*="portrait"]>.p_list {
  -webkit-animation-name: rollingBottom;
  animation-name: rollingBottom;
}

@keyframes rollingLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes rollingRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes rollingTop {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes rollingBottom {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

.rolling-9 {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.rolling-9>.p_list {
  flex-wrap: nowrap !important;
}

.rolling-9>.p_list>div {
  flex: none !important;
  width: 33.333%;
}

.rolling-9.bo {
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
  mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

[data-rolling] [class*="manNext"],
[data-rolling] [class*="manPrev"] {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
}

[data-rolling] [class*="manPrev"] {
  order: -1;
}

[data-rolling] [class*="manNext"]:hover,
[data-rolling] [class*="manPrev"]:hover {
  color: #007bff;
}

[data-rolling] [class*="manPagi"] {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

[data-rolling] [class*="manPagi"] span {
  margin: 0 3px;
}

[data-rolling].prr {
  padding-bottom: 20px;
}

.has-scroll-init body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

[data-timing] [data-scroll-speed] {
  transition: transform linear .1s !important;
}

#blackTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: rgb(0 0 0 / 70%);
  border-radius: 100%;
  color: #fff;
  display: none;
}

.main>div>[data-fulling] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

[data-fulling] [data-fulling] {
  height: 100%;
}

[data-fulling] .swiper-wrapper {
  height: 100%;
}

[data-fulling] .swiper-slide {
  height: 100%;
}
[data-fulling] .swiper-slide:not([id*="c_grid"]) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.autoFooter>div>div:last-child {
  height: auto;
}

.main>div>[data-fulling]>[class*="manPagi"] {
  position: absolute;
  right: 15px;
  top: 50%;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}

.main>div>[data-fulling] [data-fulling]>[class*="manPagi"] {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: flex;
}
.main>div>[data-fulling]>[class*="manPagi"] span,
.main>div>[data-fulling] [data-fulling]>[class*="manPagi"] span{
  margin: 4px 0;
  height: 9px;
  width: 9px;
}
.main>div>[data-fulling] [data-fulling]>[class*="manPagi"] span{
  margin: 0px 4px;
}
[data-exists] .main [data-fulling] {
    position: static;
}
[data-exists] [data-fulling] > div > div {
    min-height: 700px !important;
}