/* 光标效果 */
[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.1) brightness(105%);
}

/*无缝滚动*/
.manScrolling_10 {
  display: flex;
  overflow: hidden;
  gap: 10px;
  transition: opacity .3s ease;
}

.manScrolling_10.ing {
  opacity: 0;
}

.manScrolling_10 .p_list {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap !important;
  min-width: 100%;
  width: 1000px;
  transition: width ease .6s;
  max-width: none !important;
  animation-name: scrollingPrev;
  -webkit-animation-name: scrollingPrev;
  animation-duration: 25s;
  -webkit-animation-duration: 25s;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.manScrolling_10 .p_list>div {
  flex: 1 !important;
  aspect-ratio: 16/9;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

[data-manscrolltext] .manScrolling_10 {
  -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;
}

[data-manscrollopacity]>.manScrolling_10 {
  -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: #fff !important;
    background: #C84835;
} */