/* 光标效果 */
[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);
}

/*无缝滚动*/
.manScrolling_10 {
  display: flex;
  overflow: hidden;
}

.manScrolling_10 > .p_list{
  flex-wrap: nowrap !important;
  transition-timing-function: linear !important;
}

.manScrolling_10 > .p_list > .swiper-slide{
  flex: none !important;
}

[data-manscrollpause] .manScrolling_10:hover .p_list {
  animation-play-state: paused;
}

.manScrolling_10.manscrollText {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-manscrolldirection] .manScrolling_10>div {
  animation-name: scrollingNext;
  -webkit-animation-name: scrollingNext;
}

.manScrolling_10.manscrollOpacity {
  -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-manscrollportrait] {
  height: 100%;
}

[data-manscrollportrait]>.manScrolling_10 {
  height: 100%;
  flex-direction: column;
}

[data-manscrollportrait]>.manScrolling_10>div {
  flex-direction: column;
  -webkit-animation-name: scrollingPrev-y;
  animation-name: scrollingPrev-y;
  height: 100%;
}

[data-manscrollportrait][data-manscrollOpacity]>.manScrolling_10 {
  --mask-direction: to bottom;
}

[data-manscrollportrait][data-manscrolldirection]>.manScrolling_10>div {
  -webkit-animation-name: scrollingngNext-y;
  animation-name: scrollingngNext-y;
}

.manScrollinArr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.manScrollinArr .manScrolling_10 {
  max-width: calc(100% - 120px);
}

.manScrollinArr .man_Scrolling_Prev {
  order: 3;
}

.manScrollinArr .man_Scrolling_Next {
  order: -1;
}

.manScrollinArr .man_Scrolling_Prev,
.manScrollinArr .man_Scrolling_Next {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: rgb(0 0 0 / 75%);
  color: #fff;
  display: grid;
  place-content: center;
  transition: all ease .4s;
  cursor: pointer;
}

.manScrollinArr .man_Scrolling_Prev svg,
.manScrollinArr .man_Scrolling_Next svg {
  margin: 0;
}

.manScrollinArr .man_Scrolling_Prev:hover,
.manScrollinArr .man_Scrolling_Next:hover {
  background-color: rgb(0 0 0);
}

.manScrollinArr .man_Scrolling_Prev {
  pointer-events: none;
  opacity: .5;
}

.manScrollinArr[data-manscrolldirection] .man_Scrolling_Next {
  pointer-events: none;
  opacity: .5;
}

.manScrollinArr[data-manscrolldirection] .man_Scrolling_Prev {
  pointer-events: auto;
  opacity: 1;
}

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

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

@keyframes scrollingNext {
  from {
    transform: translateX(calc(-100% - 10px));
  }

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

@keyframes scrollingngNext-y {
  from {
    transform: translateY(calc(-100% - 10px));
  }

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

@keyframes scrollingPrev-y {
  from {
    transform: translateY(0);
  }

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

/* 导航分类高亮 */
.manActive{
  color: #007bff !important;
}

/* 走马灯滚动 */
[data-manrevolving]{
    position: relative;
}
.manRevolving_9{
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.manRevolving_9 > div {
    flex-wrap: nowrap !important;
}
.manRevolving_9 > div > div{
    flex: none !important;width: 33.333%;
}
.manRevolving_9.revolving_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));
}